mysql return column names when table is empty

Solutions on MaxInterview for mysql return column names when table is empty by the best coders in the world

showing results for - "mysql return column names when table is empty"
Arthur
19 May 2017
1select myQuery.*
2from (select 1) as ignoreMe
3left join (
4select * from myTable where false -- insert your query here
5) as myQuery on true