[mysql] MySQL에서 주석을 추가하려면 어떻게해야합니까?

SQL 코드에 주석을 추가하고 싶습니다. 어떻게해야합니까? MySQL을 사용하고 있습니다.



답변

몇 가지 방법들:

# Comment
-- Comment
/* Comment */

뒤에 공백--넣어야합니다 .

설명서를 참조하십시오 .


답변

“열에 대한 주석은 COMMENT옵션 으로 지정할 수 있습니다 . 주석은 SHOW CREATE TABLEand 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;


답변

한 줄 주석을 사용할 수 있습니다.

-- this is a comment
# this is also a comment

또는 여러 줄로 된 주석 :

/*
   multiline
   comment
*/


답변

여기 에서 사용할 수 있습니다

#  For single line comments
-- Also for single line, must be followed by space/control character
/*
    C-style multiline comment
*/


답변

세 가지 유형의 주석이 지원됩니다

  1. #을 사용한 해시 기본 한 줄 주석

    Select * from users ; # this will list users
    1. -를 사용하여 이중 대시 주석 달기

    Select * from users ; -- this will list users

참고 : 바로 뒤에 공백이 하나 있어야합니다.

3) / * * /를 사용하여 여러 줄 주석 달기

Select * from users ; /* this will list users */


답변

/* comment here */ 

다음은 예입니다. SELECT 1 /* this is an in-line comment */ + 1;

http://dev.mysql.com/doc/refman/5.0/en/comments.html


답변