I have a stupid little SQL query which isn’t working and i can’t figure out why
SELECT * FROM `tablename` WHERE `id` = '294' INSERT INTO 'auth' VALUES 'false'
I want to select the row which pertains to the id (294) and insert the value false into the ‘auth’ column, but i keep getting a #1064 error.
Can someone correct the above?
embarrassed,
Dan
You just want to update the ‘294’ record and set its ‘auth’ value to ‘false’, correct? If so: