Oracle PL/SQL Tutorial/System Tables Data Dictionary/all tab comments — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 10:07, 26 мая 2010
Find out all table comments
SQL>
SQL>
SQL> COLUMN comments FORMAT a45
SQL> SELECT table_name, comments
2 FROM all_tab_comments
3 WHERE table_name = UPPER("&&table_name");
Enter value for table_name:
old 3: WHERE table_name = UPPER("&&table_name")
new 3: WHERE table_name = UPPER("")
no rows selected