讨论数量:
(= ̄ω ̄=)··· 暂无内容!
在 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 */;
粤ICP备18099781号-6
|
粤公网安备 44030502004330号
|
违法和不良信息举报
由 Summer 设计和编码 ❤