File: 008_reserved_names.sql

package info (click to toggle)
sqlfmt 0.29.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,580 kB
  • sloc: python: 10,007; sql: 5,626; makefile: 39
file content (21 lines) | stat: -rw-r--r-- 813 bytes parent folder | download
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