MySQL CommentsAdding comments. MySQL Comments Comments are used to explain sections of SQL statements, or to prevent execution of SQL statements. Single line comments start with --. Multi-line comments start with /* and end with */. ExampleSELECT * FROM Customers; -- This is a commentTry it Yourself PreviousNext