We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02fdf93 commit aa5772bCopy full SHA for aa5772b
docs/src/piccolo/features/syntax.rst
@@ -20,7 +20,6 @@ underlying SQL - making the ORM feel less magic.
20
21
.. code-block:: python
22
23
- query = Band.select(Band.name).where(Band.popularity >= 100)
24
-
25
- print(query)
+ >>> query = Band.select(Band.name).where(Band.popularity >= 100)
+ >>> print(query)
26
'SELECT name from band where popularity > 100'
0 commit comments