Generate resume number (eg. RE00000XXXX)

Source: Internet
Author: User

Resume number generation function: Scalar Value Function


/*
Author: xingbaifang
DateTime: 2007-10-15
*/
Create Function Job_GetREID (@ PKId int)
Returns varchar (50)
Begin
Declare @ TempValue int
Declare @ REID varchar (50)
Declare @ CurrentDate varchar (50)
Set @ PKId = @ PKId
Set @ CurrentDate = Convert (varchar (50), getdate (), 112)
Set @ TempValue = 100000000 + @ PKId
Set @ REID = substring (cast (@ TempValue as varchar (20), len (cast (@ TempValue as varchar (20)-7, 8)
Set @ REID = 'Re' + @ REID -- RE00000XXX
-- Set @ REID = 'Re' + @ CurrentDate + @ REID -- RE2007101500000XXX
Return @ REID
End

The call is as follows:
Select dbo. Job_GetREId (10)
Output:
RE00000010

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.