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.
使用 Oracle 11g Express 版。对于一个项目,我需要一个包含我所有必要的 SQL 语句和输出(这些报告)的文档,以及一个包含我在项目期间编写的所有 SQL 语句的 SQL 文件。
您如何将这些报告设置到这些文档中?
您可以利用 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;