新手提问,请指点
新手才学习sql数据库,我对一张表进行了两个查询语句,怎样把这两条查询语句连在一起啊,我想让前面的
select * from PeisPatient where DateFinalExamed>'2012-01-01' and DateFinalExamed<'2012-12-31'作为后面这句
select top 1 * from PeisPatient where Org_Name is not null的条件
另外PeisPatient 和PeisPatientExamItem有个相同的字段SevereDegree 我能在以前两条语句的基础上执行select * from PeisPatientExamItem where (ExamItem_Name_R='内科')这条查询语句吗?
新手求各位前辈指点,最好能贴上代码,谢谢了
------解决方案--------------------SELECT TOP 1
*
FROM
PeisPatient
WHERE
Org_Name IS NOT NULL AND DateFinalExamed>'2012-01-01' AND DateFinalExamed<'2012-12-31'