SQL基本操作——declare if lese while

Posted 站错队了同志

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL基本操作——declare if lese while相关的知识,希望对你有一定的参考价值。

declare

--第一种
declare @i int
set @i= (select COUNT(*) from t8)
select @i
--第二种
declare @i int
select @i= COUNT(*) from t8
print @i

if else

declare @num int
select @num=COUNT(*) from t8
if(@num>2)
    begin
        print 大于2
    end
else    
    begin    
        print 小于2
    end

while

--输出0-100
declare @i int
set @i=0
while(@i<=100)
begin
    print @i
    set @i=@i+ 1
end

 

以上是关于SQL基本操作——declare if lese while的主要内容,如果未能解决你的问题,请参考以下文章

SQL中的declare用法

SQL中的declare用法

请问啥是SQL的DECLARE语句?

使用SQL存储过程

Sql Server

oracle pl/sql中的循环及if语句