Hi every body,
I want to change this sql code
select 'update TABLE_A
set DEBT_CCy='''||ccy_code||'''
where debt_ccy is null
and ticker='''||f.ticker||''';'
from
TABLE_A f,TABLE_B s
where
f.ticker=s.ticker
and debt_ccy is null;
into pl/sql execute immediate
how can I do ?
Thanks
I want to change this sql code
select 'update TABLE_A
set DEBT_CCy='''||ccy_code||'''
where debt_ccy is null
and ticker='''||f.ticker||''';'
from
TABLE_A f,TABLE_B s
where
f.ticker=s.ticker
and debt_ccy is null;
into pl/sql execute immediate
how can I do ?
Thanks