Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PL/SQL とカーソル属性について学び始めました。SQL%NOTFOUND の仕組みに混乱しています。以下のコードでは、v_1 は常に true にコンパイルされますか?
DECLARE v_1 BOOLEAN; v_2 NUMBER; BEGIN SELECT count(*) INTO v_2 FROM t1; v_1 := SQL%NOTFOUND; END;