Day10—SQL那些事(特殊场景的查询)

文章目录

  • 1、只想查一个字段却不得不左连接好多张表
  • 2、左连接的时候只想取最后一条数据

1、只想查一个字段却不得不左连接好多张表

只想查一个字段却不得不左连接好多张表,而且因为左连接的表太多还导致查出来的数据重复

原先的sql

SELECT
	sph.po_num,
	chh.visa_exemption_flag 
FROM
	sodr_po_header sph
	LEFT JOIN sodr_po_line spl ON spl.po_header_id = sph.po_header_id
	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
	1 = 1 
	AND sph.po_header_id = '22993' 
	AND sph.tenant_id = 38

Day10—SQL那些事(特殊场景的查询)_第1张图片

优化后的

SELECT
sph.po_num,
(select
			chh.visa_exemption_flag 
			from
				sodr_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_id
			limit 1 ) as visa_exemption_flag 
FROM
	sodr_po_header sph
WHERE
	1 = 1 
	AND sph.po_header_id = '22993' 
	AND sph.tenant_id = 38

2、左连接的时候只想取最后一条数据

改动前sql:左连接时会连接所有数据

SELECT
	sprl.*
FROM
	sprm_pr_line sprl
	LEFT JOIN cux_sprm_pr_line_hoc_assign splha ON sprl.pr_line_id = splha.pr_line_id
	LEFT JOIN cux_hoc_line hol ON splha.hoc_line_id = hol.line_id
WHERE
	sprl.pr_line_id = 257198

Day10—SQL那些事(特殊场景的查询)_第2张图片

Day10—SQL那些事(特殊场景的查询)_第3张图片

改动后的sql:左连接时连接最后一条更新的数据

SELECT
	sprl.*
FROM
	sprm_pr_line sprl
	LEFT 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_id
	LEFT 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
WHERE
	sprl.pr_line_id = 257198

Day10—SQL那些事(特殊场景的查询)_第4张图片

你可能感兴趣的:(MYSQL进阶,sql,java,数据库)