• SQL语句搜索中 union all 联合查询


    select * from (    
                select * from(
                    select * from (select  
                        id,
                        major_name as title,
                        createddate as shijian,
                        major_dense as miji,
                        '专业动态' as doctype
                    from sf_majorinfo
                    where status!='VO'

                    union all

                    select  
                        id,
                        tec_name as title,
                        createddate as shijian,
                        tec_dense as miji,
                        '技术信息' as doctype
                    from sf_technology
                    where status!='VO'
                    union all

                    select  
                        id,
                        spe_name as title,
                        createddate as shijian,
                        spe_dense as miji,
                        '标准规范' as doctype
                    from sf_specification
                    where status!='VO')a
                    where  a.id in (Variables.indocid)
                ) where rownum < Variables.endNumber
            ) where rownum > Variables.startNumber

  • 相关阅读:
    BZOJ 4571: [Scoi2016]美味
    LibreOJ #108. 多项式乘法
    BZOJ 4568: [Scoi2016]幸运数字
    BZOJ 4567: [Scoi2016]背单词
    fhq treap ------ luogu P3369 【模板】普通平衡树(Treap/SBT)
    LibreOJ #6191. 「美团 CodeM 复赛」配对游戏
    LibreOJ #6212. 「美团 CodeM 决赛」melon
    LibreOJ #6192. 「美团 CodeM 复赛」城市网络
    LibreOJ #6220. sum
    AC日记——LOOPS hdu 3853
  • 原文地址:https://www.cnblogs.com/Han-org/p/7278488.html
Copyright © 2020-2023  润新知