mysql多张表合并一张表

Posted jerry-89

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql多张表合并一张表相关的知识,希望对你有一定的参考价值。

  mysql 合并查询,把两张或多张没有关系的表合起来查询并且排序

select * from (select 排序字段  as time ,其他字段 from 表一 union select  排序字段  as time ,其他字段 from 表二) as c order by time desc;

从两个表中查不同字段并拼接到一起(从两个表中查的字段不一样)
    SELECT
        表1.字段1,
        表2.字段1,
        表1.字段2,
        ...
    FROM
        表1
    INNER JOIN
        表2
    ON 表1.id=表2.id
    WHERE
        相关条件(如表1.字段1 = xxx)
    ORDER BY
        排序条件等(如 oder by 表2.字段1)

 
将两个表结果合并(从两个表中查的字段一样)

功能:
  使用mysql中union all 将2个表中的数据查询结果合并到一个返回结果中。再针对结果统一排序操作等。(注:2个表返回的列名必须一致)

语句如下:

    SELECT
        表1.字段,
        表2.字段,
        ...
    FROM
        (SELECT
            表.字段1,
            表.字段2
        FROM
            表
        WHERE
            条件
        ) 表1
        UNION ALL
        (SELECT
            表.字段1,
            表.字段2
        FROM
            表
        WHERE
            条件
        ) 表2
    WHERE
        相关条件
    ORDER BY
        排序条件等


原文:https://blog.csdn.net/u013109978/article/details/69230196
SQL多表合并UNION ALL和UNION

    select
        d1.ID,CAST(d1.ID AS CHAR) AS intId, d1.CODE_TYPE, d1.CODE, d1.CODE_IMG, d1.VALUE
        from m_dict_code d1
        where d1.CODE_TYPE in('USER_TYPE','addSupers')
            UNION
            select 0,v.ID,v.TYPE,v.`CODE`,v.DESCRIPTION,v.VALUE_STRING from m_variable as v where v.type='tequan'
            limit 1,20

语句说明:

1.CAST (expression AS data_type)字段类型转换函数

    CAST (表名.字段名 AS 类型)
    注意:
    1.mysql int转varchr会出现问题
       错误: CAST (表名.字段名 AS varchar)
       正确:CAST (表名.字段名 AS char)或concat(d1.ID,'')
       说明:
           将Int 转为varchar经常用 concat函数,比如concat(8,’′)
           将varchar 转为Int 用 cast(a as signed)

2.UNION和UNION all 多表合并函数

问题:
1.两表字段类型不一致 用cast或concat函数解决
2.两表列属性数量不一致问题 select后跟相同类型字段值 (int类型)0或(字符串)''解决问题
3.(自动去重)UNION (允许重复的值)UNION all
 

mysql多张表合并一张表进行查找

  今天有个需求是 mysql多张表合并一张表查询出该表有多少个userid(去重)。

首先我的思路是,把多张表采用union合并成一张表,然后进行group by, 最后进行sum(userid), 得出数量。

select COUNT(DISTINCT(`user_id`)) 
FROM (
select user_id from log_20160706
union 
select user_id from log_20160707
union
SELECT user_id from log_20160708
UNION
SELECT user_id from log_20160709
UNION
SELECT user_id from log_20160710
UNION
SELECT user_id from log_20160711
UNION
SELECT user_id from log_20160712
order by user_id
) as TB // 这里as一定要扩在整段select外面

 MySQl 合并结构相同的多张表

CREATE TABLE goods_xinxi
        select * from goods_xinxi_0
        UNION ALL
        select * from goods_xinxi_1
        UNION ALL
        select * from goods_xinxi_2
        UNION ALL
        select * from goods_xinxi_3
        UNION ALL
        select * from goods_xinxi_4
        UNION ALL
        select * from goods_xinxi_5

后续还可以加入多个表,示例只合并6张表

合并需要用到的函数有 UNION ALL 和 UNION ,不同之处网上有很多介绍。

mysql如何批量合并两个表的数据

一、表结构一致

  • 允许插入重复数据
    insert into 表1 select * from 表2;
  • 不允许插入重复数据
    insert into 表1 select * from 表2 where NOT EXISTS (select * from 表1 where 字段1 = 表2.字段1);

二、表结构不一致

  需要指定字段名,并且需要一一对应

  • 允许插入重复数据
    insert into 表1(字段1,字段2,字段3...) select 字段1,字段2,字段3... from 表2; 
  • 不允许插入重复数据
    insert into 表1(字段1,字段2,字段3...) select 字段1,字段2,字段3... from 表2 where NOT EXISTS (select * from 表1 where 字段1 = 表2.字段1);

 SQL 将两个结构相同的表合并到成一个表

select *

into 新表名

from (select * from T1 union all select * from T2)


这个语句可以实现将合并的数据追加到一个新表中。


不合并重复数据

select * from T1 union all select * from T2


合并重复数据

select * from T1 union select * from T2       

两个表,表1 表2

如果要将 表1的数据并入表2用以下语句即可


insert into 表2(字段1,字段2) select 字段1,字段2 from b1


注意,必须把字段名全部写清楚,而且不允许把自动编号进去写进去,要合并自动编号字段必须重写一个算法一条一条记录地加进去

1 insert into b1 select * from b2

2 select * into newtable from (select * from b1 union all select * from b2)

 

MYSQL中两张表,怎么使用关联查询?

比如:表一中查询列1为1的值,可以得到10条数据,其中列三值分别为1,2,3,4,5,6,7,8,9,10!这些值怎么关联到表二的列1查询?求大神告知

这分几种查询的,有笛卡尔积,就是两张表的数据都查出来,还有左外,右外,显式和隐式,这里给你展示右外查询,就是表二所有数据都显示,select * from npc_vendor right [outer] join item_template on item_template.entry= npc_vendor.entry 参考技术A 例如select ??? from table1 where ??? in (select ??? from table2 wehre ???)
你条件太模糊了,你百度一下mysql多级查找学下不难的

以上是关于mysql多张表合并一张表的主要内容,如果未能解决你的问题,请参考以下文章

MYSQL中两张表,怎么使用关联查询?

MYSQL三张表关联查询请教

mysql 从相同类型的多张表中提取到一张表中

SQL多张表如何合并成一张报表?

mysql里查询时怎么把一张表里的上级ID显示为上级名称?

MySQL:将一张表拆分为多张表(相同的列)以提高性能?