vote up 0 vote down star
declare @@newid int, @@newRequestId int

INSERT INTO Projects    (ProjectName)
VALUES	('first')

SELECT [@@newId] = SCOPE_IDENTITY()



-- Insert statements for procedure here
INSERT INTO Requests 
(projectId, Title, RequestedBy, ReviewedBy, AssignedTo, EstimatedHours, ActualHours, 
	Status, DateCreated, DateDue, DateAssigned, DateQC, Description)
VALUES (@@newId, 'first','me', null,null, 10, 
	null, 1, '07/27/2009', '7/29/2009', '07/27/2009', null, null)

	select  [@@newRequestId]= scope_Identity()
flag
3  
And your question is? – Joel Coehoorn Jul 28 at 21:10
Voting to close as "not a real question." The code given by the OP seems to demonstrate the answer to the question in the title. – Bill Karwin Aug 19 at 23:56

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.