Please enable JavaScript.
Coggle requires JavaScript to display documents.
資料庫語法 (DDL (Create (CREATE TABLE "表格名"
("欄位 1" "…
資料庫語法
DDL
Create
CREATE TABLE "表格名"
("欄位 1" "欄位 1 資料種類",
"欄位 2" "欄位 2 資料種類",
... );
-
-
-
-
DML
Insert into
:red_flag:values :red_flag:
INSERT INTO "表格名" ("欄位1", "欄位2", ...)
VALUES ("值1", "值2", ...);
-
-
-
DQL
SELECT
-
-
JOIN
INNER JOIN
SELECT table_column1, table_column2...
-
-
-
-
LEFT JOIN (RIGHT JOIN)
LEFT JOIN 可以用來建立左外部連接,查詢的 SQL 敘述句 LEFT JOIN
左側資料表 (table_name1) 的 :red_flag:所有記錄 :red_flag:都會加入到查詢結果中,
即使 :red_flag:右側 :red_flag:資料表 (table_name2) 中的連接欄位 :red_flag:沒有符合 :red_flag:的值也一樣。
FULL JOIN
FULL JOIN 即為 :red_flag:LEFT JOIN :red_flag:與 :red_flag:RIGHT JOIN :red_flag: 的 :red_flag:聯集 :red_flag:,它會返回左右資料表中所有的紀錄,不論是否符合連接條件。 :
CROSS JOIN
交叉連接為兩個資料表間的笛卡兒乘積 (Cartesian product),兩個資料表在結合時,不指定任何條件,即將兩個資料表中所有的可能排列組合出來,以下例而言 CROSS JOIN 出來的結果資料列數為 3×5=15 筆
-