I am running a query in PHPMyAdmin. The query is fine. it's showing the correct result.
I want to export that result in a CSV file. It's not on the local server. It's on the webserver
This is my query
SELECT * FROM notices
LEFT JOIN companies ON notices.company_number = companies.company_number
LEFT JOIN sic_codes ON companies.sic_1 = sic_codes.code
LEFT JOIN notice_insolvency_practitioners ON notices.id = notice_insolvency_practitioners.notice_id
LEFT JOIN insolvency_practitioners ON notice_insolvency_practitioners.insolvency_practitioner_id = insolvency_practitioners.id
Where notices.publication_date >'2020-05-01' and notices.publication_date < '2020-05-31'
In the phpmyadmin window at the bottom of the result pane, I can see a export link. but if I click on export that allows me only to export the notice table.
I don't want to create a frontend window for it. just want to export the result in CSV file from PHPMyAdmin
How to do that?