1. 程式人生 > >航圖轉換相關sql

航圖轉換相關sql

ica terminal cto type 轉換 rec lec air distinct

--舊庫列舉所有類型航圖

select distinct c.identifier airport_icao,d.sc_code chart_type,s.name
from special_chart s, airport c, special_chart_type d
where
c.isdirectory=1 and c.bureau_id<8 and
c.airport_id=s.airport_id and s.sc_type_id=d.sc_type_id
and d.sc_code=‘機場圖_停機位置圖‘
order by s.name

--新庫順序列舉航圖類型

select * from TERMINAL_CHART_TYPE t
order by nvl(t.parent_type_id,0),t.seq_num

航圖轉換相關sql