Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例:
EXPORT TO file.del of DEL ' select * from emp', ' select * from emp1'
これは機能していません。お知らせ下さい。ありがとう
いいえ、できません。ファイルは、単一の選択の結果を格納するものと認識されているためです。
2 つの選択に同じ列セットがある場合は、ユニオン選択を試してください。
select * from emp union all select * from emp1.
このように、エクスポートには 1 つの選択しかありませんが、両方のテーブルが含まれます。列の精度が同じ場合、ユニオンを実行できる場合、クエリは有効になります。