MySQL SQL
MySQL Comments
Document SQL without changing its behavior.
-- A single-line comment
SELECT * FROM products;
/* A block comment can span
multiple lines. */Comments improve maintenance, but avoid placing passwords or sensitive information in them.
Continue learning
