免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1558 | 回复: 3
打印 上一主题 下一主题

请教关于动态SQL的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-01-09 17:53 |只看该作者 |倒序浏览
写了一个存储过程, 就是通过输入日期, 形成表名, 然后根据查询条件算出某一字段的总和, 但是总报语法错误, 代码如下

create procedure proc_billAgent (@StartDay  char(20),
                                                    @EndDay    char(20),
                                                    @StartTime char(20),
                                                    @EndTime   char(20),
                                                    @InfoCode  char(4))
as
     declare  @Sql       char(100)
     declare  @Table1    char(50)
     declare  @Table2    char(50)
     declare  @Access1   decimal(4, 0)
     declare  @Access2   decimal(4, 0)
     declare  @Access    decimal(5, 0)
     declare  @Fee1      decimal(6,2)
     declare  @Fee2      decimal(6,2)
     declare  @Fee       decimal(7,2)
              
begin
     /*----------获取两个数据表的名称----------*/
     select @Table1 = "sjc_TJAgentWorkSum_" + @StartDay
     select @Table2 = "sjc_TJAgentWorkSum_" + @EndDay
     
     /*----------获取第一个表的相关类别的访问次数, 费用总和----------*/
     select @Access1 = sum(ceiling(TimeSpan/60)), @Fee1 = sum(Fee)  
     from @Table1   (此处报错)
     where AccessTime >= @StartTime and InfoCode = @InfoCode
         

     /*----------获取第二个表的相关类别的访问次数, 费用总和----------*/
     select @Access2 = sum(ceiling(TimeSpan/60)), @Fee2 = sum(Fee)
     from @Table2
     where AccessTime <= @EndTime and InfoCode = @InfoCode

     select @Access = @Access1 + @Access2 as "Time Length"
     select @Fee = @Fee1 + @Fee2 as "Total Fee"   
end

论坛徽章:
0
2 [报告]
发表于 2007-01-10 08:35 |只看该作者
sybase是什么版本的?我记得12.5以下的不支持动态sql的.

[ 本帖最后由 小无赖 于 2007-1-10 08:41 编辑 ]

论坛徽章:
0
3 [报告]
发表于 2007-01-10 09:02 |只看该作者
需要变成exec(@sql)的形式

论坛徽章:
0
4 [报告]
发表于 2007-01-10 09:18 |只看该作者
我的Sybase版本是ASE12.5.03

改成这样的方式好像还是有问题

select @Sql="select " + @Access1
                                  + "= sum(ceiling(TimeSpan/60)),"
                                  + @Fee1
                                  + "= sum(Fee)  from "
                                  +  @Table1
                                  + "where AccessTime >= ' "
                                  +  @StartTime
                                  + "' and InfoCode = '"
                                  + @InfoCode
                                  + "'"
   exec(@Sql)
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP