Hi,
After
select "X" as dbcase from test1_cursor union all;
select "Y" as dbcase from test2_cursor;
into cursor temp_cursor
i> I need to view the content of temp_cursor,
Is it correct to use:
select temp_cursor
browse
ii> Is it correct to say that union all means content selected from test1_cursor or test2_cursor
Regards,
BIT