Comments in MySQL : Comment « Command MySQL « SQL / MySQL
- SQL / MySQL
- Command MySQL
- Comment
Comments in MySQL
-- There are three ways of supplying comments in SQL commands:
SELECT 1 # comment
SELECT 1 /* comment */
SELECT 1 -- comment
Related examples in the same category