数据库中的datetime字段类型
我想查询出来的结果只是月份的部分
month(datetime)
得到是6,7,11,12等
现在我想得到的是06,07,11,12
就是小于10月的单数位前加0
------解决方案--------------------
- SQL code
select right(100+month(日期列),2) from 表
------解决方案--------------------
right(100+ltrim(month),2)
select right(100+month(日期列),2) from 表
------解决方案--------------------
right(100+ltrim(month),2)