mysql中如何批量注释sql语句

来自:互联网
时间:2020-09-09
阅读:
免费资源网 - https://freexyz.cn/

具体方法如下:

1、使用"#"注释

#单行注释
select * from students;

2、使用 "-- " 注释

注意:--后跟有一个空格

-- MySQL单行注释
select * from students

3、使用/* */进行多行注释

/*
此处为注释....
*/
select * from students;
免费资源网 - https://freexyz.cn/
返回顶部
顶部