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.
考虑简单的查询:
SELECT * FROM `your_table` LIMIT 0, 10
我可以从另一个设置表中获得 10 个值吗?
如果是,这样做是否有益更快,或者在 php 中有设置表,并在查询期间设置值 10?
可能这取决于您使用什么 SQL 服务器,但标准 SQL 语法不会让您从另一个“设置”表中读取限制值。
所以最好在 PHP 代码中定义它并在构建 SQL 查询时使用它。