simple query [message #327205] |
Sat, 14 June 2008 22:46 |
durgadas.menon
Messages: 365 Registered: December 2007 Location: Nowhere
|
Senior Member |
|
|
Hi,
It seems that PL/SQL editor does not allow the use subquery so what is the way around?
declare
a number;
begin
select :blk_cupboard.cupboardno into a from dual;
if not a in ([B]select cupboardno from cupboard[/B]) then
Quote: | error - subquery not allowed in this context.
|
How can I check if the value entered in the form is present in the base table or not?
|
|
|
|
|