简化覆盖重复行的UNION查询

时间:2015-01-22 18:23:26

标签: sql postgresql

create table sections(
  id serial,
  section_name char(255) not null,
  version_id int not null
);

create table section_versions(
 id int primary key not null,
 version_name char(255) not null  
);

insert into section_versions(id, version_name)
values (1, 'default'), (2, 'version A'), (3, 'version B');

insert into sections(section_name, version_id)
values ('Toys', 1), ('Animals', 1), ('Cars', 1),
       ('Toys', 2), ('Animals', 2), ('Instruments', 2),
       ('Toys', 3);

我需要根据请求的 section_version.version_name 选择部分

如果版本名称"默认为" ,则查询只需要返回的所有部分 "默认" 版本。

但如果请求了"版本A" ,那么它应该返回属于"版本A&的每个部分 #34; ,并添加"默认" 版本中缺少的部分 - 基于 section_name

请看这个小提琴: http://sqlfiddle.com/#!15/466e1/1/0

这是我想出的:

select * from sections
join section_versions on (section_versions.id = sections.version_id)
where section_versions.version_name = 'default'

and sections.section_name not in (
  select sections.section_name from sections
  join section_versions on (section_versions.id = sections.version_id)
  where section_versions.version_name = 'version A'
)

UNION

select * from sections
join section_versions on (section_versions.id = sections.version_id)
where section_versions.version_name = 'version A'
;

这可能是一次天真的尝试,所以我正在寻找更好的解决方案。

有一个将处理的查询会很好:

  1. 仅选择"默认"
  2. 选择特定版本
  3. 当没有默认版本时工作(f.i。如乐器)

1 个答案:

答案 0 :(得分:1)

如果我理解你的意图,请严格遵循查询:

select distinct on (sections.section_name) * 
from sections
join section_versions on (section_versions.id = sections.version_id)
where 
  section_versions.version_name in ('default', 'version A')
order by
  sections.section_name,
  case version_name
    when 'default' then 1
    else 0
  end;

有关详细信息,请参阅http://www.postgresql.org/docs/current/static/sql-select.html

中的“DISTINCT条款”段落