风动破

导航

mysql之注释

mysql> SELECT 1+1;     # This comment continues to the end of line
mysql> SELECT 1+1;     -- This comment continues to the end of line
mysql> SELECT 1 /* this is an in-line comment */ + 1;
mysql> SELECT 1+
/*
this is a
multiple-line comment
*/

posted on 2015-06-08 13:51  风动破  阅读(76)  评论(0)    收藏  举报