Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
(phpで)思考データベースをループして、各テーブルのレコードを表示したいと思います。
$retrun.=TableName." ".$RecordNumber
1つの特定のテーブルをカウントする方法は知っていますが、ループする方法がわかりません。
助けてくれてありがとう
そのための簡単な解決策があります
SELECT table_name, table_rows FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = '<your db>'
さらに簡単な解決策があります。
SELECT COUNT(*) FROM your_database WHERE (whatever)