The following SQL statement selects the "CustomerName" and "City" columns from the "Customers" table:
Example
SELECT CustomerName,City FROM Customers;
Try...
To ignore just a part of a statement, use the /* */ comment.
Any text between /* and */ will be ignored.
Example
Ignore part of a line:
SELECT CustomerName, /*City,*/ Country FROM Customers;
Try...
Multi-line comments start with /* and end with */.
Any text between /* and */ will be ignored.
Example
A multi-line comment as an explanation:
/*Select...