diff --git a/manual/docs/DQL (Doctrine Query Language) - Conditional expressions - Exists Expressions.php b/manual/docs/DQL (Doctrine Query Language) - Conditional expressions - Exists Expressions.php new file mode 100644 index 000000000..f8e2ebcc7 --- /dev/null +++ b/manual/docs/DQL (Doctrine Query Language) - Conditional expressions - Exists Expressions.php @@ -0,0 +1,26 @@ +Syntax: +
+operand [NOT ]EXISTS (subquery) ++
+FROM Article + WHERE EXISTS (FROM ReaderLog(id) + WHERE ReaderLog.article_id = Article.id) ++
+FROM Article + WHERE NOT EXISTS (FROM ReaderLog(id) + WHERE ReaderLog.article_id = Article.id) ++
-operand IN (subquery|valuelist) +operand IN (subquery|value list)
FROM C1 WHERE C1.col1 IN (FROM C2(col1)); diff --git a/manual/docs/DQL (Doctrine Query Language) - Conditional expressions - Literals.php b/manual/docs/DQL (Doctrine Query Language) - Conditional expressions - Literals.php new file mode 100644 index 000000000..29fd3a35a --- /dev/null +++ b/manual/docs/DQL (Doctrine Query Language) - Conditional expressions - Literals.php @@ -0,0 +1,50 @@ +Strings
+ +A string literal is enclosed in single quotes—for example: 'literal'. A string literal that includes a single +quote is represented by two single quotes—for example: 'literal''s'. +++ +Integers+FROM User WHERE User.name = 'Vincent' ++
+Integer literals support the use of PHP integer literal syntax. +++ +Floats+FROM User WHERE User.id = 4 ++
+Float literals support the use of PHP float literal syntax. +++ ++FROM Account WHERE Account.amount = 432.123 ++
+Booleans
+The boolean literals are true and false. + +++ ++FROM User WHERE User.admin = true + +FROM Session WHERE Session.is_authed = false ++
+Enums
+The enumerated values work in the same way as string literals. + +++ ++FROM User WHERE User.type = 'admin' ++
+Predefined reserved literals are case insensitive, although its a good standard to write them in uppercase. diff --git a/manual/docs/DQL (Doctrine Query Language) - Conditional expressions - Subqueries.php b/manual/docs/DQL (Doctrine Query Language) - Conditional expressions - Subqueries.php new file mode 100644 index 000000000..54a4c4f1c --- /dev/null +++ b/manual/docs/DQL (Doctrine Query Language) - Conditional expressions - Subqueries.php @@ -0,0 +1,11 @@ +A subquery can contain any of the keywords or clauses that an ordinary SELECT query can contain. +
+Some advantages of the subqueries: +