Re: plz suggest me the query
- From: nidaar <nidaar@xxxxxxxxx>
- Date: Fri, 15 Aug 2008 12:29:51 -0700 (PDT)
CREATE TABLE [dbo].[Departments](
[DepartmentID] [nchar](6) NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[Departments] WITH CHECK ADD CONSTRAINT
[CK_Departments] CHECK (([DepartmentID] like 'DEP[0-9][0-9][0-9]'))
GO
ALTER TABLE [dbo].[Departments] CHECK CONSTRAINT [CK_Departments]
GO
.
- References:
- plz suggest me the query
- From: mo/-/sin
- plz suggest me the query
- Prev by Date: plz suggest me the query
- Next by Date: Re: plz suggest me the query
- Previous by thread: plz suggest me the query
- Next by thread: Re: plz suggest me the query
- Index(es):