Jawaban:
Beberapa cara:
# Comment
-- Comment
/* Comment */
Ingatlah untuk meletakkan spasi setelahnya--
.
Lihat dokumentasi .
"Komentar untuk kolom dapat ditentukan dengan COMMENT
opsi. Komentar ditampilkan oleh SHOW CREATE TABLE
dan SHOW FULL COLUMNS
pernyataan. Opsi ini operasional pada MySQL 4.1. (Itu diperbolehkan tetapi diabaikan dalam versi sebelumnya.)
Sebagai contoh
--
-- 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;
Tiga jenis komentar didukung
Hash base single line commenting menggunakan #
Select * from users ; # this will list users
Select * from users ; -- this will list users
Catatan: Sangat penting untuk memiliki ruang putih tunggal setelah -
3) Mengomentari banyak baris menggunakan / * * /
Select * from users ; /* this will list users */
/* comment here */
berikut ini sebuah contoh: SELECT 1 /* this is an in-line comment */ + 1;
--