How to display multiple results from a stored procedure or multiple select statements into 1 resultset?
WORKAROUND:
Use the operator UNION ALL in your code to display all results into resultset.
Example:
declare @a int
declare @b char(10)
declare @c char(20)
set @a=1
set @b='ddd'
set @c='dfdfdg'
Attached is what TDA will display in a future release.
© ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center