就像标题所示,我试图从多个表中检索记录。
我有以下表格:ads1
,ads2
,ads3
,....每个表包含1个或多个带有auto_increment id
的记录以及名称列下的人员名称names
。
假设我在每个表中有10条记录,并且我有一个分页脚本,每页显示5条记录,这意味着每个表有2个页面,所以我将有1
页,2
3
,4
,5
,6
。
我的算法没有正确执行,在我的第一页上显示第一个表中的5个记录,第二个表中的5个记录,第三个表中的5个记录等等...但我只想要显示5个记录每页,而不是每张桌子中的5张,我希望它们能够在1
页上的2
和ads1
条记录中正确显示,3
页,4
和{{ 1}}来自ads2
的记录等等,希望你能得到这个想法。
你能帮我吗?
这是我的算法:
for ($i=1;$i<=$kay;$i++)
{
$counter = 0;
$tablenow = 'ads'.$i;
$result = mysql_query("SELECT id FROM ".$tablenow." ");
$counter = $counter + mysql_num_rows($result);
$x=ceil($counter / $per_page);
$page = (isset ($_GET['page']) AND (int)$_GET['page'] > 0 AND (int)$_GET['page'] <= $x) ? (int)$_GET['page'] : 1;
$start = ($page - 1) * $per_page;
$sql = mysql_query("SELECT * FROM ".$tablenow." ORDER BY id DESC LIMIT
$start,$per_page ")or die(mysql_error());
while ($sqlg=mysql_fetch_assoc($sql))
{
// this is where I show the records.
}
}
PS:对于只有一个表,算法完全按照预期工作,但当我有2个或更多表时,它会停止正常工作。
答案 0 :(得分:2)
这是一种方法:
$count_tables = 10;
$query = '';
for ($table_no = 1; $table_no <= $count_tables; $table_no++ ) {
$query .= "SELECT * FROM ads" . $table_no . " UNION ";
}
// Remove trailing UNION
$query = preg_replace( '/ UNION \Z/', '', $query );
$result = mysql_query("SELECT id FROM ".$tablenow." ");
$total_rows = mysql_num_rows($result);
$max_page = ceil( $total_rows / $per_page );
// Fetch rows for the page
$query_for_page .= $query . " ORDER BY id DESC LIMIT $start, $per_page";
$page = ( isset ($_GET['page'])
AND (int)$_GET['page'] > 0
AND (int)$_GET['page'] <= $max_page ) ? (int)$_GET['page'] : 1;
$start = ($page - 1) * $per_page;
$page_results = mysql_query( $query_for_page ) or die( mysql_error() );
while ( $row = mysql_fetch_assoc( $page_results ) ) {
// this is where I show the records.
}
希望这有帮助。
答案 1 :(得分:1)
您必须只执行一个查询,该查询将是所有所需表的结果的UNION
。如果您分别在每个表格中执行SELECT
,则无法准确跟踪总结果。