본문 바로가기
MySQL MariaDB/DB,Table 정보

MySQL / MariaDB 테이블별로 전체 컬럼정보 조회

by 쑤- IT, MySQL, MariaDB, DBeaver 2021. 8. 11.

 
#---  테이블별 전체 컬럼정보 조회

 

   SELECT
      T.table_name 
    , C.column_name
    , C.column_comment
    , C.ordinal_position
    , C.column_type
    , C.is_nullable
    , C.column_default
    , C.column_key
   FROM
       information_schema.TABLES AS T
   INNER JOIN
      information_schema.COLUMNS AS C
   ON
          T.table_schema =DATABASE()
   AND T.table_name    = C.table_name
   ORDER BY T.table_name. C.column_position;

댓글