如下:
表A有3個字段是聯合主鍵(非自增長)
create table A
(
a VARCHAR(20) not null,
b VARCHAR(100) not null,
c VARCHAR(10) not null,
constraint P_Key_1 primary key (a, b, c)
);
表中數據:
a b c
1 2 0
1 3 0
如何將表中數據復制一份,改變表中一個聯合主鍵的值,將字段"c"改為1
要求結果如下:
a b c
1 2 0
1 3 0
1 2 1
1 3 1
問題已解決:
方法一:
INSERT INTO A(a,b,c)
SELECT a,b,'1'
FROM
A;
方法二:
--復制表結構
create table A as (select * from A) definition only;
--插入數據
insert into A_new
(select * from A);
UPDATE A_new SET c='1';
insert into A (select * from A_new);
DROP TABLE A_new;