gpt4 book ai didi

sql - 如何仅从 sqlite 中提取数字数据?

转载 作者:行者123 更新时间:2023-12-03 17:15:19 25 4
gpt4 key购买 nike

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

最佳答案

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

select
max(a)
from
table
where a != 9e999

关于sql - 如何仅从 sqlite 中提取数字数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17001189/

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