转一篇关于SQL语句的书写的
如一串数字“3,43,23,64,234,76,5,9,14,27”进行排序输入到空表A中。
要求在表A中的排列方式如下:
num
3
5
9
14
23
27
43
64
76
234
******************************************************************************
create proc wsp
@sql varchar(1000)
as
create table #temp(num int)
set @sql='insert into #temp select '+replace(@sql,',',' d union all select ')
exec(@sql)
insert into a select * from #temp order by num
然后调用:
exec wsp'3,43,23,64,234,76,23,5,9,14,27'
要求在表A中的排列方式如下:
num
3
5
9
14
23
27
43
64
76
234
******************************************************************************
create proc wsp
@sql varchar(1000)
as
create table #temp(num int)
set @sql='insert into #temp select '+replace(@sql,',',' d union all select ')
exec(@sql)
insert into a select * from #temp order by num
然后调用:
exec wsp'3,43,23,64,234,76,23,5,9,14,27'
作者:灯火阑珊
出处:http://www.cnblogs.com/edidu/
关于作者:重庆IT老鸟一只
本文版权归作者所有,发布于博客园,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接
如有问题,可以通过