Daily report - any conditions possible ?

Started by llama1910, March 26, 2009, 05:51:30 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

llama1910

Hi,

I would like to use the daily report generator to produce a log of all incoming and outgoing traffic to our airport. Is it possible somehow to include any conditions in the report ?
I.e. only write aircraft into the report whose start or end GS is less than 150kts ?

Cheers
Carsten

tarbat

#1
Only by using something like SQLite Maestro (or another SQL program) to write SQL to produce such a report.  Something like this:
SELECT *
FROM
Flights
WHERE
  (Flights.StartGS < 150) OR
  (Flights.EndGS < 150)

You might be able to adapt the SQL script I've posted on another thread.

llama1910