sqlite constraint

前端之家收集整理的这篇文章主要介绍了sqlite constraint前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

sqlite3中的约束如下:

CREATE TABLE CheckTable (rowId integer primary key autoincrement,name text not null,address text default "China",userId text unique,age integer check(age >= 0));


sqlite3中的约束一旦创建就不能通过alter之类的语句修改,只能重新建表。

猜你在找的Sqlite相关文章