I want to query the name of all columns of a table. I found how to do this in:
But I also need to know:
You can write this query to get column name and all details without using INFORMATION_SCHEMA in MySql :
SHOW COLUMNS FROM database_Name.table_name;