True, wenn irgendwo nicht drin
SQL-Code:
select count(*) > 0 as res from MyTable where not (Name like '%XYZ%')
select count(*) > 0 as res from MyTable where Name not like '%XYZ%'
select distinct true as res from MyTable where Name not like '%XYZ%'
Dann noch die erwähnte sache bezüglich LIKE und %
Sowie, kennt Interbase auch ein iLIKE?
Weil wegen Groß-/Kleinschreibung.
SQL-Code:
select distinct true as res from MyTable where Name not ilike '%XYZ%'
select distinct true as res from MyTable where upper(Name) not like '%XYZ%'