foreign key的一些總結
foreign key
SQL> alter table dept modify(deptno primary key);
Table altered.
SQL> alter table emp1 add foreign key(deptno) references dept(deptno);
Table altered.
SQL> alter table emp add constraint fk_dept foreign key (deptno) references dept;
Table altered.
SQL> create table emp1(empno number(10) primary key,ename varchar2(101),deptno number(10),
2 foreign key fk_dept references dept(deptno)
3 );
foreign key fk_dept references dept(deptno)
*
ERROR at line 2:
ORA-00906: missing left parenthesis
2 foreign key fk_dept references dept(deptno)
3 );
foreign key fk_dept references dept(deptno)
*
ERROR at line 2:
ORA-00906: missing left parenthesis
SQL> create table emp1(empno number(10) primary key,ename varchar2(101),deptno number(10),
2 foreign key (deptno) references dept(deptno)
3 );
2 foreign key (deptno) references dept(deptno)
3 );
Table created.
SQL> create table emp1(empno number(10),ename varchar2(101),deptno number(10),
2 constraint fk_dept1 foreign key (deptno) references dept(deptno)
3 );
2 constraint fk_dept1 foreign key (deptno) references dept(deptno)
3 );
Table created.
--drop table
SQL> drop table dept;
drop table dept
*
ERROR at line 1:
ORA-02449: unique/primary keys in table referenced by foreign keys
SQL> drop table dept cascade constraint;
Table dropped.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/23718752/viewspace-746378/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- SQL FOREIGN KEY 約束SQL
- 關於primary key和foreign key的問題處理
- mysql 使用foreign key(外來鍵)MySql
- SSH key使用總結
- Flashback table with foreign key constraint.AI
- 詳解外來鍵約束(foreign key)
- JavaScript keydown事件總結JavaScript事件
- Redux的一些總結Redux
- mysql的一些總結MySql
- Mysql 外來鍵(FOREIGN KEY)使用注意事項MySql
- Redshift關於SORTKEY排序鍵、DISTKEY分配鍵的總結排序
- [轉] mysql 外來鍵(Foreign Key)的詳解和例項MySql
- Flash安全的一些總結
- 正則的一些總結
- 外來鍵刪除(T-SQL Drop Foreign Key)SQL
- Script: To list Foreign Key Constraints (Doc ID 1039297.6)AI
- 一些總結而已
- Promise一些小總結Promise
- REPLACE與INSERT INTO ... ON DUPLICATE KEY總結
- Ajax技術的一些總結
- LevelDB的一些簡單總結
- 外連線的一些總結
- Script to Check for Foreign Key Locking Issues [ID 1019527.6]
- keycloak~對框架中提供的Provider總結框架IDE
- 自己總結的一些enqueue的東東ENQ
- 聊聊Oracle外來鍵約束(Foreign Key)的幾個操作選項Oracle
- 資訊蒐集一些總結
- imp 匯入遇到 FK (Foreign Key) 導致錯誤處理
- 總結下 javascript 中的一些小技巧JavaScript
- 關於Mysql使用的一些總結MySql
- GoLang中字串的一些使用總結Golang字串
- Swift中Initialization的一些個人總結Swift
- larabbs 使用的一些擴充總結
- 學習 CodeWhisperer 的一些總結
- MySql關於鎖的一些總結MySql
- php的一些面試題總結(5)PHP面試題
- RunLoop的一些學習與總結OOP
- 關於繼承的一些小總結繼承