联系官方销售客服

1835022288

028-61286886

开发框架 版主:迅睿框架研发组
二次开发,数据关联查询优化
类型:迅睿CMS 更新时间:2022-03-28 15:57:48 二次开发

二次开发,数据关联查询优化。

如下,第一种查询方式太麻烦了吧, 有没有快捷方便的办法。类似

        // 接收url传递的值
        $sq_weixin = dr_safe_replace(\Phpcmf\Service::L('input')->post('jat2'));

        //查询1.需要优化
        $sqlx = "select a.*,a.id as sqid,b.id,b.name,b.thumb
        from dr_1_shouquan as a left join dr_1_share_category as b on a.catid=b.id 
        where a.jat2='{$sq_weixin}' order by b.id desc";

        $rowx = \Phpcmf\Service::M()->db->query($sqlx)->getResultArray();
       
        //查询方法2:参考模型方法. 教程实例,但是这个是美元实现关联查询
        $row = \Phpcmf\Service::M()->table("1_shouquan")->where('jat2', $sq_weixin)->getAll();