diff --git a/manual/en/dql-doctrine-query-language.txt b/manual/en/dql-doctrine-query-language.txt index 9b5210a8f..3e0a5cab5 100644 --- a/manual/en/dql-doctrine-query-language.txt +++ b/manual/en/dql-doctrine-query-language.txt @@ -521,7 +521,7 @@ automatically: Now lets run a simple query to retrieve the `Employee` we just created: [sql] - select e from Entities\Employee e where e.name = 'test' + SELECT e FROM Entities\Employee e WHERE e.name = 'test' If we check the generated SQL you will notice it has some special conditions added to ensure that we will only get back `Employee` entities: