Mysql:删除具有不同值的行

时间:2015-11-25 00:36:24

标签: mysql

我想使用mysql删除我拥有的字符串列表的行。

示例:

---------------------
|    accounts       |
|-------------------|
|string | name | id |
|-------|------|----|
| strn1 |  bla | 3  |
|-------|------|----|
| strn2 | other| 5  |
|-------|------|----|

然后我有strn1和strn2

delete from `accounts` where `string`= ("strn1","strn2");

(它不起作用)

2 个答案:

答案 0 :(得分:1)

delete from `accounts` where `string` in ('strn1','strn2');

答案 1 :(得分:0)

非常感谢strawberry

我做了:

DELETE FROM `table` WHERE `column` IN ('strng1', 'strng2');

那是它。