/* this is a test of SQL*/
if(exists(select * from student where stu_name='jam'))
select 1 --存在返回
else
select 0 --不存在返回
其中注释/* */指的是注释从/* 开始到下一个*/结束,无论之间有多少内容,均为注释内容.适用于多行注释
--注释符号,只能注释一行,即与--符号在一行的,后面的内容.
/* this is a test of SQL*/
if(exists(select * from student where stu_name='jam'))
select 1 --存在返回
else
select 0 --不存在返回
其中注释/* */指的是注释从/* 开始到下一个*/结束,无论之间有多少内容,均为注释内容.适用于多行注释
--注释符号,只能注释一行,即与--符号在一行的,后面的内容.