laike 发表于 2010-02-03 09:02

sql怎么样去掉一个字段前面的0

sql怎么样去掉一个字段前面的0
比如 00001
       005
      08
      000000088
这样的,我需要得到
       1
         5
      8
      88
sql里怎么实现?

yunzhongyue 发表于 2010-02-03 09:45

如果是10以上的IDS,可以用
select col::int
from table
来实现

liaosnet 发表于 2010-02-03 11:31

如果是10以上的IDS,可以用
select col::int
from table
来实现
yunzhongyue 发表于 2010-02-03 09:45 http://bbs3.chinaunix.net/images/common/back.gif

还可以,
select col + 0 from table 来实现

shadow2009ty 发表于 2010-02-03 15:08

select round(colnum) form table
页: [1]
查看完整版本: sql怎么样去掉一个字段前面的0