Vorrei vedere i singoli campi commenti. In genere qualcosa che mi aspetterei da "descrivere" i parametri.Come puoi vedere i commenti della tabella dal client mysql?
mysql> describe metrics;
+-------+---------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------+---------------------+------+-----+---------+----------------+
| id | int(10) unsigned | NO | PRI | NULL | auto_increment |
| ty | int(10) unsigned | NO | | NULL | |
| t | bigint(20) unsigned | NO | | NULL | |
| s | int(10) unsigned | NO | | 60000 | |
| e | int(10) unsigned | NO | | NULL | |
| c | int(10) unsigned | NO | | NULL | |
+-------+---------------------+------+-----+---------+----------------+
è necessario cercare DB ** ** TABLE_SCHEMA, un esempio: 'DOVE table_name = 'my_table' e TABLE_SCHEMA = 'my_db'' – KingRider
@KingRider: Hai ragione, grazie. Sarebbe più completo. Ho aggiornato la risposta. –