讨论数量:
(= ̄ω ̄=)··· 暂无内容!
MySQL 社区 Wiki
在 MySQL 中,注释也可以放在 SQL 查询中。注释可以是单行或多行。
三种注释类型:
## comment goes here
select *from # JAVATPOINT
student_1;

--comment goes here
select *from -- JAVATPOINT
student_1;

/* 和 *//* comment goes here */
select *from student_1 /* JAVATPOINT.com */;

请登录