I have so called requirement called splitting the data obtained in a table after performing query into two rows.
Like as below select ID1,ID2 from table, which will retrieve the data into two columns, need to obtain the same result into two rows.
Currently iam performing the UNION statement like select ID1 from table UNION select ID2 from table.