You can list all the columns of a table using below query where tablename is the name of the table.
select * from information_schema.columns where table_name = 'tablename';
You can list all the columns of a table using below query where tablename is the name of the table.
select * from information_schema.columns where table_name = 'tablename';