本文概述
在MySQL中, 注释也可以放在SQL查询中。注释可以是单行或多行。
可以编写注释的三种类型:
1.使用#符号
句法
# comment goes here
例子1
select *from # srcmini
student_1;
2.使用-符号
句法
comment goes here
例子2
select *from -- srcmini
student_1;
3.使用/ *和* /符号
句法
/* comment goes here */
例子3
select *from student_1 /* srcmini02.com */;
评论前必须登录!
注册