Reputation: 3311
I have a table which stores featured from and to for objects. I would like to unfeature an item via ajax.
The way I have decided todo that is to set any featured rows for an object called to -1 day from now so its no longer featured.
However my query isn't working.
UPDATE `Movie_Featured` SET `to` = DATE_SUB(CURDATE(), INTERVAL 1 DAY) WHERE id > 0 $where
Ideas? Thanks!
Upvotes: 0
Views: 2918
Reputation: 401032
You have a ';
' before the where
clause, in your query :
UPDATE ... INTERVAL 1 DAY); WHERE ...
I suppose you should remove that ';
', because it's the character that's used to separate queries ; which means you actually have two queries, here :
UPDATE
Movie_FeaturedSET
to= DATE_SUB(CURDATE(), INTERVAL 1 DAY);
WHERE id > 0 $where
Upvotes: 2