Methods for customizing the data format for SQL Server data table fields _mssql

Source: Internet
Author: User

The example in this article describes a method for customizing the data format for a SQL Server data table field. Share to everyone for your reference, specific as follows:

--Modify the field CompanyID in Datasheet sys_company custom self-add constraint
ALTER TABLE [dbo].[ Sys_company]
Add Constraint df_sys_company_companyid
DEFAULT ([dbo].[ F_primarycode_sys_company] ()) for [CompanyID]
--go
--delete constraint
Alter table sys_loginfo drop Constraint Df_sys_ Company_companyid
--Create data table Sys_company field CompanyID custom self-add constraint (such as: CY00000001, length is bit, top two is a custom number, the back bit is the serial number)
Create function [dbo]. [F_primarycode_sys_company] ()
Returns Char ()
as Begin return
  (SELECT ' CY ' +right (100000001+isnull) (right MAX (CompanyID), 8 ), 0), 8) Sys_company with (Xlock,paglock)) End


The effect is as shown in the figure:

I hope this article will help you with your SQL Server database program.

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.