Skip to content

Commit 752585a

Browse files
committed
[Cookbook][Security] Use uppercase SQL keywords in query
1 parent 7c038bf commit 752585a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cookbook/security/entity_provider.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ user records and encode their password, see :ref:`book-security-encoding-user-pa
200200

201201
.. code-block:: bash
202202
203-
$ mysql> select * from acme_users;
203+
$ mysql> SELECT * FROM acme_users;
204204
+----+----------+------+------------------------------------------+--------------------+-----------+
205205
| id | username | salt | password | email | is_active |
206206
+----+----------+------+------------------------------------------+--------------------+-----------+
@@ -649,14 +649,14 @@ this:
649649

650650
.. code-block:: bash
651651
652-
$ mysql> select * from acme_role;
652+
$ mysql> SELECT * FROM acme_role;
653653
+----+-------+------------+
654654
| id | name | role |
655655
+----+-------+------------+
656656
| 1 | admin | ROLE_ADMIN |
657657
+----+-------+------------+
658658
659-
$ mysql> select * from user_role;
659+
$ mysql> SELECT * FROM user_role;
660660
+---------+---------+
661661
| user_id | role_id |
662662
+---------+---------+

0 commit comments

Comments
 (0)