模型相关复杂查询On this page复杂查询一、模型提供了以下几种查询方法infoorderfieldlimitgroupwherefindselect二、示例示例$data = Student::order("id", 'desc') ->field('sname,age') ->limit(2) ->select();print_r($data);