The application supports a very limited subset of sql. This is a work in progress. Here are some examples of what works.
SELECT name, type, state, pin
FROM cities
WHERE name LIKE 'M%'
AND state = 'FL'
AND zipCode IN (33126, 33151)
AND averageAge BETWEEN 34 AND 65
AND averageSalary >= 55230
AND averageTemperature < 80
SELECT *
FROM Planets
WHERE SpacecraftWithinKilometers < 10000
SELECT SolarSystem, Galaxy
FROM Planets
WHERE SpacecraftWithinKilometers < 10000
GROUP BY SolarSystem, Galaxy
At the moment the following things do not work: