sql >> Database >  >> RDS >> Mysql

MySQL Toon datadictionary van tabellen

Dit is wat ik gebruik om een ​​datadictionary te genereren als dat moet:

SELECT t.table_schema AS db_name,
       t.table_name,
       (CASE WHEN t.table_type = 'BASE TABLE' THEN 'table'
             WHEN t.table_type = 'VIEW' THEN 'view'
             ELSE t.table_type
        END) AS table_type,
        c.column_name,
        c.column_type,
        c.column_default,
        c.column_key,
        c.is_nullable,
        c.extra,
        c.column_comment
FROM information_schema.tables AS t
INNER JOIN information_schema.columns AS c
ON t.table_name = c.table_name
AND t.table_schema = c.table_schema
WHERE t.table_type IN ('base table', 'view')
AND t.table_schema LIKE '%'
ORDER BY t.table_schema,
         t.table_name,
         c.ordinal_position

Hiermee worden alle databases op de server weergegeven. Misschien wilt u de where-component wijzigen om alleen naar het specifieke tabelschema te kijken dat u wilt.



  1. INSERT INTO ... RETURNING - dubbelzinnige kolomverwijzing

  2. Meer informatie over het DBMS_OUTPUT-pakket in Oracle

  3. Hoe MySQL op Ubuntu te installeren en configureren

  4. MySQL Big FK-ID