当前位置: 数据库>sqlserver
sql中参数过多利用变量替换参数的方法
来源: 互联网 发布时间:2014-10-13
本文导语: 工作中遇到一个需求,需要非常多的参数,例如如下sql, 代码如下: select ff.fundsc||'-'||ff.fundtzfs||'-'||ff.fundcjfl||'-'||ff.fundonefl||'-'||ff.fundtowfl catagory, sf.scode,replace(sf.fund5,'型证券投资基金','')fund5,sf.fund4,sf.fund10, (select to_date(tradedate,...
工作中遇到一个需求,需要非常多的参数,例如如下sql,
select
ff.fundsc||'-'||ff.fundtzfs||'-'||ff.fundcjfl||'-'||ff.fundonefl||'-'||ff.fundtowfl catagory,
sf.scode,replace(sf.fund5,'型证券投资基金','')fund5,sf.fund4,sf.fund10,
(select to_date(tradedate,'yyyy-MM-dd') from sdc_fundnetassetvalue where scode=sf.scode and tradedate in
(select max(tradedate) from sdc_fundnetassetvalue where scode=sf.scode and to_date(tradedate,'yyyyMMdd')>=(to_date(20120801,'yyyyMMdd')-10) and tradedate
怎样接受 SQL 返回参数?
急!如何从一个shell文件中传递一个参数到sql文件中,不能用存储过程
怎么在java中向一个sql语句传参数,就像oracle的proc一样啊?
SQL中函数 replace 的参数1的数据类型ntext无效的解决方法
sql中返回参数的值
Sql Server中存储过程中输入和输出参数(简单实例 一看就懂)
JS、replace利用正则表达式替换SQL所有参数为指定格式的数据
Android中的SQL查询语句LIKE绑定参数问题解决办法(sqlite数据库)
编程语言
iis7站长之家
输入值/表单提交参数过滤有效防止sql注入的方法
SQL实现递归及存储过程中In()参数传递解决方案详解
SQL参数化查询的另一个理由 命中执行计划
c# 数据库的 sql 参数封装类的编写
有关sql server参数化查询之where in和like实现的讲解
SQL SERVER中各类触发器的完整语法及参数说明
代码如下:
select
ff.fundsc||'-'||ff.fundtzfs||'-'||ff.fundcjfl||'-'||ff.fundonefl||'-'||ff.fundtowfl catagory,
sf.scode,replace(sf.fund5,'型证券投资基金','')fund5,sf.fund4,sf.fund10,
(select to_date(tradedate,'yyyy-MM-dd') from sdc_fundnetassetvalue where scode=sf.scode and tradedate in
(select max(tradedate) from sdc_fundnetassetvalue where scode=sf.scode and to_date(tradedate,'yyyyMMdd')>=(to_date(20120801,'yyyyMMdd')-10) and tradedate