这个怎么编呢?
year(now)&month(now)&day(now)&00序号
我上面这个可以吗?
应该放在哪里呢?
纯小白,求大神讲解详细点
select year(now) + "" + month(now) + "" + day(now) + "00" as 序号 from 表
select CStr(year(now)) + CStr(month(now)) + CStr(day(now)) + "00" from 表
将楼上任意一楼的放在sql查询里
select CStr(year(now)) + CStr(month(now)) + CStr(day(now)) + "00" from 表