You can either add a more specific WHERE clause in your original SQL, or, if that's infeasible you could do this:SELECT `field1`, `field2`FROM ( SELECT * FROM `myTable`)...在适当的位置添加您的搜索条件....adding in your search criteria in the appropriate places. 这篇关于MySQL/PHP - 查询结果集?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 07-18 10:26