給表中插入數(shù)據(jù)使用 ?INSERT INTO 語句
1.給表 customers 插入第一條數(shù)據(jù):
INSERT INTO customers(cust_id,
cust_name,
cust_address,
cust_city,
cust_state,
cust_zip,
cust_country,
cust_contact,
cust_email)
VALUES (10001,
'Coyote Inc.',
'200 Maple Lane',
'Detroit',
'MI',
'44444',
'USA',
'Y Lee',
'ylee@coyote.com');

插入數(shù)據(jù)

檢索已經(jīng)有一條數(shù)據(jù)
INSERT INTO 語句不返回輸出!
列名與內(nèi)容一一對應(yīng)!
customers表得其他數(shù)據(jù)用同樣的方法插入,表的內(nèi)容如下:

customers