数据表是这样的:
id title
1 标题1
2 标题2
想把id为1的标题复制给id为2的标题,变成这样
2 标题1
收起
update tbl t1, tbl t2 set t1.title = t2.title where t1.id = 2 and t2.id = 1
报告相同问题?