diff --git a/manual/docs/DQL (Doctrine Query Language) - Conditional expressions - Empty Collection Comparison Expressions.php b/manual/docs/DQL (Doctrine Query Language) - Conditional expressions - Empty Collection Comparison Expressions.php
new file mode 100644
index 000000000..e69de29bb
diff --git a/manual/docs/DQL (Doctrine Query Language) - Conditional expressions - Input parameters.php b/manual/docs/DQL (Doctrine Query Language) - Conditional expressions - Input parameters.php
new file mode 100644
index 000000000..e69de29bb
diff --git a/manual/docs/DQL (Doctrine Query Language) - Conditional expressions - Like Expressions.php b/manual/docs/DQL (Doctrine Query Language) - Conditional expressions - Like Expressions.php
new file mode 100644
index 000000000..092c51e65
--- /dev/null
+++ b/manual/docs/DQL (Doctrine Query Language) - Conditional expressions - Like Expressions.php
@@ -0,0 +1,24 @@
+Syntax:
+string_expression [NOT] LIKE pattern_value [ESCAPE escape_character]
+
+
+
+The string_expression must have a string value. The pattern_value is a string literal or a string-valued
+input parameter in which an underscore (_) stands for any single character, a percent (%) character
+stands for any sequence of characters (including the empty sequence), and all other characters stand for
+themselves. The optional escape_character is a single-character string literal or a character-valued
+input parameter (i.e., char or Character) and is used to escape the special meaning of the underscore
+and percent characters in pattern_value.
+
+Examples:
+
+
+- address.phone LIKE ‘12%3’ is true for '123' '12993' and false for '1234'
+
- asentence.word LIKE ‘l_se’ is true for ‘lose’ and false for 'loose'
+
- aword.underscored LIKE ‘\_%’ ESCAPE '\' is true for '_foo' and false for 'bar'
+
- address.phone NOT LIKE ‘12%3’ is false for '123' and '12993' and true for '1234'
+
+
+If the value of the string_expression or pattern_value is NULL or unknown, the value of the LIKE
+expression is unknown. If the escape_characteris specified and is NULL, the value of the LIKE expression
+is unknown.
diff --git a/manual/docs/DQL (Doctrine Query Language) - Conditional expressions - Null Comparison Expressions.php b/manual/docs/DQL (Doctrine Query Language) - Conditional expressions - Null Comparison Expressions.php
new file mode 100644
index 000000000..e69de29bb
diff --git a/manual/docs/DQL (Doctrine Query Language) - Conditional expressions - Operators and operator precedence.php b/manual/docs/DQL (Doctrine Query Language) - Conditional expressions - Operators and operator precedence.php
new file mode 100644
index 000000000..ec193d0ba
--- /dev/null
+++ b/manual/docs/DQL (Doctrine Query Language) - Conditional expressions - Operators and operator precedence.php
@@ -0,0 +1,14 @@
+The operators are listed below in order of decreasing precedence.
+
+- Navigation operator (.)
+
- Arithmetic operators:
++, - unary
+*, / multiplication and division
++, - addition and subtraction
+ - Comparison operators : =, >, >=, <, <=, <> (not equal), [NOT] LIKE,
+[NOT] IN, IS [NOT] NULL, IS [NOT] EMPTY
+ - Logical operators:
+NOT
+AND
+OR
+
diff --git a/manual/docs/DQL (Doctrine Query Language) - Conditional expressions - Path expressions.php b/manual/docs/DQL (Doctrine Query Language) - Conditional expressions - Path expressions.php
new file mode 100644
index 000000000..e69de29bb
diff --git a/manual/docs/DQL (Doctrine Query Language) - FROM clause.php b/manual/docs/DQL (Doctrine Query Language) - FROM clause.php
new file mode 100644
index 000000000..53c91ef2d
--- /dev/null
+++ b/manual/docs/DQL (Doctrine Query Language) - FROM clause.php
@@ -0,0 +1,31 @@
+Syntax:
+
+
+
+FROM component_reference [[LEFT | INNER] JOIN component_reference] ...
+
+
+
+The FROM clause indicates the component or components from which to retrieve records.
+If you name more than one component, you are performing a join.
+For each table specified, you can optionally specify an alias.
+
+
+
+ The default join type is LEFT JOIN. This join can be indicated by the use of either 'LEFT JOIN' clause or simply ',', hence the following queries are equal:
+
+
+SELECT u.*, p.* FROM User u LEFT JOIN u.Phonenumber
+
+SELECT u.*, p.* FROM User u, u.Phonenumber p
+
+
+
+INNER JOIN produces a Cartesian product between two specified components (that is, each and every record in the first component is joined to each and every record in the second component).
+So basically INNER JOIN can be used when you want to efficiently fetch for example all users which have one or more phonenumbers.
+
+
+SELECT u.*, p.* FROM User u INNER JOIN u.Phonenumber p
+
+
+
diff --git a/manual/docs/DQL (Doctrine Query Language) - Functional Expressions - String functions.php b/manual/docs/DQL (Doctrine Query Language) - Functional Expressions - String functions.php
new file mode 100644
index 000000000..3b0a02289
--- /dev/null
+++ b/manual/docs/DQL (Doctrine Query Language) - Functional Expressions - String functions.php
@@ -0,0 +1,26 @@
+
+- The CONCAT function returns a string that is a concatenation of its arguments.
+
+ - The second and third arguments of the SUBSTRING function denote the starting position and length of
+the substring to be returned. These arguments are integers. The first position of a string is denoted by 1.
+The SUBSTRING function returns a string.
+
+
+ - The TRIM function trims the specified character from a string. If the character to be trimmed is not
+specified, it is assumed to be space (or blank). The optional trim_character is a single-character string
+literal or a character-valued input parameter (i.e., char or Character)[30]. If a trim specification is
+not provided, BOTH is assumed. The TRIM function returns the trimmed string.
+
+ - The LOWER and UPPER functions convert a string to lower and upper case, respectively. They return a
+string.
+ -
+The LOCATE function returns the position of a given string within a string, starting the search at a specified
+position. It returns the first position at which the string was found as an integer. The first argument
+is the string to be located; the second argument is the string to be searched; the optional third argument
+is an integer that represents the string position at which the search is started (by default, the beginning of
+the string to be searched). The first position in a string is denoted by 1. If the string is not found, 0 is
+returned.[31]
+
+ - The LENGTH function returns the length of the string in characters as an integer.
+
+
diff --git a/manual/docs/DQL (Doctrine Query Language) - GROUP BY, HAVING clauses.php b/manual/docs/DQL (Doctrine Query Language) - GROUP BY, HAVING clauses.php
new file mode 100644
index 000000000..2dc50e8fe
--- /dev/null
+++ b/manual/docs/DQL (Doctrine Query Language) - GROUP BY, HAVING clauses.php
@@ -0,0 +1,40 @@
+
+- GROUP BY and HAVING clauses can be used for dealing with aggregate functions
+
+ - Following aggregate functions are availible on DQL: COUNT, MAX, MIN, AVG, SUM
+
+Selecting alphabetically first user by name.
+
+
+SELECT MIN(u.name) FROM User u
+
+
+
+Selecting the sum of all Account amounts.
+
+
+SELECT SUM(a.amount) FROM Account a
+
+
+
+
+ - Using an aggregate function in a statement containing no GROUP BY clause, results in grouping on all rows. In the example above
+we fetch all users and the number of phonenumbers they have.
+
+
+
+SELECT u.*, COUNT(p.id) FROM User u, u.Phonenumber p GROUP BY u.id
+
+
+
+
+ - The HAVING clause can be used for narrowing the results using aggregate values. In the following example we fetch
+all users which have atleast 2 phonenumbers
+
+
+SELECT u.* FROM User u, u.Phonenumber p HAVING COUNT(p.id) >= 2
+
+
+
+
+
diff --git a/manual/docs/DQL (Doctrine Query Language) - LIMIT and OFFSET clauses.php b/manual/docs/DQL (Doctrine Query Language) - LIMIT and OFFSET clauses.php
new file mode 100644
index 000000000..e69de29bb
diff --git a/manual/docs/DQL (Doctrine Query Language) - ORDER BY clause.php b/manual/docs/DQL (Doctrine Query Language) - ORDER BY clause.php
new file mode 100644
index 000000000..cd02f6d6a
--- /dev/null
+++ b/manual/docs/DQL (Doctrine Query Language) - ORDER BY clause.php
@@ -0,0 +1,29 @@
+Record collections can be sorted efficiently at the database level using the ORDER BY clause.
+
+Syntax:
+
+
+ [ORDER BY {ComponentAlias.columnName}
+ [ASC | DESC], ...]
+
+
+
+Examples:
+
+
+
+FROM User.Phonenumber
+ ORDER BY User.name, Phonenumber.phonenumber
+
+FROM User u, u.Email e
+ ORDER BY e.address, u.id
+
+
+In order to sort in reverse order you can add the DESC (descending) keyword to the name of the column in the ORDER BY clause that you are sorting by. The default is ascending order; this can be specified explicitly using the ASC keyword.
+
+
+
+FROM User u, u.Email e
+ ORDER BY e.address DESC, u.id ASC;
+
+
diff --git a/manual/docs/DQL (Doctrine Query Language) - SELECT queries.php b/manual/docs/DQL (Doctrine Query Language) - SELECT queries.php
new file mode 100644
index 000000000..cf4df113f
--- /dev/null
+++ b/manual/docs/DQL (Doctrine Query Language) - SELECT queries.php
@@ -0,0 +1,69 @@
+SELECT statement syntax:
+
+
+SELECT
+ [ALL | DISTINCT]
+ select_expr, ...
+ [FROM components
+ [WHERE where_condition]
+ [GROUP BY groupby_expr
+ [ASC | DESC], ... ]
+ [HAVING where_condition]
+ [ORDER BY orderby_expr
+ [ASC | DESC], ...]
+ [LIMIT row_count OFFSET offset}]
+
+
+
+The SELECT statement is used for the retrieval of data from one or more components.
+
+- Each select_expr indicates a column or an aggregate function value that you want to retrieve. There must be at least one select_expr in every SELECT statement.
+
+
+SELECT a.name, a.amount FROM Account a
+
+
+
+ - An asterisk can be used for selecting all columns from given component. Even when using an asterisk the executed sql queries never actually use it
+(Doctrine converts asterisk to appropriate column names, hence leading to better performance on some databases).
+
+
+SELECT a.* FROM Account a
+
+
+ - FROM clause components indicates the component or components from which to retrieve records.
+
+
+SELECT a.* FROM Account a
+
+SELECT u.*, p.*, g.* FROM User u LEFT JOIN u.Phonenumber p LEFT JOIN u.Group g
+
+
+ - The WHERE clause, if given, indicates the condition or conditions that the records must satisfy to be selected. where_condition is an expression that evaluates to true for each row to be selected. The statement selects all rows if there is no WHERE clause.
+
+
+SELECT a.* FROM Account a WHERE a.amount > 2000
+
+
+ - In the WHERE clause, you can use any of the functions and operators that DQL supports, except for aggregate (summary) functions
+
+
- The HAVING clause can be used for narrowing the results with aggregate functions
+
+
+SELECT u.* FROM User u LEFT JOIN u.Phonenumber p HAVING COUNT(p.id) > 3
+
+
+ - The ORDER BY clause can be used for sorting the results
+
+
+SELECT u.* FROM User u ORDER BY u.name
+
+
+ - The LIMIT and OFFSET clauses can be used for efficiently limiting the number of records to a given row_count
+
+
+SELECT u.* FROM User u LIMIT 20
+
+
+
+
diff --git a/manual/docs/DQL (Doctrine Query Language) - WHERE clause.php b/manual/docs/DQL (Doctrine Query Language) - WHERE clause.php
new file mode 100644
index 000000000..c3f4b29d1
--- /dev/null
+++ b/manual/docs/DQL (Doctrine Query Language) - WHERE clause.php
@@ -0,0 +1,16 @@
+Syntax:
+
+
+WHERE where_condition
+
+
+
+- The WHERE clause, if given, indicates the condition or conditions that the records must satisfy to be selected.
+
+ - where_condition is an expression that evaluates to true for each row to be selected.
+
+ - The statement selects all rows if there is no WHERE clause.
+
+ - When narrowing results with aggregate function values HAVING clause should be used instead of WHERE clause
+
+