I need to do a report with a procedure of every salesman in 6 fake companies if they sold more then the number the user entered. i'm in sql developper with a oracle Db.
I asked to ppl in my class how they did and the thing they did doesnt work for me, i always get error on the accept/prompt.
/
accept temp default '100';
/
when '&temp' < 90.00 then raise too_cold;
I also tried using it like that:
accept temp prompt 'Input degree (numerically in degrees F)?:';
I want to show a prompt with words so that the user knows what to enter and use the number i get.