• ベストアンサー

ユーザーが存在すれば

ユーザーを削除する際、そのユーザーが存在すればという条件をつけたいのですが DROP USER IF EXISTS testuser@localhost; とすると、エラーになります。どう書けばよいですか?

質問者が選んだベストアンサー

  • ベストアンサー
  • yambejp
  • ベストアンサー率51% (3827/7415)
回答No.1

DROP USER testuser@localhost; じゃダメなんですか?どうしてもなら delete from mysql.user where Host='localhost' and User='testuser';

関連するQ&A