Answers for "how to select column as blank which is not present in mysql table as"

SQL
0

mysql return column names when table is empty

select myQuery.*
from (select 1) as ignoreMe
left join (
select * from myTable where false -- insert your query here
) as myQuery on true
Posted by: Guest on February-18-2021

Code answers related to "how to select column as blank which is not present in mysql table as"

Code answers related to "SQL"

Browse Popular Code Answers by Language