Hi,
I have been using LibreOffice in order to make requests to a MySQL database for quite a while. The following nested SQL query kept producing correct results:
SELECT * FROM dailydata AS a, (SELECT symbol, MAX(date) as MaxDate FROM
dailydata GROUP BY symbol) as b WHERE a.symbol = b.symbol AND
a.date = b.MaxDate
After upgrading my Linux workstation for Fedora 29 and LibreOffice to 6.1.2.1, the very same query produces an error message “The data content could not be loaded”.
I have used the same query with a similar version of LibreOffice (6.1.3.2) under MacOS and did not notice any problem. The same query is perfectly executed when submitted directly to MySQL via MySQL Workbench. Also, when making a simple query (SELECT * FROM dailydata WHERE symbol = ‘AAPL’) works on both machines.
Any idea why the nested SQL query is suddenly broken on Linux and still works on MacOS ?
Any idea how I should change this query to make it work ?
Thanks in advance