Hello,
I missed a comparison "between". I.e. to select a range of postalCodes.
In SQL you can do it with "between": select * from company where postalcode is between '23000' and '23999' ...
or you can do it with ... where postalcode >= '23000' and postalcode <= '23999'
In espo I can select postalcode "greater than or equal" '23000' ... but there is no possibility to use the postalcode-attribute a 2nd time for 'lower than or equal' ...
or - 2nd method - to use 'between', but than you must have TWO input-fields.
How can I create one of the possibilities?
Thanks for Advice or an example.
Christoph
P.S. I've googled and read documentations, but I didn't found any applicable hints
I missed a comparison "between". I.e. to select a range of postalCodes.
In SQL you can do it with "between": select * from company where postalcode is between '23000' and '23999' ...
or you can do it with ... where postalcode >= '23000' and postalcode <= '23999'
In espo I can select postalcode "greater than or equal" '23000' ... but there is no possibility to use the postalcode-attribute a 2nd time for 'lower than or equal' ...
or - 2nd method - to use 'between', but than you must have TWO input-fields.
How can I create one of the possibilities?
Thanks for Advice or an example.
Christoph
P.S. I've googled and read documentations, but I didn't found any applicable hints
Comment