获取一个数据库中所有表的所有列的元数据

SELECT table_schema, table_name, column_name, ordinal_position, data_type, 
       numeric_precision, column_type, column_default, is_nullable, column_comment 
  FROM information_schema.columns 
  WHERE table_schema='funds'
  order by ordinal_position;


你可能感兴趣的:(获取一个数据库中所有表的所有列的元数据)