https://bugs.documentfoundation.org/show_bug.cgi?id=136475

Robert Großkopf <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #2 from Robert Großkopf <[email protected]> ---
It will work right in direct SQL mode.

It won't run with the query-GUI, because the query-GUI expects a mask like
'day' around the strings. You could use 
CAST( CURRENT_DATE AS DATE ) + 90 
instead.
Select * From Entitlements
Where EXPIRATIONDATE <= CAST( CURRENT_DATE AS DATE ) + 90 

Together with casting the current_date as date it will work in query-GUI, but
will show the value as integer. So you have to format it afterwards.

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to