SQL语句——20、sqlplus与shell结合

[oracle@dba ~]$ cat a.sh
#!/bin/bash
TAB=emp

sqlplus -s scott/password << EOF | awk 'NR != 1 && $2 ~ /S.*T/{print $2,$6}'
set head off
set feed off
select * from $TAB;
exit;
EOF
[oracle@dba ~]$ ./a.sh
SMITH 800
SCOTT 3000
posted @ 2020-01-05 02:10  marxist  阅读(256)  评论(0)    收藏  举报