-
行走的大树
发布于 2018-06-29 11:17
-
收藏
表relation create table relation( id int primary key auto_increment, userId int not null, fanId int not null );插入几条数据insert into relation(userId,fanId) values(1,1) ,(1,1) ,(1,1), (2,2),(2,2) ,(3,3),(3,3);表中的数据iduserIdfa..