我试图在sql中从我的表中获取变量。请参阅下面的脚本:
FILE_LIST=$(sqlplus -s idmp_stg/idmp_stg@DTPMPDR07_SUDB <<EOF
set echo off heading off
SELECT Column_B
FROM anum_calltype
WHERE Column_A = 2500;
exit;
EOF)
但我这就是我得到的
no rows selected
这是我的数据库表:
select * from anum_calltype
+-------+---------+---
|Column_A | Column_B|
+-------+---------+---
| 1000 | 2020 |
| 2500 | 99102 |
| 2020 | 99120 |
+-------+---------+---
这是我的预期输出:
SELECT Column_B
FROM anum_calltype
WHERE Column_A = 2500;
| Column_B |
------------
99102
在Bash中:
99102
对不起,我是新来的。