简体   繁体   中英

Mysql extract value grouped by and ordered

this is my problem, i have a table with this

page_name | phase_id | type | content

Home def  | 1 |  home |<some content>
Home p2   | 2 |  home |<some content>
Rules def | 1 |  rules |<some content>
Rules p2  | 2 |  rules |<some content>
Prize def | 1 |  prize |<some content>
Contact   | 1 |  contact |<some content>

i need query for extract unique rows with phase_id value (i must set in query phase_id<=2), for example

Home p2   | 2 | home |<other content>
Rules p2  | 2 | rules |<content>
Prize def | 1 | prize |content
Contact   | 1 | contact |content

any ideas for do that?

Thx all

Here's 3 ways to do it

drop table if exists phases;
create table phases(page_name varchar(10),  phase_id int, content varchar(20));

insert into phases values
('Home def'  , 1 , '<some content>'),
('Home p2 '  , 2 , '<other content>'),
('Rules def' , 1 , '<content>'),
('Rules p2 ' , 2 , '<content>'),
('Prize def' , 1 , 'content'),
('Contact'   , 1 , 'content');


select  s.* from
(
select  p.*,
         substring(p.page_name,1,instr(concat(p.page_name,' '),' ') -1) UniquePage,
         if(substring(p.page_name,1,instr(concat(p.page_name,' '),' ') -1)  <> @p, @rn:=1,@rn:=@rn+1) rn,
         @p:=substring(p.page_name,1,instr(concat(p.page_name,' '),' ') -1) prevp
from   (select @rn:=0,@p:='') rn,phases p
order by substring(p.page_name,1,instr(concat(p.page_name,' '),' ') -1), p.phase_id desc
) s where s.rn = 1 
;

select s.*
from 
(
select p.*,
            (Select max(p1.phase_id) from phases p1 where substring(p1.page_name,1,instr(concat(p1.page_name,' '),' ') -1) = 
            substring(p.page_name,1,instr(concat(p.page_name,' '),' ') -1)) maxpid
from phases p
) s
where s.phase_id = s.maxpid
;


select p.*
from phases p
where p.phase_id = (Select max(p1.phase_id) from phases p1 where substring(p1.page_name,1,instr(concat(p1.page_name,' '),' ') -1) = 
            substring(p.page_name,1,instr(concat(p.page_name,' '),' ') -1))
;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM