MySQL 9.0 Reference Manual Including MySQL NDB Cluster 9.0

25.6.17.23 The ndbinfo dictionary_columns Table

The table provides NDB dictionary information about columns of NDB tables. dictionary_columns has the columns listed here (with brief descriptions):

You can obtain information about all of the columns in a given table by joining dictionary_columns with the dictionary_tables table, like this:

SELECT dc.*
  FROM dictionary_columns dc
JOIN dictionary_tables dt
  ON dc.table_id=dt.table_id
WHERE dt.table_name='t1'
  AND dt.database_name='mydb';
Note

Blob columns are not shown in this table. This is a known issue.