在 MySQL 中,我试图复制具有 自动增量 column ID=1的行并将数据 插入 到同一个表中,作为具有column ID=2.
column ID=1
column ID=2
如何在单个查询中执行此操作?
使用INSERT ... SELECT:
INSERT ... SELECT
insert into your_table (c1, c2, ...) select c1, c2, ... from your_table where id = 1
除了.c1, c2, ...之外的所有列在哪里?id如果您想使用id2 显式插入,则将其包含在您的 INSERT 列列表和您的 SELECT 中:
c1, c2, ...
id
insert into your_table (id, c1, c2, ...) select 2, c1, c2, ... from your_table where id = 1
id当然,在第二种情况下,您必须处理 2 的可能重复项。