Mysql 쿼리 테이블 정보 방법: [select * from tables where table_schema = "db_name";] 명령을 실행하면 데이터베이스에 있는 모든 테이블의 정보를 볼 수 있습니다.
구체적인 방법은 다음과 같습니다.
관련 학습 권장 사항: mysql 튜토리얼(동영상)
모든 테이블의 정보를 하나로 쿼리:
use information_scheam; select * from tables where table_schema = "db_name";
단일 테이블의 정보 쿼리:
use information_scheam; select * from tables where table_schema = "db_name" and table_name = "table_name1";
Query one table 테이블의 모든 필드 정보:
use db_name; show full columns from table_name1; show full columns from table_name2;
이 기사는 PHP 중국어 웹사이트 mysql 그래픽 튜토리얼 채널에서 가져온 것입니다. 학습을 환영합니다!
위 내용은 mysql에서 테이블 정보를 쿼리하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!