The world’s Largest Sharp Brain Virtual Experts Marketplace Just a click Away
Levels Tought:
Elementary,Middle School,High School,College,University,PHD
| Teaching Since: | Apr 2017 |
| Last Sign in: | 103 Weeks Ago, 3 Days Ago |
| Questions Answered: | 4870 |
| Tutorials Posted: | 4863 |
MBA IT, Mater in Science and Technology
Devry
Jul-1996 - Jul-2000
Professor
Devry University
Mar-2010 - Oct-2016
Create a PL/SQL anonymous block that displays the total sales for a zip code.
Here is what I've created, but I keep getting an error and can't figure it out!!Â
Declare
CURSOR zip_sales IS
SELECT * FROM CUSTOMERS;
id customers.cust_id%type;
z customers.zip%type;
zip number;
Begin
zip:=&zip;
Â
Open zip_sales;
If zip_sales % ISOPEN Then
Loop
Fetch zip_sales into id, z;
Exit when zip_sales % NotFound;
If zip_sales % Found Then
 select sum(s.gross_sale_price) FROM sales where cust_id like select cust_id from customers where zip=z;
End if;
End Loop;
End if;
commit;
End;
/
90210
-----------