4

Using the web2py DAL, how do a create a query to select for records will NULL values in a particular field?

David Nehme
  • 21,379
  • 8
  • 78
  • 117

1 Answers1

8

Use this pattern: db(db.table.field==None).select()

dgilland
  • 2,758
  • 1
  • 23
  • 17