Hi,
If I want to select a result that based on the value of count (eg.
count(*) > 5), how can I write a sql to do that?
eg.
select count(*)>5
from Flight
where OperationType = "Departure"
group by Airline, Runway
order by Date
Thanks
D
If I want to select a result that based on the value of count (eg.
count(*) > 5), how can I write a sql to do that?
eg.
select count(*)>5
from Flight
where OperationType = "Departure"
group by Airline, Runway
order by Date
Thanks
D
Comment