美文网首页
mysql组合查询union

mysql组合查询union

作者: itcode | 来源:发表于2019-05-19 16:46 被阅读0次

    1.组合查询必须由2条或2条以上的select语句组成,语句之间使用union
    2.union的每个查询必须包含相同的列、表达式或聚合函数
    3.列的数据类型必须兼容:类型不必完全相同,但是必须是相互可以转换的
    4.union查询会自动去除重复的行,如不需要此特性,可以使用union all
    5.若要对union结果进行排序,order by语句必须放在最后一条select语句之后

    select id,name,createtime from t_user
    union
    select id,name,createtime from t_company
    order by createtime desc;
    

    相关文章

      网友评论

          本文标题:mysql组合查询union

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