Hi guys ,
i have a basic query question, sorry i am not familiar with all the terms so bare with me
i have a table called Persons and a row called Pers_statut which is a choise box (Active and Inactive) i want to set everyone to Active
i thought this would work but didnt
UPDATE Persons
SET Pers_statut = 'Active'
WHERE Pers_statut = ' '
when i execute i get 0 rows affected
Can someone Help
Thank you
i have a basic query question, sorry i am not familiar with all the terms so bare with me
i have a table called Persons and a row called Pers_statut which is a choise box (Active and Inactive) i want to set everyone to Active
i thought this would work but didnt
UPDATE Persons
SET Pers_statut = 'Active'
WHERE Pers_statut = ' '
when i execute i get 0 rows affected
Can someone Help
Thank you
Comment