One SQL, paging, table merge query, multi-table connection, for Oracle database

Source: Internet
Author: User

SELECT * FROM (
SELECT Tt.*,rownum RN from
(SELECT
a.case_id as Treatid,
A.type as TYPE,
B.content as CONTENT,
b.add_user_id as Adduserid,
B.add_user_type as Addusertrpe,
A.create_time as Createtime,
B.check_time as Checktime,
E.addusertype
From T_medical_case A
Left JOIN t_treatment B on a.case_id = b.treat_id
Left JOIN (select c.patient_id as ID, C.user_name, ' 2 ' as Addusertype
From T_patient_info C
UNION
Select d.doctor_id as ID, D.user_name, ' 1 ' as Addusertype
From T_doctor_info D) E on b.add_user_id = e.id
where a.patient_id = V_userid ORDER by a.create_time DESC) TT where ROWNUM <=v_maxpage) where RN >=v_minPage;

One SQL, paging, table merge query, multi-table connection, for Oracle database

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.