文章目录
- 1、只想查一个字段却不得不左连接好多张表
- 2、左连接的时候只想取最后一条数据
1、只想查一个字段却不得不左连接好多张表
只想查一个字段却不得不左连接好多张表,而且因为左连接的表太多还导致查出来的数据重复
原先的sql
SELECTsph.po_num,chh.visa_exemption_flag
FROMsodr_po_header sphLEFT JOIN sodr_po_line spl ON spl.po_header_id = sph.po_header_idLEFT JOIN cux_sprm_pr_line_hoc_assign csplha ON csplha.pr_line_id = spl.pr_line_idLEFT JOIN cux_hoc_header chh ON csplha.hoc_header_id = chh.hoc_header_id
WHERE1 = 1 AND sph.po_header_id = '22993' AND sph.tenant_id = 38
优化后的
SELECT
sph.po_num,
(selectchh.visa_exemption_flag fromsodr_po_line spl LEFT JOIN cux_sprm_pr_line_hoc_assign csplha ON csplha.pr_line_id = spl.pr_line_id LEFT JOIN cux_hoc_header chh ON csplha.hoc_header_id = chh.hoc_header_id where spl.po_header_id = sph.po_header_idlimit 1 ) as visa_exemption_flag
FROMsodr_po_header sph
WHERE1 = 1 AND sph.po_header_id = '22993' AND sph.tenant_id = 38
2、左连接的时候只想取最后一条数据
改动前sql:左连接时会连接所有数据
SELECTsprl.*
FROMsprm_pr_line sprlLEFT JOIN cux_sprm_pr_line_hoc_assign splha ON sprl.pr_line_id = splha.pr_line_idLEFT JOIN cux_hoc_line hol ON splha.hoc_line_id = hol.line_id
WHEREsprl.pr_line_id = 257198
改动后的sql:左连接时连接最后一条更新的数据
SELECTsprl.*
FROMsprm_pr_line sprlLEFT JOIN (select hoc_line_id,pr_line_id,MAX(last_update_date) as last_update_date from cux_sprm_pr_line_hoc_assign GROUP BY pr_line_id) temp on temp.pr_line_id = sprl.pr_line_idLEFT JOIN cux_sprm_pr_line_hoc_assign splha ON (temp.pr_line_id = splha.pr_line_id AND splha.last_update_date=temp.last_update_date)LEFT JOIN cux_hoc_line hol ON splha.hoc_line_id = hol.line_id
WHEREsprl.pr_line_id = 257198