sql语句中的注释
mysql
到该行结束、– 到该行结束 以及 /* 行中间或多个行 */ 的注释方格:
mysql> SELECT 1+1; # 这个注释直到该行结束
mysql> SELECT 1+1; — 这个注释直到该行结束
mysql> SELECT 1 /* 这是一个在行中间的注释 */ + 1;
注意 — (双长划) 注释风格要求在两个长划后至少有一个空格!
oralce,mssql
单行注释: — 多行注释:/**/
示例:
select * from tb_name; –查xx表的记录明细
select * from tb_name1;
/*
select * from tb_name2;
dbms_output.put_line(sqlerrm);
*/
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/sqlcomments/572.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.