How do I get column names of two tables at a time – Mysql
How do I get the column name of two tables in a single query ? SELECT column_name FROM INFORMATION_SCHEMA.COLUMNS where table_name = 'table_name'; This works for single table. But if I try SELECT column_name FROM INFORMATION_SCHEMA.COLUMNS where table_name = 'table1'…