0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

MySQL -- でコメントアウトするときに注意する

Posted at

MySQLのコメントアウト方法が間違っていてエラーが出たので、個人の教訓として。

--を使用してコメントアウトしようとしていましたが半角スペースが不足していることに気づかず躓いたので、同じポイントでエラー直面した方の参考になると幸いです。

エラーが出た際に付近の文言チェックは繰り返しましたが、コメントアウトしている部分は意識が向いていなかったので今後エラーが出た際はコメントアウトも含めてしっかりチェックすることに努めます。


SELECT * FROM table;
--NGパターン
-- OKパターン

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?