gpt4 book ai didi

android - Sqlite 检查数字是否为整数

转载 作者:行者123 更新时间:2023-11-29 21:12:39 25 4
gpt4 key购买 nike

当某个方程产生一个 integer 时,我试图选择一个 every 字段,这意味着一个没有小数的数字。如何在 Sqlite 中做到这一点?

最佳答案

如果你只想要没有小数的行:

select 
"(" + DatabaseOpenHelper.KEY_ROW_ID + " - 1)/4 + 1" as field
from
table
where
field not like '%.%'

编辑:

根据评论,已添加计算字段。 SQLite 支持在 where 子句中使用别名,因此这应该适合您。

关于android - Sqlite 检查数字是否为整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22338688/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com