Is it possible to select from show tables in MySQL?
show tables
SELECT * FROM (SHOW TABLES) AS `my_tables`
Something along these lines, th
SELECT column_comment FROM information_schema.columns WHERE table_name = 'myTable' AND column_name = 'myColumnName'
This will return the comment on: myTable.myColumnName