您好,登錄后才能下訂單哦!
1、插入完整行
格式:insert into table(
xxx_id,
xxx_name,
……
xxx_address)
valus(
'xxxxxx',
'xxxxxx',
……
'xxxxxx');
示例:
insert into custnew (
cust_id,
cust_name,
cust_address,
cust_city,
cust_state,
cust_zip,
cust_country,
cust_contact,
cust_email)
values(
'1000000008',
'zhang',
'shitonglu street',
'shijiazhuang',
'sjz',
'3333',
'china',
'sun',
'10110@126.com');
2、插入檢索出的數據
insert into table1(
xxx_id,
xxx_name,
……
xxx_address
select
xxx_id,
xxx_name,
……
xxx_address
from table2;
示例:
insert into customers (
cust_id,
cust_name,
cust_address,
cust_city,
cust_state,
cust_zip,
cust_country,
cust_contact,
cust_email)
select cust_id,
cust_name,
cust_address,
cust_city,
cust_state,
cust_zip,
cust_country,
cust_contact,
cust_email
from custnew
備注:1、table2檢索出的數據插入到table1,必須先把table2表做填充。
2、table2的檢索出的值,不能存在table1中,否則提示插入不成功。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。