1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
with
"select" as (select * from foo.select),
"case" as (select * from foo.case),
"end" as (select * from foo.end),
"as" as (select * from foo.as),
"interval" as (select * from foo.interval),
"exclude" as (select * from foo.exclude),
"using" as (select * from foo.using),
"on" as (select * from foo.on),
"and" as (select * from foo.and),
"limit" as (select * from foo.limit),
"over" as (select * from foo.over),
"between" as (select * from foo.between),
"union" as (select * from foo.union),
"explain" as (select * from foo.explain),
"grant" as (select * from foo.grant),
"create" as (select * from foo.create),
"alter" as (select * from foo.alter),
"truncate" as (select * from foo.truncate),
"drop" as (select * from foo.drop)
select 1
|