Query for null values ​​in web2py DAL

Using web2py DAL, how to create a select query for records, will there be NULL values ​​in a specific field?

+4
source share
1 answer

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

+7
source

Source: https://habr.com/ru/post/1393891/


All Articles