3

我在 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 上是菜鸟。

4

2 回答 2

2

您可以使用 9e999 之类的东西Inf,例如,

select
   max(a)
from
   table
where a != 9e999
于 2013-06-08T16:01:37.563 回答
-1

扩展Matthew Plourde的答案怎么样

select
   max(a)
from
   table
where a < 9e999
于 2013-06-08T16:10:25.233 回答