我需要能够找到使用sql查询信息,但我不知道如何做到这一点。目标是为所有只飞行过一次但不超过一次的飞行员命名。下面是我需要从中提取的“pilot”和“flies”表的模式数据。
飞行员(pilotid:integer,firstname:varchar(32),lastname:varchar(32),birthdate:date,address:varchar(128),email:varchar(32),phonenumber:char(10),gender:char(1),salary:integer,hireddate:date,rating:integer)
主键:pilotid
苍蝇(pilotid:integer,tripid:integer)
外键:pilotid references pilots(pilotid)
外键:tripid引用trips(tripid)
主键:(pilotid,tripid)
我试过的是:
选择p.firstname、p.lastname、p.phonenumber
从飞行员p,飞f
其中count(f.pilotid)=1,f.pilotid=p.pilotid;
但我什么都没得到,有什么想法吗?
1条答案
按热度按时间bjp0bcyl1#
您的查询缺少
group by
条款,你需要一个having
对聚合函数进行筛选的子句,例如count()
: