|
A table is generated when the stored procedure exec sel-all is executed. How can I perform operations on this table?
My stored procedure is as follows:
CREATE proc sel_all as
select l_no, type = 'picking list', date, danhao, dept, glno, wlbh, l_name, quality, sysdate from linliao
union
select t_id, type = 'Return bill', t_date, danhao, dept, orderno, wlbh, t_name, store sysdate from tuiliao
I also need to operate on the table generated after execution, or let it generate a new table after execution |
|