gpt4 book ai didi

将 Inf、NAN 和 -Inf 插入 sqlite3 数据库的 SQL 命令

转载 作者:行者123 更新时间:2023-12-05 08:04:48 24 4
gpt4 key购买 nike

将无穷大、负无穷大和非数字插入 sqlite3 数据库表中实型列的 sql 命令是什么?

即用什么代替值 1、值 2?

INSERT INTO table (column1,column2 ,..)
VALUES( value1, value2 ,...);

我已经尝试在 sqlite3 documentation 上找到相关资源但找不到任何东西。

将“Inf”和“-Inf”作为字符串插入并通过 C++ 读取它给我一个小的 -0.00... 值

最佳答案

您可以将 -Infinity+Infinity 插入到 real 数据类型以及 NaN 等中已在文档中提到:

create table input (numbers real);
insert into input values ('-Infinity');
insert into input values ('+Infinity');

db<> fiddle here

但是在你的 c 中,我认为你必须自己处理它,比如当你看到 '+inf' 或 '+infinity' 时

关于将 Inf、NAN 和 -Inf 插入 sqlite3 数据库的 SQL 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67360775/

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