在工作中,有时候我们更新一个表数据的时候,需要更新的数据来自其他查询出来的结果,这个时候sql怎么写?
如下:
将tb_option表中name 和valued的值进行互换
update tb_option inner join (SELECT * from tb_option where question_id in (
select id from tb_question where catagory_id =7 and is_delete = 1) )c
on tb_option.id = c.id set tb_option.name = c.valued,tb_option.valued=c.name