question
stringclasses
41 values
query
stringclasses
41 values
How many AH-64D helos are FMC at Fort Hood?
SELECT COUNT(*) FROM my_table WHERE model = 'AH-64D' AND status = 'FMC' AND location__name = 'Fort Hood';
Which airfields have the most AH-64Es that are not mission capable (NMCM)?
SELECT location__name, COUNT(*) AS nmcm_count FROM my_table WHERE model = 'AH-64E' AND status = 'NMCM' GROUP BY location__name ORDER BY nmcm_count DESC LIMIT 3;
How many UH-60L helos are NMCS at Fort Campbell?
SELECT COUNT(*) FROM my_table WHERE model = 'UH-60L' AND status = 'NMCS' AND location__name = 'Fort Campbell';
Which units have the most FMC aircraft right now?
SELECT current_unit, COUNT(*) AS fmc_count FROM my_table WHERE status = 'FMC' GROUP BY current_unit ORDER BY fmc_count DESC LIMIT 3;
How many HH-60M helos are DADE at Fort Bragg?
SELECT COUNT(*) FROM my_table WHERE model = 'HH-60M' AND status = 'DADE' AND location__name = 'Fort Bragg';
List all CH-47FM3s with more than 2000 flight hours at Hood Army Airfield.
SELECT serial, model, flight_hours FROM my_table WHERE model = 'CH-47FM3' AND flight_hours > 2000 AND location__name = 'Hood Army Airfield';
How many AH-64D helos are NMCM at Gray Army Airfield?
SELECT COUNT(*) FROM my_table WHERE model = 'AH-64D' AND status = 'NMCM' AND location__name = 'Gray Army Airfield';
How many aircraft are MTF in the 11th Aviation Brigade?
SELECT COUNT(*) FROM my_table WHERE status = 'MTF' AND current_unit = '11th Aviation Brigade';
How many UH-60L helos are MOC at McChord Field?
SELECT COUNT(*) FROM my_table WHERE model = 'UH-60L' AND status = 'MOC' AND location__name = 'McChord Field';
Which units have the most FMC aircraft right now?
SELECT current_unit, COUNT(*) AS fmc_count FROM my_table WHERE status = 'FMC' GROUP BY current_unit ORDER BY fmc_count DESC LIMIT 3;
How many HH-60M helos are FMC at Hunter Army Airfield?
SELECT COUNT(*) FROM my_table WHERE model = 'HH-60M' AND status = 'FMC' AND location__name = 'Hunter Army Airfield';
Which airfields have the most CH-47FM3s that are not mission capable (NMCM)?
SELECT location__name, COUNT(*) AS nmcm_count FROM my_table WHERE model = 'CH-47FM3' AND status = 'NMCM' GROUP BY location__name ORDER BY nmcm_count DESC LIMIT 3;
How many AH-64D helos are NMCS at Fort Hood?
SELECT COUNT(*) FROM my_table WHERE model = 'AH-64D' AND status = 'NMCS' AND location__name = 'Fort Hood';
Which airfields have the most AH-64Es that are not mission capable (NMCM)?
SELECT location__name, COUNT(*) AS nmcm_count FROM my_table WHERE model = 'AH-64E' AND status = 'NMCM' GROUP BY location__name ORDER BY nmcm_count DESC LIMIT 3;
How many UH-60L helos are DADE at Fort Campbell?
SELECT COUNT(*) FROM my_table WHERE model = 'UH-60L' AND status = 'DADE' AND location__name = 'Fort Campbell';
Which units have the most FMC aircraft right now?
SELECT current_unit, COUNT(*) AS fmc_count FROM my_table WHERE status = 'FMC' GROUP BY current_unit ORDER BY fmc_count DESC LIMIT 3;
How many HH-60M helos are NMCM at Fort Bragg?
SELECT COUNT(*) FROM my_table WHERE model = 'HH-60M' AND status = 'NMCM' AND location__name = 'Fort Bragg';
Which airfields have the most CH-47FM3s that are not mission capable (NMCM)?
SELECT location__name, COUNT(*) AS nmcm_count FROM my_table WHERE model = 'CH-47FM3' AND status = 'NMCM' GROUP BY location__name ORDER BY nmcm_count DESC LIMIT 3;
How many AH-64D helos are MOC at Gray Army Airfield?
SELECT COUNT(*) FROM my_table WHERE model = 'AH-64D' AND status = 'MOC' AND location__name = 'Gray Army Airfield';
Which airfields have the most AH-64Es that are not mission capable (NMCM)?
SELECT location__name, COUNT(*) AS nmcm_count FROM my_table WHERE model = 'AH-64E' AND status = 'NMCM' GROUP BY location__name ORDER BY nmcm_count DESC LIMIT 3;
How many UH-60L helos are FMC at McChord Field?
SELECT COUNT(*) FROM my_table WHERE model = 'UH-60L' AND status = 'FMC' AND location__name = 'McChord Field';
Which units have the most FMC aircraft right now?
SELECT current_unit, COUNT(*) AS fmc_count FROM my_table WHERE status = 'FMC' GROUP BY current_unit ORDER BY fmc_count DESC LIMIT 3;
How many HH-60M helos are NMCS at Hunter Army Airfield?
SELECT COUNT(*) FROM my_table WHERE model = 'HH-60M' AND status = 'NMCS' AND location__name = 'Hunter Army Airfield';
Which airfields have the most CH-47FM3s that are not mission capable (NMCM)?
SELECT location__name, COUNT(*) AS nmcm_count FROM my_table WHERE model = 'CH-47FM3' AND status = 'NMCM' GROUP BY location__name ORDER BY nmcm_count DESC LIMIT 3;
How many AH-64D helos are DADE at Fort Hood?
SELECT COUNT(*) FROM my_table WHERE model = 'AH-64D' AND status = 'DADE' AND location__name = 'Fort Hood';
List all AH-64Es with more than 2000 flight hours at Joint Base Lewis-McChord.
SELECT serial, model, flight_hours FROM my_table WHERE model = 'AH-64E' AND flight_hours > 2000 AND location__name = 'Joint Base Lewis-McChord';
How many UH-60L helos are NMCM at Fort Campbell?
SELECT COUNT(*) FROM my_table WHERE model = 'UH-60L' AND status = 'NMCM' AND location__name = 'Fort Campbell';
Which units have the most FMC aircraft right now?
SELECT current_unit, COUNT(*) AS fmc_count FROM my_table WHERE status = 'FMC' GROUP BY current_unit ORDER BY fmc_count DESC LIMIT 3;
How many HH-60M helos are MOC at Fort Bragg?
SELECT COUNT(*) FROM my_table WHERE model = 'HH-60M' AND status = 'MOC' AND location__name = 'Fort Bragg';
Which airfields have the most CH-47FM3s that are not mission capable (NMCM)?
SELECT location__name, COUNT(*) AS nmcm_count FROM my_table WHERE model = 'CH-47FM3' AND status = 'NMCM' GROUP BY location__name ORDER BY nmcm_count DESC LIMIT 3;
How many AH-64D helos are FMC at Gray Army Airfield?
SELECT COUNT(*) FROM my_table WHERE model = 'AH-64D' AND status = 'FMC' AND location__name = 'Gray Army Airfield';
Which airfields have the most AH-64Es that are not mission capable (NMCM)?
SELECT location__name, COUNT(*) AS nmcm_count FROM my_table WHERE model = 'AH-64E' AND status = 'NMCM' GROUP BY location__name ORDER BY nmcm_count DESC LIMIT 3;
How many UH-60L helos are NMCS at McChord Field?
SELECT COUNT(*) FROM my_table WHERE model = 'UH-60L' AND status = 'NMCS' AND location__name = 'McChord Field';
Which units have the most FMC aircraft right now?
SELECT current_unit, COUNT(*) AS fmc_count FROM my_table WHERE status = 'FMC' GROUP BY current_unit ORDER BY fmc_count DESC LIMIT 3;
How many HH-60M helos are DADE at Hunter Army Airfield?
SELECT COUNT(*) FROM my_table WHERE model = 'HH-60M' AND status = 'DADE' AND location__name = 'Hunter Army Airfield';
List all CH-47FM3s with more than 2000 flight hours at Fort Bliss.
SELECT serial, model, flight_hours FROM my_table WHERE model = 'CH-47FM3' AND flight_hours > 2000 AND location__name = 'Fort Bliss';
How many AH-64D helos are NMCM at Fort Hood?
SELECT COUNT(*) FROM my_table WHERE model = 'AH-64D' AND status = 'NMCM' AND location__name = 'Fort Hood';
Which airfields have the most AH-64Es that are not mission capable (NMCM)?
SELECT location__name, COUNT(*) AS nmcm_count FROM my_table WHERE model = 'AH-64E' AND status = 'NMCM' GROUP BY location__name ORDER BY nmcm_count DESC LIMIT 3;
How many UH-60L helos are MOC at Fort Campbell?
SELECT COUNT(*) FROM my_table WHERE model = 'UH-60L' AND status = 'MOC' AND location__name = 'Fort Campbell';
Which units have the most FMC aircraft right now?
SELECT current_unit, COUNT(*) AS fmc_count FROM my_table WHERE status = 'FMC' GROUP BY current_unit ORDER BY fmc_count DESC LIMIT 3;
How many HH-60M helos are FMC at Fort Bragg?
SELECT COUNT(*) FROM my_table WHERE model = 'HH-60M' AND status = 'FMC' AND location__name = 'Fort Bragg';
Which airfields have the most CH-47FM3s that are not mission capable (NMCM)?
SELECT location__name, COUNT(*) AS nmcm_count FROM my_table WHERE model = 'CH-47FM3' AND status = 'NMCM' GROUP BY location__name ORDER BY nmcm_count DESC LIMIT 3;
How many AH-64D helos are NMCS at Gray Army Airfield?
SELECT COUNT(*) FROM my_table WHERE model = 'AH-64D' AND status = 'NMCS' AND location__name = 'Gray Army Airfield';
Which airfields have the most AH-64Es that are not mission capable (NMCM)?
SELECT location__name, COUNT(*) AS nmcm_count FROM my_table WHERE model = 'AH-64E' AND status = 'NMCM' GROUP BY location__name ORDER BY nmcm_count DESC LIMIT 3;
How many UH-60L helos are DADE at McChord Field?
SELECT COUNT(*) FROM my_table WHERE model = 'UH-60L' AND status = 'DADE' AND location__name = 'McChord Field';
Which units have the most FMC aircraft right now?
SELECT current_unit, COUNT(*) AS fmc_count FROM my_table WHERE status = 'FMC' GROUP BY current_unit ORDER BY fmc_count DESC LIMIT 3;
How many HH-60M helos are NMCM at Hunter Army Airfield?
SELECT COUNT(*) FROM my_table WHERE model = 'HH-60M' AND status = 'NMCM' AND location__name = 'Hunter Army Airfield';
Which airfields have the most CH-47FM3s that are not mission capable (NMCM)?
SELECT location__name, COUNT(*) AS nmcm_count FROM my_table WHERE model = 'CH-47FM3' AND status = 'NMCM' GROUP BY location__name ORDER BY nmcm_count DESC LIMIT 3;
How many AH-64D helos are MOC at Fort Hood?
SELECT COUNT(*) FROM my_table WHERE model = 'AH-64D' AND status = 'MOC' AND location__name = 'Fort Hood';
How many aircraft are PMC in the 12th Combat Aviation Brigade?
SELECT COUNT(*) FROM my_table WHERE status = 'PMC' AND current_unit = '12th Combat Aviation Brigade';
How many UH-60L helos are FMC at Fort Campbell?
SELECT COUNT(*) FROM my_table WHERE model = 'UH-60L' AND status = 'FMC' AND location__name = 'Fort Campbell';
Which units have the most FMC aircraft right now?
SELECT current_unit, COUNT(*) AS fmc_count FROM my_table WHERE status = 'FMC' GROUP BY current_unit ORDER BY fmc_count DESC LIMIT 3;
How many HH-60M helos are NMCS at Fort Bragg?
SELECT COUNT(*) FROM my_table WHERE model = 'HH-60M' AND status = 'NMCS' AND location__name = 'Fort Bragg';
Which airfields have the most CH-47FM3s that are not mission capable (NMCM)?
SELECT location__name, COUNT(*) AS nmcm_count FROM my_table WHERE model = 'CH-47FM3' AND status = 'NMCM' GROUP BY location__name ORDER BY nmcm_count DESC LIMIT 3;
How many AH-64D helos are DADE at Gray Army Airfield?
SELECT COUNT(*) FROM my_table WHERE model = 'AH-64D' AND status = 'DADE' AND location__name = 'Gray Army Airfield';
List all AH-64Es with more than 2000 flight hours at Simmons Army Airfield.
SELECT serial, model, flight_hours FROM my_table WHERE model = 'AH-64E' AND flight_hours > 2000 AND location__name = 'Simmons Army Airfield';
How many UH-60L helos are NMCM at McChord Field?
SELECT COUNT(*) FROM my_table WHERE model = 'UH-60L' AND status = 'NMCM' AND location__name = 'McChord Field';
Which units have the most FMC aircraft right now?
SELECT current_unit, COUNT(*) AS fmc_count FROM my_table WHERE status = 'FMC' GROUP BY current_unit ORDER BY fmc_count DESC LIMIT 3;
How many HH-60M helos are MOC at Hunter Army Airfield?
SELECT COUNT(*) FROM my_table WHERE model = 'HH-60M' AND status = 'MOC' AND location__name = 'Hunter Army Airfield';
Which airfields have the most CH-47FM3s that are not mission capable (NMCM)?
SELECT location__name, COUNT(*) AS nmcm_count FROM my_table WHERE model = 'CH-47FM3' AND status = 'NMCM' GROUP BY location__name ORDER BY nmcm_count DESC LIMIT 3;
How many AH-64D helos are FMC at Fort Hood?
SELECT COUNT(*) FROM my_table WHERE model = 'AH-64D' AND status = 'FMC' AND location__name = 'Fort Hood';
Which airfields have the most AH-64Es that are not mission capable (NMCM)?
SELECT location__name, COUNT(*) AS nmcm_count FROM my_table WHERE model = 'AH-64E' AND status = 'NMCM' GROUP BY location__name ORDER BY nmcm_count DESC LIMIT 3;
How many UH-60L helos are NMCS at Fort Campbell?
SELECT COUNT(*) FROM my_table WHERE model = 'UH-60L' AND status = 'NMCS' AND location__name = 'Fort Campbell';
Which units have the most FMC aircraft right now?
SELECT current_unit, COUNT(*) AS fmc_count FROM my_table WHERE status = 'FMC' GROUP BY current_unit ORDER BY fmc_count DESC LIMIT 3;
How many HH-60M helos are DADE at Fort Bragg?
SELECT COUNT(*) FROM my_table WHERE model = 'HH-60M' AND status = 'DADE' AND location__name = 'Fort Bragg';
List all CH-47FM3s with more than 2000 flight hours at Hood Army Airfield.
SELECT serial, model, flight_hours FROM my_table WHERE model = 'CH-47FM3' AND flight_hours > 2000 AND location__name = 'Hood Army Airfield';
How many AH-64D helos are NMCM at Gray Army Airfield?
SELECT COUNT(*) FROM my_table WHERE model = 'AH-64D' AND status = 'NMCM' AND location__name = 'Gray Army Airfield';
Which airfields have the most AH-64Es that are not mission capable (NMCM)?
SELECT location__name, COUNT(*) AS nmcm_count FROM my_table WHERE model = 'AH-64E' AND status = 'NMCM' GROUP BY location__name ORDER BY nmcm_count DESC LIMIT 3;
How many UH-60L helos are MOC at McChord Field?
SELECT COUNT(*) FROM my_table WHERE model = 'UH-60L' AND status = 'MOC' AND location__name = 'McChord Field';
Which units have the most FMC aircraft right now?
SELECT current_unit, COUNT(*) AS fmc_count FROM my_table WHERE status = 'FMC' GROUP BY current_unit ORDER BY fmc_count DESC LIMIT 3;
How many HH-60M helos are FMC at Hunter Army Airfield?
SELECT COUNT(*) FROM my_table WHERE model = 'HH-60M' AND status = 'FMC' AND location__name = 'Hunter Army Airfield';
Which airfields have the most CH-47FM3s that are not mission capable (NMCM)?
SELECT location__name, COUNT(*) AS nmcm_count FROM my_table WHERE model = 'CH-47FM3' AND status = 'NMCM' GROUP BY location__name ORDER BY nmcm_count DESC LIMIT 3;
How many AH-64D helos are NMCS at Fort Hood?
SELECT COUNT(*) FROM my_table WHERE model = 'AH-64D' AND status = 'NMCS' AND location__name = 'Fort Hood';
Which airfields have the most AH-64Es that are not mission capable (NMCM)?
SELECT location__name, COUNT(*) AS nmcm_count FROM my_table WHERE model = 'AH-64E' AND status = 'NMCM' GROUP BY location__name ORDER BY nmcm_count DESC LIMIT 3;
How many UH-60L helos are DADE at Fort Campbell?
SELECT COUNT(*) FROM my_table WHERE model = 'UH-60L' AND status = 'DADE' AND location__name = 'Fort Campbell';
Which units have the most FMC aircraft right now?
SELECT current_unit, COUNT(*) AS fmc_count FROM my_table WHERE status = 'FMC' GROUP BY current_unit ORDER BY fmc_count DESC LIMIT 3;
How many HH-60M helos are NMCM at Fort Bragg?
SELECT COUNT(*) FROM my_table WHERE model = 'HH-60M' AND status = 'NMCM' AND location__name = 'Fort Bragg';
How many aircraft are MTF in the 11th Aviation Brigade?
SELECT COUNT(*) FROM my_table WHERE status = 'MTF' AND current_unit = '11th Aviation Brigade';
How many AH-64D helos are MOC at Gray Army Airfield?
SELECT COUNT(*) FROM my_table WHERE model = 'AH-64D' AND status = 'MOC' AND location__name = 'Gray Army Airfield';
Which airfields have the most AH-64Es that are not mission capable (NMCM)?
SELECT location__name, COUNT(*) AS nmcm_count FROM my_table WHERE model = 'AH-64E' AND status = 'NMCM' GROUP BY location__name ORDER BY nmcm_count DESC LIMIT 3;
How many UH-60L helos are FMC at McChord Field?
SELECT COUNT(*) FROM my_table WHERE model = 'UH-60L' AND status = 'FMC' AND location__name = 'McChord Field';
Which units have the most FMC aircraft right now?
SELECT current_unit, COUNT(*) AS fmc_count FROM my_table WHERE status = 'FMC' GROUP BY current_unit ORDER BY fmc_count DESC LIMIT 3;
How many HH-60M helos are NMCS at Hunter Army Airfield?
SELECT COUNT(*) FROM my_table WHERE model = 'HH-60M' AND status = 'NMCS' AND location__name = 'Hunter Army Airfield';
Which airfields have the most CH-47FM3s that are not mission capable (NMCM)?
SELECT location__name, COUNT(*) AS nmcm_count FROM my_table WHERE model = 'CH-47FM3' AND status = 'NMCM' GROUP BY location__name ORDER BY nmcm_count DESC LIMIT 3;
How many AH-64D helos are DADE at Fort Hood?
SELECT COUNT(*) FROM my_table WHERE model = 'AH-64D' AND status = 'DADE' AND location__name = 'Fort Hood';
List all AH-64Es with more than 2000 flight hours at Joint Base Lewis-McChord.
SELECT serial, model, flight_hours FROM my_table WHERE model = 'AH-64E' AND flight_hours > 2000 AND location__name = 'Joint Base Lewis-McChord';
How many UH-60L helos are NMCM at Fort Campbell?
SELECT COUNT(*) FROM my_table WHERE model = 'UH-60L' AND status = 'NMCM' AND location__name = 'Fort Campbell';
Which units have the most FMC aircraft right now?
SELECT current_unit, COUNT(*) AS fmc_count FROM my_table WHERE status = 'FMC' GROUP BY current_unit ORDER BY fmc_count DESC LIMIT 3;
How many HH-60M helos are MOC at Fort Bragg?
SELECT COUNT(*) FROM my_table WHERE model = 'HH-60M' AND status = 'MOC' AND location__name = 'Fort Bragg';
Which airfields have the most CH-47FM3s that are not mission capable (NMCM)?
SELECT location__name, COUNT(*) AS nmcm_count FROM my_table WHERE model = 'CH-47FM3' AND status = 'NMCM' GROUP BY location__name ORDER BY nmcm_count DESC LIMIT 3;
How many AH-64D helos are FMC at Gray Army Airfield?
SELECT COUNT(*) FROM my_table WHERE model = 'AH-64D' AND status = 'FMC' AND location__name = 'Gray Army Airfield';
How many aircraft are PMCM in the 82nd Airborne Division?
SELECT COUNT(*) FROM my_table WHERE status = 'PMCM' AND current_unit = '82nd Airborne Division';
How many UH-60L helos are NMCS at McChord Field?
SELECT COUNT(*) FROM my_table WHERE model = 'UH-60L' AND status = 'NMCS' AND location__name = 'McChord Field';
Which units have the most FMC aircraft right now?
SELECT current_unit, COUNT(*) AS fmc_count FROM my_table WHERE status = 'FMC' GROUP BY current_unit ORDER BY fmc_count DESC LIMIT 3;
How many HH-60M helos are DADE at Hunter Army Airfield?
SELECT COUNT(*) FROM my_table WHERE model = 'HH-60M' AND status = 'DADE' AND location__name = 'Hunter Army Airfield';
List all CH-47FM3s with more than 2000 flight hours at Fort Bliss.
SELECT serial, model, flight_hours FROM my_table WHERE model = 'CH-47FM3' AND flight_hours > 2000 AND location__name = 'Fort Bliss';
How many AH-64D helos are NMCM at Fort Hood?
SELECT COUNT(*) FROM my_table WHERE model = 'AH-64D' AND status = 'NMCM' AND location__name = 'Fort Hood';
Which airfields have the most AH-64Es that are not mission capable (NMCM)?
SELECT location__name, COUNT(*) AS nmcm_count FROM my_table WHERE model = 'AH-64E' AND status = 'NMCM' GROUP BY location__name ORDER BY nmcm_count DESC LIMIT 3;
How many UH-60L helos are MOC at Fort Campbell?
SELECT COUNT(*) FROM my_table WHERE model = 'UH-60L' AND status = 'MOC' AND location__name = 'Fort Campbell';
Which units have the most FMC aircraft right now?
SELECT current_unit, COUNT(*) AS fmc_count FROM my_table WHERE status = 'FMC' GROUP BY current_unit ORDER BY fmc_count DESC LIMIT 3;
README.md exists but content is empty. Use the Edit dataset card button to edit it.
Downloads last month
31
Edit dataset card

Models trained or fine-tuned on kristiannordby/5000_rows-SQL