ios学习记录 day37 UI13中级数据持久化(数据库)

关系数据库:增删改查

insert into..表明(列名)...values...(内容)...

update.....set.....where........

delete from......where.....

select * from.....where.....

//创建一个表 people(列名 类型,列名 类型); 一定要;结尾

create table people (stuid int,stuname text);

原文地址:https://www.cnblogs.com/lxllanou/p/3680486.html