I was wondering if it's possible to have a stored procedure that has two select statements which you can combine as a single result set. For instance:
select name, age, title
from tablea
select name, age, title
from tableb
Could you combine these queries into a single result set?
Yes you can. You can use join or union to do this..
|||Hi,
try like this:
select name, age, title
from tablea
UNION ALL //or use Union
select name, age, title
from tableb
Hope this helps
No comments:
Post a Comment