标签: android orm
我正在Android项目中使用ORMan ORM库。
如何执行以下查询:
SELECT * FROM table1 WHERE my_column is null
难点在于为空部分。 我想使用lib来构建查询,而不是手动放入SQL。
答案 0 :(得分:1)
你总是可以打电话
查询q =新查询(“SELECT * FROM table1 WHERE my_column为null”)
否则,我认为C.custom(“my_column is null”)会这样做。