Comments

Advantage SQL Engine

Comment text can be embedded in the SQL statements. Advantage SQL engine supports 3 types of comment text:

SELECT Lastname, Firstname FROM Employee ORDER BY 1, 2 /* sort on the lastname and firstname */

SELECT * FROM Employees -- Employee information table

WHERE Lastname > 'W'

SELECT * FROM Employees // Employee information table

WHERE Lastname > 'W'