You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
420 B
7 lines
420 B
[oracle]
|
|
tables = select distinct table_name from user_tab_comments where table_type='TABLE'
|
|
views = select distinct table_name from user_tab_comments where table_type='VIEW'
|
|
|
|
[postgresql]
|
|
tables = SELECT distinct table_name FROM information_schema.tables WHERE table_schema = 'public' ORDER BY table_name
|
|
views = select distinct table_name from information_schema.views WHERE table_schema = 'public' ORDER BY table_name |