I know -- means starting of comment in mysql. But what does --- and ---- mean?? See my console log.
mysql> --
mysql> ---
->
-> ;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-' at line 1
mysql> ----
->
-> ;
Query OK, 0 rows affected (0.00 sec)
- First one seems a comment.
- Second one is NOT
- Third one is not too. They are expecting something.
I wrote an sql file that contains header comments started with --- characters. Due to this next query does not run. It throws error. Like this.
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-' at line 1
---characters." – rynah Dec 25 '12 at 15:28//. Adding more/wont matter. – shiplu.mokadd.im Dec 25 '12 at 15:28server version: 5.0.22-community-ntand it accepted all--,---,----, and-----followed by no space but a return key returned no errors butmysql>prompt. !! – Ravinder Dec 25 '12 at 15:44MySQL Server version: 5.5.28-0ubuntu0.12.04.3-log– shiplu.mokadd.im Dec 25 '12 at 15:45