当前位置: 技术问答>linux和unix
问个unix下的shell问题
来源: 互联网 发布时间:2015-08-01
本文导语: create table dailyipzd as select a.zjhm,sum(a.jbhf) thf,count(*) thcs,sum(a.jfsc) jfsc from dailyipqd a group by zjhm; 这句话,在外面执行没问题,在shell里怎么执行不成功? | 这是SQL语句,得用SQL客户端执行。 | ...
create table dailyipzd as select a.zjhm,sum(a.jbhf) thf,count(*) thcs,sum(a.jfsc) jfsc from dailyipqd a group by zjhm;
这句话,在外面执行没问题,在shell里怎么执行不成功?
这句话,在外面执行没问题,在shell里怎么执行不成功?
|
这是SQL语句,得用SQL客户端执行。
|
报什么错?
|
sqlplus user/pass[enter]
SQL> @loadqd.sql
是sqlplus登录后,用来运行外部SQL的语法。
在shell里用sqlplus user/pass
SQL> @loadqd.sql
是sqlplus登录后,用来运行外部SQL的语法。
在shell里用sqlplus user/pass