SQL Comments(注释)用于解释 SQL 语句的各个部分或阻止 SQL 语句本身的执行。
单行注释以--开头。
-- 和行尾之间的任何文本都将被忽略(不执行)。
以下示例使用单行注释作为解释:
--Select all:
SELECT * FROM Customers
以下示例使用单行注释来忽略行尾:
SELECT * FROM Customers -- WHERE City='Berlin'
以下示例使用单行注释来忽略该语句:
--SELECT * FROM Customers;
SELECT * FROM Products;
多行注释以 /* 开头,以 */ 结尾。
/* 和 */ 之间的任何文本都将被忽略。
以下示例使用多行注释作为解释:
/*Select all the columns
of all the records
in the Customers table:*/
SELECT * FROM Customers
以下示例使用多行注释来忽略多条指令:
/* SELECT * FROM Customers
SELECT * FROM Products
SELECT * FROM Orders
SELECT * FROM Categories */
SELECT * FROM Suppliers
要仅忽略指令的一部分,还可以使用 /* */ 注释。
以下示例使用注释来忽略字符串的一部分:
SELECT CustomerName, /*City,*/ Country FROM Customers
以下示例使用注释来忽略部分指令:
SELECT * FROM Customers WHERE (CustomerName LIKE 'L%'
OR CustomerName LIKE 'R%' /*OR CustomerName LIKE 'S%'
OR CustomerName LIKE 'T%'*/ OR CustomerName LIKE 'W%')
AND Country='USA'
ORDER BY CustomerName