message a,member b,member c where a.user_from_id=b.id and a.user_to_id=c.id
and c.user_type=1
注意把*换成你要查的字段内容,虽然b和c代表同一个表,但是查询的内容不同,b对应的user_from_id的内容,c是对应user_to_id的内容,有问题继续追问
mysql 两个表中的信息关联起来使用方法:1、创建主表:
create table UserInfo(
UserID int identity(1,1) primary key, --递增主键
UserAccounts varchar(20),
UserName varchar(20),
UserPwd varchar(10))
2、创建附表(含外键)
create table News(
NewsID int identity(1,1) primarykey,
UserID int,
NewsTitle varchar( 50 ),
NewsRelease varchar( 200 ),
NewsReleaseTime datetime,
FOREIGN KEY (UserID) REFERENCES UserInfo(UserID))--外键约束
如果附表已存在,但没外键,可采用以下方法:
alter table profession add constraint fk_prov_id foreign key(prov_id) references province(prov_id) on update cascade on delete cascade
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)