ฉันต้องการเพิ่มความคิดเห็นในรหัส SQL ฉันจะทำสิ่งนี้ได้อย่างไร ฉันใช้ MySQL
ฉันต้องการเพิ่มความคิดเห็นในรหัส SQL ฉันจะทำสิ่งนี้ได้อย่างไร ฉันใช้ MySQL
คำตอบ:
"ความคิดเห็นสำหรับคอลัมน์สามารถระบุได้ด้วย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;
คุณสามารถใช้ความคิดเห็นบรรทัดเดียว:
-- 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
*/
รองรับการแสดงความคิดเห็นสามประเภท
แฮชบรรทัดเดียวที่แสดงความคิดเห็นโดยใช้ #
Select * from users ; # this will list users
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;
--