我有表 t1。
table t1
id post_id tags
1 null a
2 1 null
3 1 null
4 null b
我想更新 post_id = id 的标签。我尝试了一个查询,它给了我零输出。
当标签存在时,post_id 始终为空,当存在 post_id 时,标签始终为空
update t1 set tags = tags where post_id = id;
你们可以为我正确地构图吗?请帮我