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

相关文章:

  • 2022-12-23
  • 2021-12-08
  • 2022-03-13
  • 2022-12-23
  • 2022-01-26
  • 2022-01-29
  • 2022-12-23
  • 2021-11-09
猜你喜欢
  • 2022-12-23
  • 2022-03-04
  • 2021-12-04
  • 2021-11-20
  • 2021-11-26
相关资源
相似解决方案