From b384bf764d2cfa97af89467203efc818b2791399 Mon Sep 17 00:00:00 2001 From: Jamie Matthews Date: Sat, 22 Jan 2011 11:28:39 +0000 Subject: Reword GROUP BY docs --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.markdown') diff --git a/README.markdown b/README.markdown index 64b5595..b9f8567 100644 --- a/README.markdown +++ b/README.markdown @@ -186,7 +186,7 @@ Two methods are provided to add `ORDER BY` clauses to your query. These are `ord *Note that this method **does not** escape it query parameter and so this should **not** by passed directly from user input.* -To add a column to GROUP BY to your query, call the `group_by` method, passing in the column name. +To add a `GROUP BY` clause to your query, call the `group_by` method, passing in the column name. You can call this method multiple times to add further columns. $poeple = ORM::for_table('person')->where('gender', 'female')->group_by('name')->find_many(); -- cgit v1.2.3