1.  SQL> select id,userid from tbluseraccount where rownum<=2 ; 
  2.  
  3.         ID     USERID 
  4. ---------- ---------- 
  5. 1.0000E+15 1.0000E+15 
  6. 1.0000E+15 1.0000E+15 
  7.  
  8.  
  9. ----sqlplus解决办法 
  10.  
  11. show numwidth 
  12.  
  13. numwidth 10 
  14.  
  15.  
  16. set numwidth 20 
  17.  
  18.  
  19.  
  20.  
  21.  
  22. ---to_char 
  23.  
  24. select to_char(id),to_char(userid) from tbluseraccount where rownum<=2 ;