0

使用 Oracle 11g Express 版。对于一个项目,我需要一个包含我所有必要的 SQL 语句和输出(这些报告)的文档,以及一个包含我在项目期间编写的所有 SQL 语句的 SQL 文件。

您如何将这些报告设置到这些文档中?

4

1 回答 1

0

您可以利用 SQLPlus 的假脱机功能

SQL>-- turn on writing query result to a file
SQL>spool c:\temp\myorareport.txt;

SQL>-- enter and execute your queries
SQL>select * from employees;

SQL>-- turn off spooling
SQL>spool off;
于 2013-05-12T05:51:08.547 回答