我想在SQL代码中添加注释。我怎样才能做到这一点?我正在使用MySQL。
答案 0 :(得分:194)
答案 1 :(得分:20)
“可以使用COMMENT
选项指定列的注释。注释由SHOW CREATE TABLE
和SHOW FULL COLUMNS
语句显示。此选项从MySQL 4.1开始运行。(在早期版本中允许但忽略它。)“
作为一个例子
--
-- Table structure for table 'accesslog'
--
CREATE TABLE accesslog (
aid int(10) NOT NULL auto_increment COMMENT 'unique ID for each access entry',
title varchar(255) default NULL COMMENT 'the title of the page being accessed',
path varchar(255) default NULL COMMENT 'the local path of teh page being accessed',
....
) TYPE=MyISAM;
答案 2 :(得分:15)
您可以使用单行注释:
-- this is a comment
# this is also a comment
或多线评论:
/*
multiline
comment
*/
答案 3 :(得分:3)
从here您可以使用
# For single line comments
-- Also for single line, must be followed by space/control character
/*
C-style multiline comment
*/
答案 4 :(得分:1)
支持三种评论
使用#
进行哈希基本单行注释Select * from users ; # this will list users
Select * from users ; -- this will list users
注意:重要的是在 -
之后有单个空格3)使用/ * * /
进行多行评论Select * from users ; /* this will list users */
答案 5 :(得分:0)
/* comment here */
这是一个例子:SELECT 1 /* this is an in-line comment */ + 1;