Because 1--1 is legal in SQL, we think
it is terrible that `--' means start comment.
In MySQL Version 3.23 you can,
however, use: 1-- This is a comment
The following discussion only concerns
you if you are running a MySQL version earlier than Version 3.23:
If you have a SQL program in a text
file that contains `--' comments you should use:
shell> replace " --"
" #" < text-file-with-funny-comments.sql \
| mysql database
instead of the usual:
shell> mysql database <
text-file-with-funny-comments.sql
You can also edit the command file
``in place'' to change the `--' comments to `#' comments:
shell> replace " --"
" #" -- text-file-with-funny-comments.sql
Change them back with this command:
shell> replace " #"
" --" -- text-file-with-funny-comments.sql
No comments:
Post a Comment