久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長(zhǎng)資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      關(guān)于ThinkPHP多表聯(lián)合查詢的常用方法

      下面由thinkphp教程欄目給大家介紹ThinkPHP多表聯(lián)合查詢的常用方法,希望對(duì)需要的朋友有所幫助!

      ThinkPHP中關(guān)聯(lián)查詢(即多表聯(lián)合查詢)可以使用 table() 方法或和join方法,具體使用如下例所示:

      1、原生查詢示例:

      $Model = new Model(); $sql = 'select a.id,a.title,b.content from think_test1 as a, think_test2 as b where a.id=b.id '.$map.' order by a.id '.$sort.' limit '.$p->firstRow.','.$p->listRows; $voList = $Model->query($sql);

      2、join()方法示例:

      $user = new Model('user'); $list = $user->join('RIGHT JOIN user_profile ON user_stats.id = user_profile.typeid' );

      Thinkphp使用join聯(lián)表查詢的方法

      $user = M('user'); $b_user = M('b_user'); $c_user = M('c_user'); $list = $user->alias('user')->where('user.user_type=1')   ->join('b_user as b on b.b_userid = user.user_id')   ->join('c_user as c on c.c_userid = b.b_userid')   ->order('b.user_time')   ->select();

      $user 表的 user_id 等于$b_user表的b_userid;

      $c_user表的 c_userid 等于$b_user表的b_userid;

      3、table()方法示例:

      $list = $user->table('user_status stats, user_profile profile')->where('stats.id = profile.typeid')->field('stats.id as id, stats.display as display, profile.title as title,profile.content as content')->order('stats.id desc' )->select();

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)