sql("aaa",'select id from $p1') p1 为模板参数 传递表名字 为啥查询不出来值
https://help.fanruan.com/finereport/doc-view-846.html?source=1 看一下这个文档
sql("aaa",'select id from '+ $p1)
正确的引用方式。
而且sql要有三个参数或者四个参数,后面两个参数分别指列,行。
sql("aaa",'select id from '+ $p1,1,1)