mysql – 如何从SQL中获取仅出现在特定值的条目?

前端之家收集整理的这篇文章主要介绍了mysql – 如何从SQL中获取仅出现在特定值的条目?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我需要在我的sql表中找到始终只出现在某个值中的条目.

例如:

DeviceID    Transmission
--------    ------------
000329      Inventory
000980      Inventory
004406      Starting
000980      Stopping
000329      Inventory
004406      Inventory

现在我需要找到所有只有库存传输且从不启动或停止的DeviceID.在这种情况下000329.

最佳答案
您可以选择所有Transmission =’Inventory’id并过滤掉Transmission中的(‘Starting’,’Stopping’):

select distinct(DeviceID) from YourTable
WHERE Transmission = 'Inventory'
and DeviceID not in
( select distinct(DeviceID) from YourTable
  WHERE Transmission in('Starting','Stopping')
);

sql小提琴:http://sqlfiddle.com/#!9/81896/12

原文链接:https://www.f2er.com/mysql/433930.html

猜你在找的MySQL相关文章