Question : Deleting data from Access Table


Hi,

Does anyone know how i could run a query that looks at three columns in  an Access table and deletes any entries that are  -1

Thanks
Seamus

Answer : Deleting data from Access Table

I ASSUME, you no need to delete the whole rows,just want to update the data

Update Table
set column1=NULL,column2=NULL,column3=NULL
WHERE
 column1 = -1 OR column2 = -1 OR column3 = -1

Random Solutions  
 
programming4us programming4us