mysql에서 테이블 이름 및 설명을 보는 방법: [select table_name from information_schema.tables where table_schema='database name';] 문을 실행하여 확인하세요.
모든 테이블 이름 쿼리
(권장 튜토리얼: mysql 비디오 튜토리얼)
select table_name from information_schema.tables where table_schema='数据库名称';
데이터베이스 테이블 이름 쿼리에 대한 의견:
select table_name 表名,TABLE_COMMENT 表注释 from INFORMATION_SCHEMA.TABLES Where table_schema = '数据库名称' AND table_name ="表名"
관련 권장 사항: mysql 튜토리얼
위 내용은 mysql에서 테이블 이름과 설명을 보는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!