From 7f2c77fd73c37f1fbe7b547bd6d6cdc65047de23 Mon Sep 17 00:00:00 2001 From: Richard Quadling Date: Tue, 30 Nov 2010 17:15:38 +0000 Subject: [PATCH] SORT BY => ORDER BY Fix #53428 git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@305858 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/pdo/pdostatement/fetchall.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/pdo/pdostatement/fetchall.xml b/reference/pdo/pdostatement/fetchall.xml index 7538478938..01b8c91412 100644 --- a/reference/pdo/pdostatement/fetchall.xml +++ b/reference/pdo/pdostatement/fetchall.xml @@ -102,7 +102,7 @@ demand on system and possibly network resources. Rather than retrieving all of the data and manipulating it in PHP, consider using the database server to manipulate the result sets. For example, use the WHERE and - SORT BY clauses in SQL to restrict results before retrieving and + ORDER BY clauses in SQL to restrict results before retrieving and processing them with PHP.