SQLite数据库建立外键的方法

前端之家收集整理的这篇文章主要介绍了SQLite数据库建立外键的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
drop table t_group;
drop table t_user;


create table t_group
(
	id integer,primary key (id)
);
create table t_user
(
	id integer,name text,groupId integer,primary key(id),foreign key (groupId) references  t_group(id) on delete cascade on update cascade
);


insert into t_group values(1);

insert into t_group values(2);


insert into t_user values(1,"j",2);
insert into t_user values(2,"a",3);
原文链接:https://www.f2er.com/sqlite/201278.html

猜你在找的Sqlite相关文章