I'm new to OLAP and SnappyData. My question is very specific. I want to know where to read further documentation on the SnappyData 'column' query language for OLAP queries. Perhaps it is an industry standard. Perhaps it is SnappyData specific. I don't know.
For clarification, I'm looking at the QuickStart scripts and trying to make sense of the column tables, AIRLINE and the queries in olap_queries.sql. For example, given this query:
-------------------------------------------------------------
---- Which Airlines Arrive On Schedule? JOIN with reference table ----
-------------------------------------------------------------
select AVG(ArrDelay) arrivalDelay, description AirlineName, UniqueCarrier carrier
from airline, airlineref
where airline.UniqueCarrier = airlineref.Code
group by UniqueCarrier, description
order by arrivalDelay;
I want to understand the constructs like 'description AirlineName,' . How does the syntax dictate that description is from the join on airlineref? Please, somebody, point me to where I can learn about this syntax.