I want to add from two select queries in stored procedures into one…
what is written in the code is something similar to this:
select something from xxxx
select something from xxxx
and it produces two different columns
something that looks like this:
something
collecteddata1
something
collecteddata2
But what I want is to make it look like
something
collecteddata1
collecteddata2
If anyone knows how to do this please let me know!!!
Use one of the following depending on whether or not you want to remove duplicates.
or