select * from tablename as p where 1
and sidx_code in (
select max(sidx_code) from tablename where 1 and sidx_code=p.sidx_code
) group by p_title
위에 있는 필드 값을 접근하기 위해서는 위에 as p로 하고
p.sidx_code로 접근하면 된다.