小编Jas*_*eys的帖子

SQL*Plus中的清除屏幕

我正在运行以下报告但收到错误

/* Simple table formatting */

clear screen;
accept Report_File char prompt 'Enter a file name for summary report ';

/*Set up column headers*/
col StoreCode format A8 heading 'Store Code';
col DESCRIPTION format A8 heading 'Item Description';
col PRICE format $999999.99 heading 'Price';
col QUANTITY format 999 heading 'Quantity';
col (Price*Quantity) format $999999.99 heading 'Value';

/*Format and title pages */

set Pause off;
set Feedback off;
set Space 6;
set newpage 2;
set pagesize 54;
set linesize 200;
set …
Run Code Online (Sandbox Code Playgroud)

sql oracle sqlplus

7
推荐指数
3
解决办法
3万
查看次数

标签 统计

oracle ×1

sql ×1

sqlplus ×1