Home  >  Article  >  Database  >  sql语句巩固

sql语句巩固

WBOY
WBOYOriginal
2016-06-07 17:44:401027browse

查询每行随机值 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'

,香港服务器租用,美国空间,香港服务器
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn