Files
sqlfluff/test/fixtures/dialects/ansi/multi_statement_b.sql
2024-04-01 21:19:41 +00:00

15 lines
294 B
SQL

# COMMENT
-- Another Comment
Select A from Sys.dual where a
-- inline comment
in ('RED', /* Inline */ 'GREEN','BLUE');
select * from tbl_b; # as another comment
insert into sch.tbl_b
(col1)
values (123);
with tmp as (
select * from blah
)
select a, b from tmp;
# And that's the end