1、编程判断student表中是否有年龄大于16岁学生,如果有,输出“存在成年学生”;如果没有,输出“不存在成年的学生!”
2、编程求1——100之间能被13整除的最大值。(使用while语句)
1、编程判断student表中是否有年龄大于16岁学生,如果有,输出“存在成年学生”;如果没有,输出“不存在成年的学生!”
2、编程求1——100之间能被13整除的最大值。(使用while语句)
1.if exists(select * from student where age>16)
print '存在成年学生'
else
print '不存在成年学生'
2. declare @i int
declare @j int
set @i=1
while @i<=100
begin
if @i%13==0
set @j=@i
set @i=@i+1
end
print @j
你好,很高兴为你解答,如果答案满意,请采纳。。。
====================================================
1:declare @count int set @count=0; select @count= count(*) from student where age>=16 if @count>0 print '存在成年学生' else print '不存在成年学生'
go
2:declare @a int; set @a=1 while @a<104 begin if @a%13=0 begin print @a; end set @a=@a+1; end go
====================================================