Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
基本的に、mysqlに保存されているゲームのキャラクターにリンクされているアカウントIDのリストがあります。アカウントIDがこのリストにない場合は、それを削除するクエリを作成します。
ユーザーがいなくなったキャラクターを削除したい場合は、次を使用できます。
DELETE characters FROM characters LEFT JOIN users USING (user_id) WHERE users.user_id IS NULL