PDO Parameterized Query - Reuse named placeholders?(PDO 参数化查询 - 重用命名占位符?)
问题描述
本质上,我有一个值,我必须在我的 SQL 查询中调用几次.因此,是否可以在语句中重用相同的命名占位符,例如SELECT :Param FROM Table WHERE Column = :Param,然后简单的 bindValue(":Param"),并且有两个 :Params 的值?
In essence, I have a value that I have to call a couple times in my SQL query. Thus, is it possible to reuse the same named placeholder in the statement e.g.
SELECT :Param FROM Table WHERE Column = :Param, then simply bindValue(":Param"), and have the value be there for both :Params?
推荐答案
PDO::prepare 指出您不能在准备好的语句中两次使用同名的命名参数标记",所以我想那是不行的.
PDO::prepare states that "you cannot use a named parameter marker of the same name twice in a prepared statement", so I guess that's a no then.
这篇关于PDO 参数化查询 - 重用命名占位符?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PDO 参数化查询 - 重用命名占位符?
基础教程推荐
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- 如何替换eregi() 2022-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
