Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
foreign key constraint単一のステートメントで新しい列を追加する方法はoracle?クエリの例を教えてください。
foreign key
constraint
oracle
alter table tab1 add c1 number(20) constraint tab1_c1_fk references tab2(c2);
c1テーブル列tab1 の FK を持つテーブルの新しい列。tab1_c1_fktab2c2
c1
tab1
tab1_c1_fk
tab2
c2