쿼리 쿼리 번호를 특정 모드에서 사용할 수 있습니다.
MySQL에서는 view and filter를 사용하여 데이터베이스 이름에 따라 사용할 수 있습니다.
information_schema.tables
<code class="language-sql">SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = 'public';</code>
SQL Server 데이터베이스- SQL Server에서는 현재 데이터베이스의 모든 테이블 수에 디렉토리보기 통계를 사용할 수 있습니다.
이 쿼리는 현재 연결된 데이터베이스에 적합합니다.'public'
sqlite 데이터베이스
information_schema.tables
뷰 및 필터를 사용할 수 있습니다 :
<code class="language-sql">SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = 'your_database_name';</code>
your_database_name
위 내용은 데이터베이스에서 테이블 수를 계산하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!