Hello Community,
i have two questions about filter.
First one is - how to realize this SQL Statement (Northwind-Database e.g.)
select
*
from
Customers
where
(Address + City) like '%Obere%Berlin%'
Address and City are fields of Table Customers
The second Question is, how to realize nested or-statements
...
where F1=Ex1 or (F2=Ex2 and F3=Ex3 or (etc...) )
...
Do you have Examples for this two problems (Adapter-Way)