码迷,mamicode.com
首页 > Web开发 > 详细

thinkphp-union

时间:2017-02-10 00:08:15      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:thinkphp-union

说明

    用于合并两个或多个 SELECT 语句的结果集

示例

Db::field(‘name‘)
      ->table(‘think_user_0‘)
      ->union(‘SELECT name FROM think_user_1‘)
      ->union(‘SELECT name FROM think_user_2‘)
      ->select();
Db::field(‘name‘)
      ->table(‘think_user_0‘)
      ->union(function($query){          $query->field(‘name‘)->table(‘think_user_1‘);
        })
      ->union(function($query){          $query->field(‘name‘)->table(‘think_user_2‘);
        })
      ->select();
Db::field(‘name‘)
      ->table(‘think_user_0‘)
      ->union([‘SELECT name FROM think_user_1‘,‘SELECT name FROM think_user_2‘])
      ->select();

union all

Db::field(‘name‘)
      ->table(‘think_user_0‘)      
      ->union(‘SELECT name FROM think_user_1‘,true)      
      ->union(‘SELECT name FROM think_user_2‘,true)      
      ->select();
Db::field(‘name‘)
      ->table(‘think_user_0‘)
      ->union([‘SELECT name FROM think_user_1‘,‘SELECT name FROM think_user_2‘],true)
      ->select();


本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1896494

thinkphp-union

标签:thinkphp-union

原文地址:http://suyanzhu.blog.51cto.com/8050189/1896494

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!