标签: sql oracle
我尝试运行以下查询,该查询通过变量设置表名:
--/* declare tbl varchar2(20) := 'TABLE_NAME'; begin execute immediate 'select * from ' || tbl || ' where rownum <=1'; end; --*/
但它不起作用。
此查询基于this question
我在这里缺少什么?