表名作为参数使用 PDO/MySQL 准备好的语句

2021-12-26 00:00:00 php mysql pdo

这可能吗?例如

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?

相关文章