这可能吗?例如
SELECT * FROM :database WHERE id = :id
如果没有,我应该这样做吗:
If not, should I just do this:
SELECT * FROM ' . $database . ' WHERE id = :id
或者还有什么我需要学习的技巧吗?
Or is there some other trick I need to learn?
表名和列名不能被 PDO 中的参数替换.见 PHP PDO 语句能否接受表名或列名作为参数?
Table and Column names cannot be replaced by parameters in PDO. see Can PHP PDO Statements accept the table or column name as parameter?
这篇关于表名作为参数使用 PDO/MySQL 准备好的语句的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!