- How can I filter end > todays date > start? I tried this:
“annual_cultivation_dates”.“end_month” >= MONTH( today( ) ) AND “annual_cultivation_dates”.“end_day” >= DAY( today( ) ) AND “annual_cultivation_dates”.“start_month” <= MONTH( today( ) ) AND “annual_cultivation_dates”.“start_day” <= DAY( today( ) )
When I use the GUI I can not save it and I get this error:
Syntax error in SQL statement /home/buildslave/source/libo-core/dbaccess/source/core/api/SingleSelectQueryComposer.cxx:109
It does work and run…
How do I improve the formula in the event that “start_month” > “end_month”
for example harvest potatoes “start_month” = 6 and “end_month” = 2
- I have a table “day” with only one entry and columns "month’ and “day”. How can I set the default entries to be month(today()) and day(today()) and use these records for filtering “annual_cultivation_dates”?