Is there type Long in SQLite?

前端 未结 7 715
我在风中等你
我在风中等你 2020-12-23 20:00

I want to create a table with the column type Long instead of Integer. Is it possible?

7条回答
  •  一向
    一向 (楼主)
    2020-12-23 20:51

    You just define a column with Integer type. SQLite sets the column length to 1,2,4,8 depending on your input.

提交回复
热议问题