zoukankan      html  css  js  c++  java
  • 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

  • 相关阅读:
    网页连接无法打开可运行
    SET XACT_ABORT
    用Windows Live Writer写CSDN博客的步骤
    ATO,PTO
    什么是贸易顺差?
    ATO/MTO类机械制造业特点以及ERP需求分析(二)
    如何在早期版本的 Office 中打开并保存 Word 2007、Excel 2007 和 PowerPoint 2007 文件
    Alpha和Beta测试简介
    IIS6.0下 Asp网页访问出现500的问题
    合格的程序员
  • 原文地址:https://www.cnblogs.com/Han-org/p/7278488.html
Copyright © 2011-2022 走看看