個人學習歷程之菜鳥初體驗SQL外來鍵和引用完整性

2021-07-31 00:14:19 字數 1484 閱讀 8529

[constranint constraint_name]

foreign key [fk_name](index_columns)

references tbl_name (index_columns)

[on delete action]

[on update action]

[match full | match partial | match ******]

(上面的單詞如果不去寫成小寫,那真是一臉懵,還得去查一查)目前innodb儲存引擎還不支援match子句,其他的子句慢慢來就懂了。接著看~

結果表明刪除或者更新父表中的元素,子表也會跟著受影響,在子表中進行更新是必須遵循外來鍵約束。

個人學習歷程

知識技能增長歷程 1.hive基本語句學習,建立hive表,把資料從postgresql匯入hive中。2.sqoop 資料匯入工具的學習,使用。先建立hive 表,然後用sqoop把資料匯入。3.neo4j資料庫的學習。把資料匯入到neo4j資料庫。使用python實現。cython 語句的學習。...

個人學習 SQL 記錄

1 5 進資料庫之前還會解碼,sql 語法中的語句 不會,str需要hex。python的hex 先ascii 轉換 再 hex 第一關concat ws sep,s1,s2.sn 將s1,s2.sn連線成字串,並用sep字元間隔 concat ws version,database user 獲取...

SQL個人學習筆記02

1.表的別名 select t.id,t.name from table name as t 在乙個select語句中,系統首先執行from語句,然後執行select語句 2.內連線 inner join 僅將兩個表中滿足連線條件的行組合起來作為結果集,即兩表連線笛卡爾集中匹配的行顯示出來 1 在w...