Why do I get #### in the NUMBER column after format?

后端 未结 2 1421
情歌与酒
情歌与酒 2021-02-08 09:16

I have two problematic columns: Fee NUMBER type, AdjFee also NUMBER.

After

column Fee format a5;
select Fee ID smth
from Visit;
<         


        
2条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-02-08 10:05

    Yes, column names can be truncated (or) changed to the name you want

    From your above select statement.

    If you want to truncate 'Fee' column to 'Fe'. Here is the procedure -

    col c1 heading "Fe" for a5

    col c2 heading "ID" for 999

    col c3 heading "smth" for a5

    select fee c1, ID c2, smth c3 from visit;

提交回复
热议问题