Click here to Skip to main content
15,896,501 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
SQL
Create table  #Temp_BrandSequence
(
    SequenceNo INT identity,
    BrandID BIGINT,
    ChannelID BIGINT,
    CreatedBy INT,
    CreatedDate DATETIME
)
SET IDENTITY_INSERT #Temp_BrandSequence ON
INSERT INTO #Temp_BrandSequence (SequenceNo,BrandID,ChannelID,CreatedBy ,CreatedDate)
SELECT @ChannelCount1+1,P.RecordID,2,123,getdate()FROM @Brand_S B
INNER JOIN ProductLevelDetails  P ON (P.RecordCode=B.BrandCode and P.LevelId=3)
WHERE Flag='I' AND PId IS NOT NULL;

this generate same identity values for all row


insert Query have more than one row
What I need is
I have to generate Values in Identity column from which i specified
Posted
Updated 7-Aug-12 19:16pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900