Comments are used to explain the SQL query and stop executing the part of query which is commented.
Single line comments start with --.
This comment cannot affect to the next line.
--Select all:
SELECT * FROM Employee;
Multi-line comments are like PHP.
It starts with /* and end with */.
The text between this two /* and */ are skipped or ignored.
/*SELECT * FROM
Employee*/
Where id=1;