假设我有这样的代码:
SELECT * FROM tbl WHERE ? ORDER BY id desc limit 1
$query = $this->prepare($q);
我需要将以下条件置于 where 条件中:
(id=1 and age=20) or (x=50 and y='yes')
但$query->execute(array("(id=1 and age=20) or (x=50 and y='yes')"));
没有获取任何价值。如何为“where”子句条件放置准备好的语句。请帮我修复它。