我正在做我老板给我的一个项目。我没有太多经验,但我必须学习。这是关于 Oracle DB 11g 的,我使用 SQLPlus 和 PL/SQL 作为查询语言。
基本上对于每个查询语句,我都需要脚本来解释结果并将真/假输出到文件。
例如,
select id from sample_table where id=3;
/**code needed that will do something like:**/
/**if(id=3), write to file TRUE, else, write to file FALSE**/
select salary from sample2 where id=5;
/**similar code needed as above**/
select employee from sample3 where id=6;
/** another TRUE or FALSE output to the file **/
我曾尝试使用 DBMS_OUTPUT.PUT_LINE 但不知道如何直接分析查询语句的输出。将不胜感激任何帮助!