如何打印mysql表中的记录数?
答案 0 :(得分:3)
使用此查询获取表格中的记录数(例如,名为“tbl”)
select count(*) as CountRecords from tbl
答案 1 :(得分:3)
<?php
$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
if (!mysql_select_db('database_name')) {
die('Could not select database: ' . mysql_error());
}
$result = mysql_query('SELECT COUNT(*) FROM myTable');
if (!$result) {
die('Could not query:' . mysql_error());
}
$rowCount = mysql_result($result, 0); // get the count
echo $rowCount; // echo the count
mysql_close($link);
?>
如果您刚入门,请查看PHP mysql functions。如果您使用的是任何类型的框架,请查看该框架的数据库文档。