Multi-line code comments are wrapped in /* ... */:
/* ... */
/* This query returns all employees */ SELECT * FROM Employees
It is also possible to insert such a comment into the middle of a line:
SELECT /* all columns: */ * FROM Employees