please let me know the list of SQL REPORTING COMMANDS in Oracle sql
How to set the title in the top of the table? A. ttitle on; ttitle 'employee reports';
How to off the ttitle? A. ttitle off;
How to set the title in the left side? A. ttitle left 'employee reports' skip left;
How to set the title in the center? A. ttitle center 'employee reports' skip center;
How to set the title in the right side? A. ttitle right 'employee reports' skip right;
How to set the title in the bottom of the table? A. btitle on; btitle 'End of the report'
How to off the btitle? A. btitle off;
How to change the column name? A. column empno heading 'no';
How to change the salary format? A. column sal heading 'salary' format $9,999.99;
How to clear column heading? A. column empno clear;
How to break the deptno? A. break on deptno;
How to clear the break command? A. clear breaks; [it clears all the break command] clear breaks on deptno;