We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15aafc9 commit bc9e225Copy full SHA for bc9e225
docs/index.rst
@@ -264,6 +264,10 @@ Example query for sources with declinations larger than 0::
264
265
db.query(db.Sources).filter(db.Sources.c.dec > 0).table()
266
267
+Example query for rows with missing data::
268
+
269
+ db.query(db.Publications).filter(db.Publications.c.doi.is_(None)).table()
270
271
Example query returning just a single column (source) and sorting sources by declination::
272
273
db.query(db.Sources.c.source).order_by(db.Sources.c.dec).table()
0 commit comments