Preloader image
DDD

데이터베이스

MySQL - 테이블 목록 전체 출력하기

작성자 관리자 (admin)
조회수 4,472
입력일 2020-06-17 10:57:36

SELECT table_name, table_comment
  FROM information_schema.tables
 WHERE table_schema = 'DB명'

^