I'm working on a project my boss gave me. I don't have much experience but I have to learn it. It's regarding Oracle DB 11g and I'm using SQLPlus and PL/SQL as the query language.
Basically for each query statement, I will need the script to interpret the results and output true/false to the file.
For example,
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 **/
I have tried using DBMS_OUTPUT.PUT_LINE but have no idea on how to analyse directly the output from the query statements. Will greatly appreciate any help!