Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的问题类似于MySQL,计算表中“填充”字段的数量
但我无法得到正确的解决方案。在 Sqlite 中怎么可能?
我知道使用 for 循环。但我想通过查询获得。
请在这个问题上帮助我。
提前致谢。
像这样的查询将起作用:
SELECT COUNT(*) from raw where rawData <> '' AND rawData IS NOT NULL
这假设有一个名为“raw”的表,并且您要检查的列是“rawData”