what is wrong with this sql?
what i'm trying to do is set the payout to 100 to customers which ID is either 234, 34 or 102 in the shortest sql possible
Code:
update `customers` set payout=100 where id=('234', '34', '102');

Comment