我有一个名为 Identifier 的表,它具有患者表的 identifierType、identifierValue 和外键。
一名患者可以有多个标识符,因此对于给定的患者,标识符表中将有多行。
我想从此表中提取满足给定标准的患者外键的值,
一个例子是我想找到
patientId where identifierType = 'PatientFirst"
and identifierValue = 'sally'
and identifierType= 'patientFirst'
and identifier value = 'sally'.
在 sqlserver 中提取此结果的 sql 语句将是什么