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 是否要求您提及字段大小或每个 DataType 是否有固定大小
ID INTEGER (10) ID INTEGER
每个数据类型都有固定的大小。有关更多详细信息,请查看http://www.sqlite.org/datatype3.html
SQLite 将接受来自大多数其他数据库的 SQL 转储,包括 INTEGER(10)。
但是,在导入时,任何类型为 INT 的列都将被视为 INTEGER,并将根据实际值占用 1、2、3、4、6 或 8 个字节。