美文网首页
Thinkphp跨库连表查询

Thinkphp跨库连表查询

作者: Hsinlung | 来源:发表于2017-05-31 16:14 被阅读431次
db1 数据库1
db2 数据库2
table1 数据表1
table2 数据表2

$spell = $this->SpellApply  ->table('db1.table1 t1,db2.table2 t2')
                            ->field('t1.uid,t2.avatar_img')
                            ->where('t1.uid=t2.uid and t1.spell_id ='.$id)
                            ->order('t1.create_time desc')
                            ->group('t1.uid')
                            ->select();

相关文章

网友评论

      本文标题:Thinkphp跨库连表查询

      本文链接:https://www.haomeiwen.com/subject/bsljfxtx.html