SQLite创建自动增加时间的表

前端之家收集整理的这篇文章主要介绍了SQLite创建自动增加时间的表前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

create table Account( username char,password char,status boolean,times int,disable boolean,date timestamp not null default (datetime('now','localtime')))

insert into Account ("username","password","status","times","disable") VALUES('13201544054','aa123456',1,0)

原文链接:https://www.f2er.com/sqlite/199261.html

猜你在找的Sqlite相关文章