diff --git a/manual/new/docs/en/dql-doctrine-query-language/order-by-clause.txt b/manual/new/docs/en/dql-doctrine-query-language/order-by-clause.txt
index d7fc05f22..2af31f34d 100644
--- a/manual/new/docs/en/dql-doctrine-query-language/order-by-clause.txt
+++ b/manual/new/docs/en/dql-doctrine-query-language/order-by-clause.txt
@@ -28,4 +28,29 @@ FROM User u LEFT JOIN u.Email e
+++ Sorting by an aggregate value
+
+In the following example we fetch all users and sort those users by the number of phonenumbers they have.
+
+$q = new Doctrine_Query();
+
+$users = $q->select('u.*, COUNT(p.id) count')
+ ->from('User u')
+ ->innerJoin('u.Phonenumber p')
+ ->orderby('count');
+
+
+++ Using random order
+
+In the following example we use random in the ORDER BY clause in order to fetch random post.
+
+$q = new Doctrine_Query();
+
+$posts = $q->select('p.*, RANDOM() rand')
+ ->from('Post p')
+ ->orderby('rand')
+ ->limit(1)
+ ->execute();
+
+$randomPost = $posts[0];
+
+