WarcraftPlayer
MIS
Not sure if this is possible, I need to update 3 columns. My current query is below.
Column A and B are in Table A the third column is going to be in table B.
How do I adjust my query to add it.
/cry
/help
LVL 53 Paladin
Code:
UPDATE TableA
SET ColumnA=Value
ColumnB=Value
FROM TableA A
INNER JOIN TableB B ON A.tableid = B.tableid
WHERE A.column = 'something' AND
b.column = 6
Column A and B are in Table A the third column is going to be in table B.
How do I adjust my query to add it.
/cry
/help
LVL 53 Paladin