Multi-line comments

suggest change

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

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents