有如下语句:
declare @x int if @x is null select 'A' if @x = 0
select 'B' if @x = '
'
select'C' 查询的结果为()。
A: A
B: B
C: C
D: 有编译错误
declare @x int if @x is null select 'A' if @x = 0
select 'B' if @x = '
'
select'C' 查询的结果为()。
A: A
B: B
C: C
D: 有编译错误
举一反三
- 有如下语句: Declare @x int <br/>If @x is null <br/>Select ‘A’ <br/>If @x=0 <br/>Select ‘B’ <br/>If @x=’’ <br/>Select ‘C’ <br/>查询的结果为( )。 A: A B: B C: C D: 有编译错误。
- 为三个整型变量x,y,z分别赋值8,9,4,请输出其中的最大值的程序段为( ) A: declare @x int,@y int, @z int declare @m int select @x=8,@y=9,@z=4 if @x B: declare @x int,@y int, @z int declare @m int select @x=8,@y=9,@z=4 if @x>@y set @m=@x else set @m=@y if @m>@z set @m=@z print @m C: declare @x int,@y int, @z int declare @m int select @x=8,@y=9,@z=4 if @x>@y if @x>@z print @x<br> else print @z else print @y D: declare @x int,@y int, @z int declare @m int select @x=8,@y=9,@z=4 if @x>@y set @m=@x else set @m=@y if @m
- 下列Java语句执行结果<br/>int<br/>x=15;<br/>if<br/>(x%2 == 0) System.out.print(x/2);<br/>else<br/>System.out.print(x/2+1); A: 7 B: 7.5 C: 8 D: 8.5
- 如果要实现计算x绝对值的功能,下面程序有错误的是? A: int fun(int x){ if(x<0) return -x;<br> return x; } B: int fun(int x){ if(x<0) return -x;<br> else return x; } C: int fun(int x){ if(x<0) return -x;<br> if(x>0) return x; } D: int fun(int x){ if(x<0) return -x;<br> else if(x==0) return x; else return x; }
- DECLARE语句为一条SELECT语句定义游标并执行SELECT语句。(<br/>)