I'm trying to update one of my tables with data from another table. The tables have the same number of rows if that matters. However when I try to use UPDATE
and SET
in the below code, the column Flow in still has all null values.
UPDATE #temptableInfo
SET Flow = (SELECT xRFlow
FROM #temptableInfoPre)
Any help is appreciated.