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

Come ottenere i nomi di tutte le colonne per tutte le tabelle in MySQL?

select * from information_schema.columns
where table_schema = 'your_db'
order by table_name,ordinal_position