用SQL语句拼一个流水号
问一个SQL问题,我想用SQL语句拼一个流水号,比如开始默认值是0000,然后每执行一次这个语句就加 1 ,第一次是0001,第二次是0002,依次类推,声明不用数据库字段.
给你个思路(生成包含日期的订单号的代码(20030112001) )
<script language="vbScript"><!--
sub subcode
dim startyear
dim startmon
dim startday
dim code
startyear = <%=year(now())%>
startmon = <%=month(now())%>
startday = <%=day(now())%>
if startmon<10 then
startmon="0"&month(date)
end if
if startday<10 then
startday="0"&day(date)
end if
if startyear&startmon&startday<>left(<%=(rs_newcode.Fields.Item("maxer").Value)%>,8) then
code=001
else
code=int(mid(<%=(rs_newcode.Fields.Item("maxer").Value)%>,9,3))+1
end if
if len(code)=1 then
code="00"&cstr(code)
end if
if len(code)=2 then
code="0"&cstr(code)
end if
Form1.goods_code.value = startyear & startmon&startday&cstr(code)
end sub
-->
</script>