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 8faa66d commit af8d2d4Copy full SHA for af8d2d4
docs/src/piccolo/query_types/select.rst
@@ -99,15 +99,15 @@ By default all columns are returned from the queried table.
99
b.select().run_sync()
100
101
To restrict the returned columns, either pass in the columns into the
102
-``select`` method, or use the `columns` method.
+``select`` method, or use the ``columns`` method.
103
104
.. code-block:: python
105
106
b = Band
107
# Equivalent to SELECT name from band
108
b.select().columns(b.name).run_sync()
109
110
-The `columns` method is additive, meaning you can chain it to add additional
+The ``columns`` method is additive, meaning you can chain it to add additional
111
columns.
112
113
0 commit comments