anything
AirNav RadarBox
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
 


Author Topic: SQL syntax  (Read 3448 times)

0 Members and 1 Guest are viewing this topic.

John Racars

  • Hero Member
  • *****
  • Posts: 801
SQL syntax
« on: June 23, 2009, 06:08:55 PM »
This is the SQL I use for my daily report:
SELECT DISTINCT Aircraft.Registration AS "Reg"
Flights.Callsign AS "Flight ID"
Flights.Route AS "Route"
Aircraft.AircraftTypeSmall AS "ICAO Type"
Aircraft.Airline AS "Airline"
Aircraft.AircraftTypeLong AS "Aircraft"
substr(Flights.EndTime,1,16) AS "Flight Ended"
Flights.StartAltitude AS "Start Alt"
Flights.EndAltitude AS "End Alt"
Flights.MsgCount AS "Count"
Aircraft.ModeS AS "Mode S"
FROM Aircraft LEFT OUTER JOIN Flights ON (Aircraft.ModeS=Flights.ModeS)
WHERE ((date('now','-1 day') = substr(Aircraft.LastTime,1,4)||"-"||substr(Aircraft.LastTime,6,2)||"-"||substr(Aircraft.LastTime,9,2)) AND (Flights.StartTime IS NULL)) OR ((date('now','-1 day') = substr(Flights.EndTime,1,4)||"-"||substr(Flights.EndTime,6,2)||"-"||substr(Flights.EndTime,9,2))) OR ((date('now','-1 day') = substr(Flights.StartTime,1,4)||"-"||substr(Flights.StartTime,6,2)||"-"||substr(Flights.StartTime,9,2)))
ORDER BY Aircraft.Registration,Flights.EndTime,Aircraft.ModeS

Hi All,

I fear that my question is snowed under of the big number of questions in the topic about the version 3.0. On the other hand I doubt or questions like this belongs there. So I will give it a new try with this new topic:

I just tried the above SQL that I get from, great helpfull, Tarbat.

Information: "Invalid token "Fllights" at position 1 of line 2."
SQL Error: near "Flights": syntax error

Any help will be very welcome!
Best Regards from the Netherlands, John Racars
13 NM East of EHAM
-
ANRB:
Version: 3D - 5.00.072
Antenna: outside WiMo GP-1090 (with ECOFLEX 10 cableconnection)
PC: Windows 7 SP 1 - 64 bit
-
RadarBox24 station: EHAM4

tarbat

  • ShipTrax Beta Testers
  • Hero Member
  • *
  • Posts: 4219
    • Radarbox at Easter Ross
Re: SQL syntax
« Reply #1 on: June 23, 2009, 06:37:22 PM »
Try commas at the end of each line:

SELECT DISTINCT Aircraft.Registration AS "Reg",Flights.Callsign AS "Flight ID",Flights.Route AS "Route",Aircraft.AircraftTypeSmall AS "ICAO Type",Aircraft.Airline AS "Airline",Aircraft.AircraftTypeLong AS "Aircraft",substr(Flights.EndTime,1,16) AS "Flight Ended",Flights.StartAltitude AS "Start Alt",Flights.EndAltitude AS "End Alt",Flights.MsgCount AS "Count",Aircraft.ModeS AS "Mode S" FROM Aircraft LEFT OUTER JOIN Flights ON (Aircraft.ModeS=Flights.ModeS) WHERE ((date('now','-1 day') = substr(Aircraft.LastTime,1,4)||"-"||substr(Aircraft.LastTime,6,2)||"-"||substr(Aircraft.LastTime,9,2)) AND (Flights.StartTime IS NULL)) OR ((date('now','-1 day') = substr(Flights.EndTime,1,4)||"-"||substr(Flights.EndTime,6,2)||"-"||substr(Flights.EndTime,9,2))) OR ((date('now','-1 day') = substr(Flights.StartTime,1,4)||"-"||substr(Flights.StartTime,6,2)||"-"||substr(Flights.StartTime,9,2))) ORDER BY Aircraft.Registration,Flights.EndTime,Aircraft.ModeS;

John Racars

  • Hero Member
  • *****
  • Posts: 801
Re: SQL syntax
« Reply #2 on: June 23, 2009, 07:35:28 PM »
Try commas at the end of each line:

I did. Looks succesfully but:

1. the message "Invalid token 'date' at position ........

2. SQL made a report anyway.

3. This report shows the same problems (duplicates) as you could see in my yesterday report.

So, nothing helps at this moment to solve "my" problem at the moment. Very strange in my opinion because I never seen this in the previous version.

For me it is a big mystery. Preliminary for me no (reliable) reports. Tarbat, thank you again for all the help until sofar!
Best Regards from the Netherlands, John Racars
13 NM East of EHAM
-
ANRB:
Version: 3D - 5.00.072
Antenna: outside WiMo GP-1090 (with ECOFLEX 10 cableconnection)
PC: Windows 7 SP 1 - 64 bit
-
RadarBox24 station: EHAM4

tarbat

  • ShipTrax Beta Testers
  • Hero Member
  • *
  • Posts: 4219
    • Radarbox at Easter Ross
Re: SQL syntax
« Reply #3 on: June 23, 2009, 07:53:52 PM »
I guess it depends what you're expecting to see in the daily log.  If you just want a list of aircraft and FlightIDs, try removing the Flight Ended, Start Alt, End Alt, and Count fields.

SELECT DISTINCT Aircraft.Registration AS "Reg",Flights.Callsign AS "Flight ID",Flights.Route AS "Route",Aircraft.AircraftTypeSmall AS "ICAO Type",Aircraft.Airline AS "Airline",Aircraft.AircraftTypeLong AS "Aircraft",Aircraft.ModeS AS "Mode S" FROM Aircraft LEFT OUTER JOIN Flights ON (Aircraft.ModeS=Flights.ModeS) WHERE ((date('now','-1 day') = substr(Aircraft.LastTime,1,4)||"-"||substr(Aircraft.LastTime,6,2)||"-"||substr(Aircraft.LastTime,9,2)) AND (Flights.StartTime IS NULL)) OR ((date('now','-1 day') = substr(Flights.EndTime,1,4)||"-"||substr(Flights.EndTime,6,2)||"-"||substr(Flights.EndTime,9,2))) OR ((date('now','-1 day') = substr(Flights.StartTime,1,4)||"-"||substr(Flights.StartTime,6,2)||"-"||substr(Flights.StartTime,9,2))) ORDER BY Aircraft.Registration,Flights.EndTime,Aircraft.ModeS

John Racars

  • Hero Member
  • *****
  • Posts: 801
Re: SQL syntax
« Reply #4 on: June 23, 2009, 08:07:17 PM »
No report at all in this case. Only the message "Invalid token 'date' at position...." and "SQL Error: near "FROM": syntax error".

BTW: what I expect to see in my report is very simple I think:

ALL flight movements in my area of reception during one day of 24h. including: Starttime, Callsign, Routing, Aircraftreg, ICAO type of aircraft. That is all I need....
« Last Edit: June 23, 2009, 08:12:15 PM by John Racars »
Best Regards from the Netherlands, John Racars
13 NM East of EHAM
-
ANRB:
Version: 3D - 5.00.072
Antenna: outside WiMo GP-1090 (with ECOFLEX 10 cableconnection)
PC: Windows 7 SP 1 - 64 bit
-
RadarBox24 station: EHAM4

malc41

  • RadarBox Beta Testers
  • Hero Member
  • *
  • Posts: 586
Re: SQL syntax
« Reply #5 on: June 24, 2009, 08:33:47 AM »
Works OK at this end
15 Miles East of EGNJ