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.
我需要一些超表中的数据。我可以使用超表外壳检查数据,并且很好奇是否可以将 HQL 查询的结果通过管道传输到文件中。当结果集很大并且想要格式化它或其他东西时,这对于进一步调查很有用。
有任何想法吗?
当然:
SELECT * FROM table INTO FILE "file.txt";
您甚至可以压缩文件:
SELECT * FROM table INTO FILE "file.txt.gz";
输入help selectshell,您将获得更多信息。
help select