Oracle的SQLPLUS

时间:2009-07-02 09:45:55

标签: sqlplus

我在sqlplus中使用 set colsep'|'。但是,它只在两列之间追加管道(|)column-sperator,而不是在列的开头和结尾。示例 - 给出这样的输出 - EMP_NAME | emp_department | emp_salary

我希望这样的输出(附加“|”)在开头和结尾也是: | EMP_NAME | emp_department | emp_salary |  我怎样才能在oracle中使用sqlplus,Pls。帮助我......你的早期反应可以让我神经紧张!

2 个答案:

答案 0 :(得分:4)

我认为sqlplus不会让你这样做。如您所知,分隔符列在这里,嗯...分开两列。 您可以随时提出这样的要求:

select '|' || col1, col2, col3, col4 || '|'
from myTable

答案 1 :(得分:0)

select
   NULL,               -- select your left most |
   your_first_column,
   another_column_1,
   another_column_2,
   your_last_column,
   NULL                -- select right mose |
 from
   your_table;