ablog

不器用で落着きのない技術者のメモ

2010-06-06から1日間の記事一覧

表にかけられている制約を確認するSQL

SQL select constraint_name, constraint_type from all_constraints where owner = upper('&owner') and table_name = upper('&table'); 実行例 SQL> select constraint_name, constraint_type from all_constraints where owner = upper('&owner') 2 3 4 a…