आप DBMS_XMLGEN
. का उपयोग कर सकते हैं किसी क्वेरी के अंदर डायनेमिक sql बनाने के लिए:
select *
from table1 as t1
where dbms_xmlgen.getxmltype('select * from ' ||
t1.table2name ||
' where datetocheck > add_months(sysdate, -6)
').extract('//text()').getstringval() is not null