with
DataSet
as
(
select null as value union all
select 'YES' as value union all
select 'NO' as value union all
select 'PERHAPS' as value
)
select *
from DataSet
where not exists
(
select 1
where value = 'NO'
)
_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

