select column_name from information_schema.COLUMNS where table_schema='recheck_model' and table_name = 'problem_model';
Call the columns view in information_schema, use where statement to specify your database and data table name.

Image Description