S
SpookiePower
I have this SQL
Delete * from table
where customernumber = 153
And now I need to delete more that 200 customers from my table.
Insted of running the SQL 200 times, I have tryed to write the SQL
like this -
Delete * from table
where customernumber = 153,248,457,789..........
But I get and error that says that I'm missing a "," sign.....but
where ???
Delete * from table
where customernumber = 153
And now I need to delete more that 200 customers from my table.
Insted of running the SQL 200 times, I have tryed to write the SQL
like this -
Delete * from table
where customernumber = 153,248,457,789..........
But I get and error that says that I'm missing a "," sign.....but
where ???