Ok,
I have completely confused myself. I need to return data from a database from a select statement. How do I do this? Is this done in a package, function, stored procedure?
It is a simple query that would return several rows.
For example
select product_id, product_name, product_price
from product_table
where product_season = 'spring'
I have read several things but nothing is sinking in for me. I appreciate the help and examples you may provide.
I have completely confused myself. I need to return data from a database from a select statement. How do I do this? Is this done in a package, function, stored procedure?
It is a simple query that would return several rows.
For example
select product_id, product_name, product_price
from product_table
where product_season = 'spring'
I have read several things but nothing is sinking in for me. I appreciate the help and examples you may provide.