Multi-line comments
suggest changeMulti-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
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents