php 를 통 해 특정한 데이터베이스 의 표 당 데이터 양 을 빠르게 통계 합 니 다.

그래서 자신 이 간단하게 몇 줄 의 코드 를 써 서 상기 수요 의 집행 결 과 를 실현 했다.
 
<?php
$conn=mysql_connect('localhost','root','');
mysql_select_db(' ',$conn);
$sql="SELECT information_schema.TABLES.TABLE_NAME FROM information_schema. TABLES WHERE table_schema = ' '";
$res=mysql_query($sql);
while ($result = mysql_fetch_assoc($res)) {
$tables[]=$result['TABLE_NAME'];
};
echo "<table>
<tbody>
<tr>
<td> </td>
<td> </td>
</tr>";
foreach ($tables as $k=>$v){
$sql_count="select count(id) AS nums,'".$v."' from ".$tables[$k];
$res_count=mysql_query($sql_count);
$result_count = mysql_fetch_assoc($res_count);
echo "<tr><td>".$result_count[$v].'</td><td>'.$result_count['nums'].'</td></tr>';
}
echo "</tbody></table>"
?>

좋은 웹페이지 즐겨찾기