Oracle SQL:检查两列中同一行的值的组合

Oracle SQL:检查两列中同一行的值的组合,sql,Sql,我很少看到类似的问题,但对我的事业没有帮助。 我有一张类似于下面的表格: 我需要找到isVisible=True的所有项目。您可以使用筛选: select item from t where name = 'isVisible' and value = 'True'; select item from t where name = 'isVisible' and value = 'True';

我很少看到类似的问题,但对我的事业没有帮助。 我有一张类似于下面的表格:

我需要找到isVisible=True的所有项目。您可以使用筛选:

select item
from t
where name = 'isVisible' and value = 'True';
select item
from t
where name = 'isVisible' and value = 'True';