S
Steve Andler
Hi ;
Is it possible to update multiple colums with one query .
The reason i need that is there are 15 colums to be
updated in a table which means 15 seperate queries . I
have written down my query as it can only update one
column for the moment .
P.S:Update query refers to a reference table for the
colums to be updated.
UPDATE [ExistingTable] INNER JOIN ConversionTable ON
[ExistingTable].[Code 1]=[ConversionTable].[Old Code] SET
[ExistingTable].[Code 1] = [ConversionTable].[NewCode];
Thanks for any help.
Is it possible to update multiple colums with one query .
The reason i need that is there are 15 colums to be
updated in a table which means 15 seperate queries . I
have written down my query as it can only update one
column for the moment .
P.S:Update query refers to a reference table for the
colums to be updated.
UPDATE [ExistingTable] INNER JOIN ConversionTable ON
[ExistingTable].[Code 1]=[ConversionTable].[Old Code] SET
[ExistingTable].[Code 1] = [ConversionTable].[NewCode];
Thanks for any help.