A query is a request for data or information from a database.

Here's the structure of a basic query. You can see that with this query we can select specific data from a table by adding where we can filter the data based on certain conditions.

Synta: is the predetermined structure of a language that includes all required words, symbols, and punctuation, as well as their proper placement.

Untitled

INSERT INTO customer_data.customer_address --資料庫名字
	(customer_id, address, city, state, zipcode, country) -- 形式 
VALUES
	(2645, 333 SQL Road', 'Jackson', 'MI, 49202, 'US') -- 要插入的東西

-- 也可以接子查詢
INSERT INTO EMP
	(SELECT * FROM XXX WHERE ???=XXX)

--DELETE 刪除資料列
DELETE FROM DEPT
WHERE 條件

-- UPDATE 更新資料列
UPDATE customer_data.customer_address --要更新的資料庫名字
SET address = '123 New Address' -- 要更新的欄位及內容
WHERE customer_id = 2645 -- 要更新的那個條件

CREATE customer_address IF NOT EXISTS

DROP customer_address IF EXISTS

TCL 交易控制

⚡只有 innodb 支援

開頭