以下局部变量的声明语句正确的是( )
A: DECLARE @a int,@b int
B: DECLARE @a,@b int
C: DECLARE @@a int,@@b int
D: DECLARE @@a,@@b int
A: DECLARE @a int,@b int
B: DECLARE @a,@b int
C: DECLARE @@a int,@@b int
D: DECLARE @@a,@@b int
举一反三
- 两个整型变量a和b,值分别为5和7,若a>b则输出a,否则输出b的程序段为( ) A: declare @a int, @b int select @a=5,@b=7 if @a>@b print @a else print @ B: declare @a int, @b int select @a=5,@b=7 if @a C: declare @a int, @b int select @a=5,@b=7 if @a>@b print @b else print @a D: declare @a int, @b int select @a=5,@b=7 if @a<>@b print @a else print @
- 智慧职教: 5-2-05 DECLARE @a INT;语句正确的定义了局部变量。
- 智慧职教: 5-2-06 DECLARE INT @a;语句正确的定义了局部变量。
- 阅读下面T-SQL语句,对变量赋值时存在错误的是__________。 A: DECLARE @var1 int,@var2 moneySELECT @var1=100,@var2=$2.21 B: DECLARE @var1 int,@var2 moneySELECT @var1=$200.20,@var2=100 C: DECLARE @var1 int,@var2 moneySET @var1=100,@var2=$2.21 D: DECLARE @var1 int,@var2 moneySET @var1=100.20 SET @var2=$2.21
- 为三个整型变量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