Hi,
Using 11.2.0.3
select count(*)
into v_cnt
from products
example but when we don't know name of table until runtimeĀ e.g in pl/sql package table is products_<sysdate>
Is it possible to use dyanamic sql for this below not work
select count(*)
into v_cnt
from <dyanmic_table_name>
If so how?
Thanks