oracle数据库怎样查询用变量表示的字段名?
例如表中我有字段c01,c02,c03,,,c100,,,查询的结果是不确定的比如我传入一个变量02就selectc02fromtable,变量100就selectc10...
例如表中我有字段c01,c02,c03,,,c100,,, 查询的结果是不确定的 比如我传入一个变量02 就select c02 from table ,变量100 就select c100 from table 应该怎么写啊
展开
3个回答
2013-07-18
展开全部
我的做法是:
a.sql是静态的,一个语句无法实现多种功能。需要一个动态变化的语句。
b.pl/sql可以生成动态语句,但是无法直接select 出结果。
如:
create or replace procedure selectx
( v_field_nam in varchar2
)
is
begin
execute immediate 'select '|| v_field_nam ||' from dual ';
end selectx;
/
c.利用'&' 的值替换功能,也可以实现你要的效果,
例如:
--1.建立测试表:
create table t_mytable
(
c1
number
,c2
number
);
--2插入样本数据:
insert into t_mytable
select 1 , 2 from dual;
commit;
insert into t_mytable
select 3 , 4 from dual;
commit;
pzw> select * from t_mytable;
1
2
3
4
--带输入参数的sql语句:
pzw> select c&num from t_mytable;
Enter value for num: 1
old
1: select c&num from t_mytable
new
1: select c1 from t_mytable
1
3
2 rows selected.
pzw> select c&num from t_mytable;
Enter value for num: 2
old
1: select c&num from t_mytable
new
1: select c2 from t_mytable
2
4
2 rows selected.
a.sql是静态的,一个语句无法实现多种功能。需要一个动态变化的语句。
b.pl/sql可以生成动态语句,但是无法直接select 出结果。
如:
create or replace procedure selectx
( v_field_nam in varchar2
)
is
begin
execute immediate 'select '|| v_field_nam ||' from dual ';
end selectx;
/
c.利用'&' 的值替换功能,也可以实现你要的效果,
例如:
--1.建立测试表:
create table t_mytable
(
c1
number
,c2
number
);
--2插入样本数据:
insert into t_mytable
select 1 , 2 from dual;
commit;
insert into t_mytable
select 3 , 4 from dual;
commit;
pzw> select * from t_mytable;
1
2
3
4
--带输入参数的sql语句:
pzw> select c&num from t_mytable;
Enter value for num: 1
old
1: select c&num from t_mytable
new
1: select c1 from t_mytable
1
3
2 rows selected.
pzw> select c&num from t_mytable;
Enter value for num: 2
old
1: select c&num from t_mytable
new
1: select c2 from t_mytable
2
4
2 rows selected.
展开全部
可以使用case语句
select case when '&A' = 'A' then A列 when '&A' = 'B' then B列,
when A列 when '&A' = 'C' then C列 ELSE D列 end
from 表名;
如果变量里的值不定的话,就没有办法了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
直接用动态SQL就可以了,写一个过程或者函数来封装就可以了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询