当前位置: 代码迷 >> Sql Server >> sqlserver2005 游标解决思路
  详细解决方案

sqlserver2005 游标解决思路

热度:277   发布时间:2016-04-25 00:38:50.0
sqlserver2005 游标
CityTotalSales表结构
mobile   varchar(20)
CityCode varchar (10)
TotalSales int
regtotal  int
region varchar (50)
数据
mobile      citycode  totalsales  regtotal region
18316998988  BJ          387       631       E
18316998988  SH          124       631       E
18316998988  TJ          88        631       E
18316998988  NMG         32        631       E
18316998988  GZ          333       995       N
18316998988  GZ          333       995       N
13658754144  SZ          425       995       N
13658754144  HZ          123       995       N
13658754144  DG          114       995       N

请问用游标怎么把上面的数据按以下格式插入到outsms表中
sms表结构
InMobile  varchar(20)
InContent1 varchar(200)


InMobile  字段保存mobile
InContent1 字段保存 
InContent1 插入格式:region-regtotal  citycode-totalsales
按region分组
MO-E-631  BJ-387  SH-124  TJ-88  NMG-32
MO-N-995  GZ-333  SZ-425  HZ-123 DG-114

------最佳解决方案--------------------
引用:
存储过程里能创建自定义函数吗?


存储过程创建自定义函数?? 没用过,调用自定义函数还是可以的。
提供一个游标小例子。

--测试数据准备
    if(object_id('t1') is not null)drop table t1
    CREATE table t1(
    id int identity(1,1) primary key,
    value nvarchar(20)
    )
    go
    --插入测试数据
    insert into t1(value)
    select '值1'union all
    select '值2'union all
    select '值3'union all
    select '值4'
     
    --查看结果集合
    --select * from t1
    if(OBJECT_ID('p_print')is not null) drop procedure p_print
    go
    create procedure p_print
    as
    begin
        declare @value nvarchar(20)--注意这里的变量类型应该与游标中读取出来的字段类型相同   
        --创建游标  
  相关解决方案