This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
swagger: '2.0' | |
info: | |
version: '0.3.0' | |
title: Rockset APIs | |
description: | | |
**Rockset APIs allows for creating, and managing, all Rockset resources | |
in Rockset such as collections, and views** | |
Rockset allows you to continuously ingest data from any data silo and | |
provides fast search, aggregation and graph queries without requiring |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with tweets as ( | |
select | |
t.user.name, | |
t.text, | |
upper(sym.text) as ticker | |
from | |
Demo.twitter_live as t, | |
unnest(t.entities.symbols) as sym | |
where | |
t.entities.symbols [1] is not null |