Heim  >  Artikel  >  Datenbank  >  sql语句巩固

sql语句巩固

WBOY
WBOYOriginal
2016-06-07 17:44:401064Durchsuche

查询每行随机值 if(object_id('tempdb..#cc','U')is not null) drop table #cc go declare @a int set @a=0 while @a15 begin if @a=0 select floor(rand()*3)+3 as cc into #cc else insert into #cc values( floor(rand()*3)+3 ) set @a=@a+1 end select *

查询每行随机值

if(object_id('tempdb..#cc','U')is not null)
drop table #cc
go
declare @a int
set @a=0
while @abegin
if @a=0
select floor(rand()*3)+3 as cc into #cc
else
insert into #cc values( floor(rand()*3)+3 )
set @a=@a+1
end
select * from #cc

 

连接查询

select a.Class_Content,*from T1103.dbo.T101_1
inner join (SELECT Class_Code, Class_Content FROM   WssMng_SXZ.dbo.ClassTable
                    WHERE (Fk_ClassName = '案件来源')) as a on a.Class_Code = T101_1.M101_1_111
where unitID ='130800'

,香港服务器租用,美国空间,香港服务器
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn