SQL查询中的用法Shellscript导出变量

时间:2019-03-26 15:23:25

标签: shell sqlplus

我们可以在SQL查询中使用shell脚本导出变量吗?

以下示例:

export name=Georgia;
Connect sqlplus through linux server 

$Oraclepath/sqlplus -s username/password@schemaname

Select * from employee where first_name='$name';

有人可以帮我吗?

1 个答案:

答案 0 :(得分:1)

您应该可以从命令行执行以下操作:

$Oraclepath/sqlplus -s username/password <<eof
select * from employee where first_name='$name';
eof

开头<<eof和结尾eof之间的所有内容都称为Heredoc。