S
shaun
Unregistered / Unconfirmed
GUEST, unregistred user!
我用的是interbase自带的数据库employee.gdb
在创建存储过程的语句如下:
create procedure mystoredproc(countryname char(20))
returns (money char(20)) as
Begin
select currency from country
where country=:countryname
into :money;
suspend;
End
然而在Interbase interactive SQL编辑器里却怎么也通不过去
但是在SQL Explorer里却能创建
请问问题处在何处?
在创建存储过程的语句如下:
create procedure mystoredproc(countryname char(20))
returns (money char(20)) as
Begin
select currency from country
where country=:countryname
into :money;
suspend;
End
然而在Interbase interactive SQL编辑器里却怎么也通不过去
但是在SQL Explorer里却能创建
请问问题处在何处?