I am tryong to set a constant list of the uids of the dev team of a project so I can later in my MySQL script exclude them from queries with something like .. where user not in @dev_team_ids .. but I am getting this error:
mysql> set @dev_team_ids = (1,2,4);
ERROR 1241 (21000): Operand should contain 1 column(s)
Is there a way to get around this?