set echo on/off example
更新:HHH   时间:2023-1-7


1.create echo.sql script with content in the following text

点击(此处)折叠或打开

  1. set echo on
  2. select ename from emp where rownum <2;
  3. set echo off --这后面的查询语句不会显示出来
  4. select dname from dept where rownum <2
2.execute @/directory_path/echo.sql   your can use pwd query directory or find / -name "file_name"
返回关系型数据库教程...