File: comment_on.sql

package info (click to toggle)
sqlfluff 3.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 34,000 kB
  • sloc: python: 106,131; sql: 34,188; makefile: 52; sh: 8
file content (23 lines) | stat: -rw-r--r-- 689 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
22
23
COMMENT ON CATALOG my_catalog IS 'This is my catalog';

COMMENT ON CONNECTION mysql_connection IS 'this is a mysql connection';

COMMENT ON SCHEMA my_schema IS 'This is my schema';

COMMENT ON DATABASE my_other_schema IS 'This is my other schema';

COMMENT ON TABLE my_table IS 'This is my table';

COMMENT ON TABLE my_table IS NULL;

COMMENT ON SHARE my_share IS 'A good share';

COMMENT ON RECIPIENT my_recipient IS 'A good recipient';

COMMENT ON PROVIDER my_provider IS 'A good provider';

COMMENT ON VOLUME my_volume IS 'Huge volume';

COMMENT ON COLUMN my_catalog.my_schema.my_table.my_column IS 'This is my column in a catalog';

COMMENT ON COLUMN my_column IS 'This is my column';