반응형
/**********************************************************************************************
-- Title : [2k] QA에서 MDB 데이터 조회하기

-- Reference : dBRang.com
-- Key word : openrowset
**********************************************************************************************/
SELECT b.wkey as "MDB", a.*
FROM EP_AB as "a" RIGHT OUTER JOIN OPENROWSET('Microsoft.Jet.OLEDB.4.0'
                                             ,'e:ep-2000-001.mdb';;
                                             , EP) as b
                        ON a.wkey = b.wkey
반응형

+ Recent posts