For retrieving data from Hive SQL, what all clauses a query could start with ?
I only know of SELECT
and WITH
. Is there anything else ?
I'm not looking anything like CREATE
, DELETE
, ALTER
etc..
This is basically for deciding whether a given query is for reading data from table or not (using query.startsWith()
).
Thanks in advance !