SQL Ausgabe auf mehrer Seiten ausgeben
Hallo
ich ahbe eine Oracle 10 Datenbank
und mache nun eine Abfrage auf eine Tabelle
Das sind zz "noch" 1800 Datensätze wie kann ich die Ausgaeb auf mehrere Seiten bringen also das ich nur z.B. 20 Einträge pro Seite habe?
die Aktuelle Ausgabe sieht so aus:
Danke schoneinmal im Voraus
ich ahbe eine Oracle 10 Datenbank
und mache nun eine Abfrage auf eine Tabelle
$query = "select " .
"cd_number" .
",part_number" .
",mlcd_category.description" .
",mlcd_language.description" .
",titel" .
",to_char(production_date, 'Mon-YYYY')" .
",folder" .
",folder_position" .
",mlcd_location.description " .
"from " .
"mlcd_coredata" .
",mlcd_category" .
",mlcd_language" .
",mlcd_location " .
"where " .
"mlcd_coredata.category_id = mlcd_category.category_id" .
" and mlcd_coredata.language_id = mlcd_language.language_id" .
" and mlcd_coredata.location_id = mlcd_location.location_id " .
" and mlcd_coredata.part_number Like '%".$part_number."%'" .
" and mlcd_category.description Like '%".$category."%'" .
" and mlcd_language.description Like '%".$language."%'" .
" and mlcd_coredata.titel Like '%".$title."%'" .
" and mlcd_coredata.folder Like '%".$folder."%'" .
" and mlcd_location.description Like '%".$location."%' order by cd_number";
Das sind zz "noch" 1800 Datensätze wie kann ich die Ausgaeb auf mehrere Seiten bringen also das ich nur z.B. 20 Einträge pro Seite habe?
die Aktuelle Ausgabe sieht so aus:
$stid = odbc_exec($conn, $query);
while ($succ = odbc_fetch_into($stid, $row)) {
echo "<tr class='tabelem'>";
foreach ($row as $item) {
echo "<td>".$item."</td>";
}
echo "</tr>";
}
Danke schoneinmal im Voraus
Bitte markiere auch die Kommentare, die zur Lösung des Beitrags beigetragen haben
Content-ID: 80526
Url: https://administrator.de/contentid/80526
Ausgedruckt am: 20.11.2024 um 02:11 Uhr
2 Kommentare
Neuester Kommentar