I'm needing to write a query that updates about 700 records that have "Null" and write the phrase "Individual Purchase if it finds this.... I'm rusty with ad hoc update queries... thought below would work, but not:
USE TrackIT
UPDATE dbo.tblTransactions
SET tblTransactions.Transaction_Type = 'Individual Purchase'
WHERE tblTransactions.Transaction_Type = Null
GO