Few of my databases has records of <Null> data in the fieldnames. I tried several ways of writing a code to delete those records but it will say '0 records affected'.
Here is an example of my code to delete the records with the <NULL> data:
USE PurchTransf
DELETE FROM Whse2Data
WHERE UnitsMTD = Null and AUGunits = Null and
DECunits = Null and FEBunits = Null
John
Here is an example of my code to delete the records with the <NULL> data:
USE PurchTransf
DELETE FROM Whse2Data
WHERE UnitsMTD = Null and AUGunits = Null and
DECunits = Null and FEBunits = Null
John