This is a type of comment. The /* is the beginning of a comment and */ is the end of comment. MySQL will ignore the above comment.
Which is the comment symbol in MySQL * 1 point && /* */?
In MySQL, the — (double-dash) comment style requires the second dash to be followed by at least one whitespace or control character (such as a space, tab, newline, and so on).
How do I comment out in MySQL?
In MySQL, a comment that starts with /* symbol and ends with */ and can be anywhere in your SQL statement. This method of commenting can span several lines within your SQL.
How do I comment out a single line in MySQL?
Single line comments start with — . Any text between — and the end of the line will be ignored (will not be executed).
How do I comment out in MySQL?
In MySQL, a comment that starts with /* symbol and ends with */ and can be anywhere in your SQL statement. This method of commenting can span several lines within your SQL.