i found a code like ----
CURSOR check_options IS
SELECT 1
FROM PURCHASE_ORDER_ OPTION
WHERE order_no = order_no_
AND line_no = line_no_
AND release_no = release_no_;
i cannot understand why select 1 is taken
simply by select 1 ony 1 is only selected though there are values in table.
CURSOR check_options IS
SELECT 1
FROM PURCHASE_ORDER_ OPTION
WHERE order_no = order_no_
AND line_no = line_no_
AND release_no = release_no_;
i cannot understand why select 1 is taken
simply by select 1 ony 1 is only selected though there are values in table.
Comment