SQL server generates numbers sorted by date

Source: Internet
Author: User
Declare @ maxVersion int, @ strYear varchar (2), @ strMonth varchar (2), @ strYearMonth varchar (4)
Set @ strYear = Right (Cast (Datepart (yy, Getdate () AS varchar (4), 2)
Set @ strMonth = Cast (Datepart (mm, Getdate () AS varchar (4 ))
If (Len (@ strMonth) = 1)
Set @ strMonth = '0' + @ strMonth

Set @ strYearMonth = @ strYear + @ strMonth
 
Select @ maxVersion = max (BomVersion) from TBL_Bom Where MaterialNo = @ MaterialNo

-- When the maximum value is invalid or the current month has a month greater than the maximum value
If (@ maxVersion is null OR @ maxVersion = 0 OR Cast (@ strYearMonth AS Int)> @ maxVersion/100)
Set @ BomNewVersion = Cast (@ strYearMonth + '01') AS int)
Else
Set @ BomNewVersion = @ maxVersion + 1

Three substrings
In SQL server, SELECT x = SUBSTRING ('abcdef', 1, len ('abcdef '))
C #: string x = SUBSTRING ('abcdef', 0, len ('abcdef '))
In javascript: string x = SUBSTR ('abcdef', 0, len ('abcdef '))
A little different.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.