1. レコードを挿入します
2. 複数のレコードを挿入します
insert と select の組み合わせステートメントを使用します
例は次のとおりです:
Sales テーブルにデータを挿入します:
INSERT INTO Sales(EmployeeID,ProductID,SupplierID,CustomerID,
OrderDate,UnitPrice,Total,Quantity,Discount)
SELECT e. EmployeeID、p.ProductID、s.SupplierID、
c.CustomerID、o.OrderDate、od.UnitPrice、
od.Quantity*od.UnitPrice*(1.0-od.Discount)Total、
Od.Quantity、od.Discount
注文 o、[注文詳細] od、従業員 e、
製品 p、サプライヤー s、顧客 c
から (o.OrderID = od.OrderID) and
(o.EmployeeID = e.EmployeeID) and
(o.CustomerID) = c.CustomerID) and
(od.ProductId = p.ProductID) and
(p.SupplierID = s.SupplierID);
簡単な例を見れば分かります
ニュース(type_id,userid)に値を挿入 ('5','8'),('6','10'),('11','55 ');
idが主キーの場合、挿入時にそれを記述する必要はありません