求解。。多表联查
1、简历表create table tb_ResumeTxt
(
ResumeID int primary key identity(1,1),
UserID int not null, --外键UserID
)
2、招聘表
create table tb_RecruiTxt
(
RecruiTxtID int primary key identity(1,1),
ZhaopinTitle varchar(200) not null,
UserID int not null
)
3、投递简历/公司向用户发送邀请
create table tb_UserDeliver
(
DeliverID int primary key identity(1,1),
RecruiTxtID int not null,--外键(recruiTxtID) 招聘简历信息ID
ResumeID int not null , --外键(resumeID) 求职者简历ID
Isyaoqiu int default(0) check(Isyaoqiu=0 or Isyaoqiu=1), --企业是否邀请
DeliverTime datetime default(getdate()) --系统当前时间
)
根据 用户 简历ID来 查看 我投过 哪家公司,
根据 招聘ID 来查看我邀请过哪些用户
这种SQL语句怎么写啊?急求啊。。。。会的帮帮忙