SQLite3 整数最大值

标签 sql sqlite integer ip

  1. sqlite3 中 INTEGER 数据类型的最大值是多少?
  2. 你如何在数据库中存储 ip 地址?
  3. 附件是什么?
  4. 如何使用sql ddl创建属于特定数据库的表?
  5. 这个错误是关于什么的?

error while the list of system catalogue : no such table: temp.sqlite_master Unable to execute statement

  1. sqlite3 文本数据类型是否支持 unicode? 谢谢。

最佳答案

  1. 查看http://www.sqlite.org/datatype3.html最小值为 -(263) == -9223372036854775808,最大值为 263 - 1 == 9223372036854775807
  2. 我认为你应该使用 varchar
  3. http://www.sqlite.org/lang_attach.html
  4. http://www.sqlite.org/lang_createtable.html
  5. 可能会有帮助 SQLite 'no such table' error

一般检查sqlite documentation

关于SQLite3 整数最大值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4448284/

相关文章:

mysql - 如何通过 SQL 查询将 SQL 结果括起来?

Mysql 获取分组的两个表列的总和

sql - 如果值不存在,则SQLite插入值

php - 检查时间并获取联合时间

mysql - 在 pl/sql 中应该使用哪种方法(下面提到)

python - 将日期转换为日期时间对象python

sql - SQLite3中使用除法的计算字段

c# - 字符串中的 double 或整数?

java - 在框架内打印框架

r - 什么时候应该明确指定整数?