我有一张桌子,下面是内容
stat_id|stat_type|stat_value
1 |likes |100
1 |reposts |150
是否可以在一个查询中为其他stat_id
克隆这些行?
重要的是我们要为几个新的stat_id
复制。
答案 0 :(得分:0)
使用INSERT ... SELECT
insert into your_table (c1, c2, ...)
select c1, c2, ...
from your_table
where id = 1