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.
SQL にテーブルがあり、約 100 行が含まれています。
でPHP内で選択しますSELECT * FROM table。
SELECT * FROM table
オフセットも制限も使用しませんでした。私の質問は、PHP のみを使用して返された結果を操作して、テーブルから 24 行だけを表示する方法はありますか?
何を試すべきですか?
さて、oracleタグが追加されたので、オラクルの回答を追加します。
oracle
$rows = array(row, row, row, ...); // from oracle sql results $first_24_rows = array_slice($rows, 0, 24);