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.
我在 sqlite 中有一个表,其中有一列“A”
A 1 2 3 INF
“A”列定义为数字。但它是从 R 中读取的,因此 INF 是 R 的无限代码。
如何使用 SQLite sql 获得 A 的最大值?我试过了
select max(a) from table where a != INF
和
select max(a) from table where a != "INF"
如您所见,我在 SQLite 上是菜鸟。
您可以使用 9e999 之类的东西Inf,例如,
Inf
select max(a) from table where a != 9e999
扩展Matthew Plourde的答案怎么样
select max(a) from table where a < 9e999