Mysql
 sql >> Database >  >> RDS >> Mysql

Come ottenere la struttura del database in MySQL tramite query

Penso che quello che cerchi sia DESCRIBE

DESCRIBE table;

Puoi anche utilizzare SHOW TABLES

SHOW TABLES;

per ottenere un elenco delle tabelle nel database.