|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Monday, May 13, 2013 12:09 PM
Points: 101,
Visits: 246
|
|
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
|
|
|
|
|
Say Hey Kid
      
Group: General Forum Members
Last Login: Today @ 2:19 PM
Points: 690,
Visits: 341
|
|
i believe what you want isn't = Null but IS NULL
|
|
|
|