I have a question about using ORM Propel and creating a query.
I have a "location" table with fields:
- location
district- postcode
- the street
- number
Now I want to select all locations in which the location field is NOT NOT null.
How can i do this? I tried this, but I am returning all the results ...
Trial query: $locations = LocationQuery::create()->where('location' != null)->find();
source share