Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以在 WHERE 中使用这个 php 代码吗?SELECT SUM(buzz) as buzz FROM $table我想计算一些特殊行的总和。
SELECT SUM(buzz) as buzz FROM $table
不,您不能在 SQL where 条件中使用 PHP 代码。数据库通常不包含 PHP 解释器。
您可以做的是使用 PHP 生成您需要的 where 子句。
如果您特别想使用 PHP,那么这可能会对您有所帮助
SELECT SUM(buzz) as buzz FROM $table WHERE $where