サーチ…


1行コメント

単一行のコメントの前には--があり、行の終わりに行く:

SELECT *
FROM Employees -- this is a comment
WHERE FName = 'John'

複数行のコメント

複数行のコードコメントは/* ... */ラップされ/* ... */

/* This query
   returns all employees */
SELECT *
FROM Employees

このようなコメントを行の途中に挿入することもできます:

SELECT /* all columns: */ *
FROM Employees


Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow