Thanks for all your support, Please read this new post to know how to give reference of other table to current table in fields.
You can find if any table with this name is exist in database of not, if you found delete it and create this one.
To do this operation use this code,
--Table Name: XYZ_SongRequest
IF EXISTS (SELECT * FROM SYSOBJECTS WHERE ID = OBJECT_ID('XYZ_SongRequest'))
DROP TABLE XYZ_SongRequest
GO
Now by using below code, you can create reference of other table let say, XYZ_User, XYZ_City, XYZ_Rj to table XYZ_SongRequest
--Table Name: XYZ_SongRequest
CREATE TABLE XYZ_SongRequest (
iRequestID BIGINT NOT NULL PRIMARY KEY IDENTITY(1,1),
iMemberId BIGINT NOT NULL CONSTRAINT FK_SongRequest_iMemberId References XYZ_User(iMemberID),
iCityID INT NOT NULL CONSTRAINT FK_SongRequest_iCityID References XYZ_City(iCityID),
iRjId INT NOT NULL CONSTRAINT FK_SongRequest_iRjId References XYZ_Rj(iRJid),
sRequest VARCHAR(1000) NOT NULL,
dRequestDate DATETIME NOT NULL DEFAULT GETDATE(),
dProcessDate DATETIME ,
sStatus Varchar(20) CHECK(sStatus in ('Pending','Approved')) NOT NULL DEFAULT 'Pending'
)
GO
Hope this post will help you,
if yes please put comment below of this page,
Rajesh Singh,
Senior Asp.Net Developer
e-Procurement Technologies Ltd (India)
www.abcprocure.com
No comments :
Post a Comment