プレイリストのエクスポート方法

(1) Mtdata.mdbをAccessで開く
(2) 下記のクエリを流す
(3) メモ帳でm3uを作成してヘッダ行を除いて貼り付ける

select [500] from t_containment
left join t_object
on t_containment.ChildId = t_object.ObjectId
where t_containment.ParentId
Like
(select ObjectId from t_object
where ObjectName Like 'プレイリスト名'; )
order by t_containment.Order asc;