标签: sql select
我正在寻找表中所有年龄(PName大于PAge为3的人的年龄的名字(PID)。>
PName
PAge
PID
到目前为止,我有:
SELECT PName FROM Person WHERE PAge >= [PAge].[PID].[3]
答案 0 :(得分:3)
您不能以这种方式引用第二行,至少不能在标准sql中引用。
使用
SELECT PName FROM Person WHERE PAge >= (select PAge from Person where PID=3)