MySQL
코멘트 MySQL
수색…
비고
후행 공백을 필요로하는 --
주석 스타일은 공간을 필요로하지 않는 SQL 표준과 동작이 다릅니다 .
주석 추가하기
댓글에는 세 가지 유형이 있습니다.
# This comment continues to the end of line
-- This comment continues to the end of line
/* This is an in-line comment */
/*
This is a
multiple-line comment
*/
예:
SELECT * FROM t1; -- this is comment
CREATE TABLE stack(
/*id_user int,
username varchar(30),
password varchar(30)
*/
id int
);
--
방법은 공간이 다음 것을 요구한다 --
주석이 시작되기 전에, 그렇지 않으면 명령으로 해석되며 일반적으로 오류가 발생합니다.
#This comment works
/*This comment works.*/
--This comment does not.
주석 테이블 정의
CREATE TABLE menagerie.bird (
bird_id INT NOT NULL AUTO_INCREMENT,
species VARCHAR(300) DEFAULT NULL COMMENT 'You can include genus, but never subspecies.',
INDEX idx_species (species) COMMENT 'We must search on species often.',
PRIMARY KEY (bird_id)
) ENGINE=InnoDB COMMENT 'This table was inaugurated on February 10th.';
COMMENT
뒤에 =
사용하는 것은 선택 사항입니다. ( 공식 문서 )
이 주석은 다른 것과 달리 스키마와 함께 저장되며 SHOW CREATE TABLE
또는 information_schema
를 통해 검색 할 수 있습니다.
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow