私はテーブルt1を持っています。
table t1
id post_id tags
1 null a
2 1 null
3 1 null
4 null b
post_id = id のタグを更新したい。出力がゼロのクエリを試しました。
タグが存在する場合、post_id は常に null であり、post_id が存在する場合、タグは常に null です。
update t1 set tags = tags where post_id = id;
皆さんは私のためにそれを適切に組み立てることができますか. 私を助けてください