0

我有一个我想从我的 MySQL 数据库中检索的手工列出的 uniqueID 列表。截至目前,我正在使用:

Select * from TABLE where uniqueID = "111" or uniqueID = "124" or uniqueID = "220"...

显然,这是非常耗时的。uniqueID 列表未写入任何文件。我只是想要更有效的查询来告诉数据库检索具有唯一ID 的行。有没有类似的东西,

Select * from TABLE where uniqueID = {"111", "124", "220"...}

我可以用吗?

谢谢你。

4

2 回答 2

3
Select * from TABLE where uniqueID IN ('111','124','220',...)
于 2012-09-28T18:51:27.007 回答
1

SELECT * from table WHERE uniqueID IN (111,123,220);

于 2012-09-28T18:51:47.193 回答