kristiannordby/t5-text2sql-v2
0.2B
•
Updated
•
4
question
stringclasses 47
values | query
stringclasses 47
values |
---|---|
How many AH-64D helicopters are currently FMC at Fort Hood?
|
SELECT COUNT(*) FROM your_table WHERE model = 'AH-64D' AND status = 'FMC' AND location__name = 'Fort Hood';
|
Which bases have the most AH-64Es that are PMCM?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'AH-64E' AND status = 'PMCM' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many UH-60L helicopters are currently NMCS at Fort Campbell?
|
SELECT COUNT(*) FROM your_table WHERE model = 'UH-60L' AND status = 'NMCS' AND location__name = 'Fort Campbell';
|
Which units have the highest number of FIELD UH-60Ms right now?
|
SELECT current_unit, COUNT(*) AS count FROM your_table WHERE model = 'UH-60M' AND status = 'FIELD' GROUP BY current_unit ORDER BY count DESC LIMIT 3;
|
How many HH-60M helicopters are currently DADE at Fort Bragg?
|
SELECT COUNT(*) FROM your_table WHERE model = 'HH-60M' AND status = 'DADE' AND location__name = 'Fort Bragg';
|
List all CH-47FM3s with over 1000 flight hours at Hood Army Airfield.
|
SELECT serial, model, flight_hours FROM your_table WHERE model = 'CH-47FM3' AND flight_hours > 1000 AND location__name = 'Hood Army Airfield';
|
How many AH-64D helicopters are currently NMCM at Gray Army Airfield?
|
SELECT COUNT(*) FROM your_table WHERE model = 'AH-64D' AND status = 'NMCM' AND location__name = 'Gray Army Airfield';
|
Which bases have the most AH-64Es that are MTF?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'AH-64E' AND status = 'MTF' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many UH-60L helicopters are currently MOC at McChord Field?
|
SELECT COUNT(*) FROM your_table WHERE model = 'UH-60L' AND status = 'MOC' AND location__name = 'McChord Field';
|
Which units have the highest number of PMC UH-60Ms right now?
|
SELECT current_unit, COUNT(*) AS count FROM your_table WHERE model = 'UH-60M' AND status = 'PMC' GROUP BY current_unit ORDER BY count DESC LIMIT 3;
|
How many HH-60M helicopters are currently FMC at Hunter Army Airfield?
|
SELECT COUNT(*) FROM your_table WHERE model = 'HH-60M' AND status = 'FMC' AND location__name = 'Hunter Army Airfield';
|
Which bases have the most CH-47FM3s that are PMCM?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'CH-47FM3' AND status = 'PMCM' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many AH-64D helicopters are currently NMCS at Fort Hood?
|
SELECT COUNT(*) FROM your_table WHERE model = 'AH-64D' AND status = 'NMCS' AND location__name = 'Fort Hood';
|
Which bases have the most AH-64Es that are FIELD?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'AH-64E' AND status = 'FIELD' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many UH-60L helicopters are currently DADE at Fort Campbell?
|
SELECT COUNT(*) FROM your_table WHERE model = 'UH-60L' AND status = 'DADE' AND location__name = 'Fort Campbell';
|
Which units have the highest number of PMCS UH-60Ms right now?
|
SELECT current_unit, COUNT(*) AS count FROM your_table WHERE model = 'UH-60M' AND status = 'PMCS' GROUP BY current_unit ORDER BY count DESC LIMIT 3;
|
How many HH-60M helicopters are currently NMCM at Fort Bragg?
|
SELECT COUNT(*) FROM your_table WHERE model = 'HH-60M' AND status = 'NMCM' AND location__name = 'Fort Bragg';
|
Which bases have the most CH-47FM3s that are MTF?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'CH-47FM3' AND status = 'MTF' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many AH-64D helicopters are currently MOC at Gray Army Airfield?
|
SELECT COUNT(*) FROM your_table WHERE model = 'AH-64D' AND status = 'MOC' AND location__name = 'Gray Army Airfield';
|
Which bases have the most AH-64Es that are PMC?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'AH-64E' AND status = 'PMC' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many UH-60L helicopters are currently FMC at McChord Field?
|
SELECT COUNT(*) FROM your_table WHERE model = 'UH-60L' AND status = 'FMC' AND location__name = 'McChord Field';
|
Which units have the highest number of PMCM UH-60Ms right now?
|
SELECT current_unit, COUNT(*) AS count FROM your_table WHERE model = 'UH-60M' AND status = 'PMCM' GROUP BY current_unit ORDER BY count DESC LIMIT 3;
|
How many HH-60M helicopters are currently NMCS at Hunter Army Airfield?
|
SELECT COUNT(*) FROM your_table WHERE model = 'HH-60M' AND status = 'NMCS' AND location__name = 'Hunter Army Airfield';
|
Which bases have the most CH-47FM3s that are FIELD?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'CH-47FM3' AND status = 'FIELD' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many AH-64D helicopters are currently DADE at Fort Hood?
|
SELECT COUNT(*) FROM your_table WHERE model = 'AH-64D' AND status = 'DADE' AND location__name = 'Fort Hood';
|
List all AH-64Es with over 1000 flight hours at Joint Base Lewis-McChord.
|
SELECT serial, model, flight_hours FROM your_table WHERE model = 'AH-64E' AND flight_hours > 1000 AND location__name = 'Joint Base Lewis-McChord';
|
How many UH-60L helicopters are currently NMCM at Fort Campbell?
|
SELECT COUNT(*) FROM your_table WHERE model = 'UH-60L' AND status = 'NMCM' AND location__name = 'Fort Campbell';
|
Which units have the highest number of MTF UH-60Ms right now?
|
SELECT current_unit, COUNT(*) AS count FROM your_table WHERE model = 'UH-60M' AND status = 'MTF' GROUP BY current_unit ORDER BY count DESC LIMIT 3;
|
How many HH-60M helicopters are currently MOC at Fort Bragg?
|
SELECT COUNT(*) FROM your_table WHERE model = 'HH-60M' AND status = 'MOC' AND location__name = 'Fort Bragg';
|
Which bases have the most CH-47FM3s that are PMC?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'CH-47FM3' AND status = 'PMC' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many AH-64D helicopters are currently FMC at Gray Army Airfield?
|
SELECT COUNT(*) FROM your_table WHERE model = 'AH-64D' AND status = 'FMC' AND location__name = 'Gray Army Airfield';
|
Which bases have the most AH-64Es that are PMCM?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'AH-64E' AND status = 'PMCM' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many UH-60L helicopters are currently NMCS at McChord Field?
|
SELECT COUNT(*) FROM your_table WHERE model = 'UH-60L' AND status = 'NMCS' AND location__name = 'McChord Field';
|
Which units have the highest number of FIELD UH-60Ms right now?
|
SELECT current_unit, COUNT(*) AS count FROM your_table WHERE model = 'UH-60M' AND status = 'FIELD' GROUP BY current_unit ORDER BY count DESC LIMIT 3;
|
How many HH-60M helicopters are currently DADE at Hunter Army Airfield?
|
SELECT COUNT(*) FROM your_table WHERE model = 'HH-60M' AND status = 'DADE' AND location__name = 'Hunter Army Airfield';
|
List all CH-47FM3s with over 1000 flight hours at Fort Bliss.
|
SELECT serial, model, flight_hours FROM your_table WHERE model = 'CH-47FM3' AND flight_hours > 1000 AND location__name = 'Fort Bliss';
|
How many AH-64D helicopters are currently NMCM at Fort Hood?
|
SELECT COUNT(*) FROM your_table WHERE model = 'AH-64D' AND status = 'NMCM' AND location__name = 'Fort Hood';
|
Which bases have the most AH-64Es that are MTF?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'AH-64E' AND status = 'MTF' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many UH-60L helicopters are currently MOC at Fort Campbell?
|
SELECT COUNT(*) FROM your_table WHERE model = 'UH-60L' AND status = 'MOC' AND location__name = 'Fort Campbell';
|
Which units have the highest number of PMC UH-60Ms right now?
|
SELECT current_unit, COUNT(*) AS count FROM your_table WHERE model = 'UH-60M' AND status = 'PMC' GROUP BY current_unit ORDER BY count DESC LIMIT 3;
|
How many HH-60M helicopters are currently FMC at Fort Bragg?
|
SELECT COUNT(*) FROM your_table WHERE model = 'HH-60M' AND status = 'FMC' AND location__name = 'Fort Bragg';
|
Which bases have the most CH-47FM3s that are PMCM?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'CH-47FM3' AND status = 'PMCM' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many AH-64D helicopters are currently NMCS at Gray Army Airfield?
|
SELECT COUNT(*) FROM your_table WHERE model = 'AH-64D' AND status = 'NMCS' AND location__name = 'Gray Army Airfield';
|
Which bases have the most AH-64Es that are FIELD?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'AH-64E' AND status = 'FIELD' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many UH-60L helicopters are currently DADE at McChord Field?
|
SELECT COUNT(*) FROM your_table WHERE model = 'UH-60L' AND status = 'DADE' AND location__name = 'McChord Field';
|
Which units have the highest number of PMCS UH-60Ms right now?
|
SELECT current_unit, COUNT(*) AS count FROM your_table WHERE model = 'UH-60M' AND status = 'PMCS' GROUP BY current_unit ORDER BY count DESC LIMIT 3;
|
How many HH-60M helicopters are currently NMCM at Hunter Army Airfield?
|
SELECT COUNT(*) FROM your_table WHERE model = 'HH-60M' AND status = 'NMCM' AND location__name = 'Hunter Army Airfield';
|
Which bases have the most CH-47FM3s that are MTF?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'CH-47FM3' AND status = 'MTF' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many AH-64D helicopters are currently MOC at Fort Hood?
|
SELECT COUNT(*) FROM your_table WHERE model = 'AH-64D' AND status = 'MOC' AND location__name = 'Fort Hood';
|
Which bases have the most AH-64Es that are PMC?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'AH-64E' AND status = 'PMC' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many UH-60L helicopters are currently FMC at Fort Campbell?
|
SELECT COUNT(*) FROM your_table WHERE model = 'UH-60L' AND status = 'FMC' AND location__name = 'Fort Campbell';
|
Which units have the highest number of PMCM UH-60Ms right now?
|
SELECT current_unit, COUNT(*) AS count FROM your_table WHERE model = 'UH-60M' AND status = 'PMCM' GROUP BY current_unit ORDER BY count DESC LIMIT 3;
|
How many HH-60M helicopters are currently NMCS at Fort Bragg?
|
SELECT COUNT(*) FROM your_table WHERE model = 'HH-60M' AND status = 'NMCS' AND location__name = 'Fort Bragg';
|
Which bases have the most CH-47FM3s that are FIELD?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'CH-47FM3' AND status = 'FIELD' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many AH-64D helicopters are currently DADE at Gray Army Airfield?
|
SELECT COUNT(*) FROM your_table WHERE model = 'AH-64D' AND status = 'DADE' AND location__name = 'Gray Army Airfield';
|
List all AH-64Es with over 1000 flight hours at Simmons Army Airfield.
|
SELECT serial, model, flight_hours FROM your_table WHERE model = 'AH-64E' AND flight_hours > 1000 AND location__name = 'Simmons Army Airfield';
|
How many UH-60L helicopters are currently NMCM at McChord Field?
|
SELECT COUNT(*) FROM your_table WHERE model = 'UH-60L' AND status = 'NMCM' AND location__name = 'McChord Field';
|
Which units have the highest number of MTF UH-60Ms right now?
|
SELECT current_unit, COUNT(*) AS count FROM your_table WHERE model = 'UH-60M' AND status = 'MTF' GROUP BY current_unit ORDER BY count DESC LIMIT 3;
|
How many HH-60M helicopters are currently MOC at Hunter Army Airfield?
|
SELECT COUNT(*) FROM your_table WHERE model = 'HH-60M' AND status = 'MOC' AND location__name = 'Hunter Army Airfield';
|
Which bases have the most CH-47FM3s that are PMC?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'CH-47FM3' AND status = 'PMC' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many AH-64D helicopters are currently FMC at Fort Hood?
|
SELECT COUNT(*) FROM your_table WHERE model = 'AH-64D' AND status = 'FMC' AND location__name = 'Fort Hood';
|
Which bases have the most AH-64Es that are PMCM?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'AH-64E' AND status = 'PMCM' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many UH-60L helicopters are currently NMCS at Fort Campbell?
|
SELECT COUNT(*) FROM your_table WHERE model = 'UH-60L' AND status = 'NMCS' AND location__name = 'Fort Campbell';
|
Which units have the highest number of FIELD UH-60Ms right now?
|
SELECT current_unit, COUNT(*) AS count FROM your_table WHERE model = 'UH-60M' AND status = 'FIELD' GROUP BY current_unit ORDER BY count DESC LIMIT 3;
|
How many HH-60M helicopters are currently DADE at Fort Bragg?
|
SELECT COUNT(*) FROM your_table WHERE model = 'HH-60M' AND status = 'DADE' AND location__name = 'Fort Bragg';
|
List all CH-47FM3s with over 1000 flight hours at Hood Army Airfield.
|
SELECT serial, model, flight_hours FROM your_table WHERE model = 'CH-47FM3' AND flight_hours > 1000 AND location__name = 'Hood Army Airfield';
|
How many AH-64D helicopters are currently NMCM at Gray Army Airfield?
|
SELECT COUNT(*) FROM your_table WHERE model = 'AH-64D' AND status = 'NMCM' AND location__name = 'Gray Army Airfield';
|
Which bases have the most AH-64Es that are MTF?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'AH-64E' AND status = 'MTF' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many UH-60L helicopters are currently MOC at McChord Field?
|
SELECT COUNT(*) FROM your_table WHERE model = 'UH-60L' AND status = 'MOC' AND location__name = 'McChord Field';
|
Which units have the highest number of PMC UH-60Ms right now?
|
SELECT current_unit, COUNT(*) AS count FROM your_table WHERE model = 'UH-60M' AND status = 'PMC' GROUP BY current_unit ORDER BY count DESC LIMIT 3;
|
How many HH-60M helicopters are currently FMC at Hunter Army Airfield?
|
SELECT COUNT(*) FROM your_table WHERE model = 'HH-60M' AND status = 'FMC' AND location__name = 'Hunter Army Airfield';
|
Which bases have the most CH-47FM3s that are PMCM?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'CH-47FM3' AND status = 'PMCM' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many AH-64D helicopters are currently NMCS at Fort Hood?
|
SELECT COUNT(*) FROM your_table WHERE model = 'AH-64D' AND status = 'NMCS' AND location__name = 'Fort Hood';
|
Which bases have the most AH-64Es that are FIELD?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'AH-64E' AND status = 'FIELD' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many UH-60L helicopters are currently DADE at Fort Campbell?
|
SELECT COUNT(*) FROM your_table WHERE model = 'UH-60L' AND status = 'DADE' AND location__name = 'Fort Campbell';
|
Which units have the highest number of PMCS UH-60Ms right now?
|
SELECT current_unit, COUNT(*) AS count FROM your_table WHERE model = 'UH-60M' AND status = 'PMCS' GROUP BY current_unit ORDER BY count DESC LIMIT 3;
|
How many HH-60M helicopters are currently NMCM at Fort Bragg?
|
SELECT COUNT(*) FROM your_table WHERE model = 'HH-60M' AND status = 'NMCM' AND location__name = 'Fort Bragg';
|
Which bases have the most CH-47FM3s that are MTF?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'CH-47FM3' AND status = 'MTF' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many AH-64D helicopters are currently MOC at Gray Army Airfield?
|
SELECT COUNT(*) FROM your_table WHERE model = 'AH-64D' AND status = 'MOC' AND location__name = 'Gray Army Airfield';
|
Which bases have the most AH-64Es that are PMC?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'AH-64E' AND status = 'PMC' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many UH-60L helicopters are currently FMC at McChord Field?
|
SELECT COUNT(*) FROM your_table WHERE model = 'UH-60L' AND status = 'FMC' AND location__name = 'McChord Field';
|
Which units have the highest number of PMCM UH-60Ms right now?
|
SELECT current_unit, COUNT(*) AS count FROM your_table WHERE model = 'UH-60M' AND status = 'PMCM' GROUP BY current_unit ORDER BY count DESC LIMIT 3;
|
How many HH-60M helicopters are currently NMCS at Hunter Army Airfield?
|
SELECT COUNT(*) FROM your_table WHERE model = 'HH-60M' AND status = 'NMCS' AND location__name = 'Hunter Army Airfield';
|
Which bases have the most CH-47FM3s that are FIELD?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'CH-47FM3' AND status = 'FIELD' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many AH-64D helicopters are currently DADE at Fort Hood?
|
SELECT COUNT(*) FROM your_table WHERE model = 'AH-64D' AND status = 'DADE' AND location__name = 'Fort Hood';
|
List all AH-64Es with over 1000 flight hours at Joint Base Lewis-McChord.
|
SELECT serial, model, flight_hours FROM your_table WHERE model = 'AH-64E' AND flight_hours > 1000 AND location__name = 'Joint Base Lewis-McChord';
|
How many UH-60L helicopters are currently NMCM at Fort Campbell?
|
SELECT COUNT(*) FROM your_table WHERE model = 'UH-60L' AND status = 'NMCM' AND location__name = 'Fort Campbell';
|
Which units have the highest number of MTF UH-60Ms right now?
|
SELECT current_unit, COUNT(*) AS count FROM your_table WHERE model = 'UH-60M' AND status = 'MTF' GROUP BY current_unit ORDER BY count DESC LIMIT 3;
|
How many HH-60M helicopters are currently MOC at Fort Bragg?
|
SELECT COUNT(*) FROM your_table WHERE model = 'HH-60M' AND status = 'MOC' AND location__name = 'Fort Bragg';
|
Which bases have the most CH-47FM3s that are PMC?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'CH-47FM3' AND status = 'PMC' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many AH-64D helicopters are currently FMC at Gray Army Airfield?
|
SELECT COUNT(*) FROM your_table WHERE model = 'AH-64D' AND status = 'FMC' AND location__name = 'Gray Army Airfield';
|
Which bases have the most AH-64Es that are PMCM?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'AH-64E' AND status = 'PMCM' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many UH-60L helicopters are currently NMCS at McChord Field?
|
SELECT COUNT(*) FROM your_table WHERE model = 'UH-60L' AND status = 'NMCS' AND location__name = 'McChord Field';
|
Which units have the highest number of FIELD UH-60Ms right now?
|
SELECT current_unit, COUNT(*) AS count FROM your_table WHERE model = 'UH-60M' AND status = 'FIELD' GROUP BY current_unit ORDER BY count DESC LIMIT 3;
|
How many HH-60M helicopters are currently DADE at Hunter Army Airfield?
|
SELECT COUNT(*) FROM your_table WHERE model = 'HH-60M' AND status = 'DADE' AND location__name = 'Hunter Army Airfield';
|
List all CH-47FM3s with over 1000 flight hours at Fort Bliss.
|
SELECT serial, model, flight_hours FROM your_table WHERE model = 'CH-47FM3' AND flight_hours > 1000 AND location__name = 'Fort Bliss';
|
How many AH-64D helicopters are currently NMCM at Fort Hood?
|
SELECT COUNT(*) FROM your_table WHERE model = 'AH-64D' AND status = 'NMCM' AND location__name = 'Fort Hood';
|
Which bases have the most AH-64Es that are MTF?
|
SELECT location__name, COUNT(*) AS count FROM your_table WHERE model = 'AH-64E' AND status = 'MTF' GROUP BY location__name ORDER BY count DESC LIMIT 3;
|
How many UH-60L helicopters are currently MOC at Fort Campbell?
|
SELECT COUNT(*) FROM your_table WHERE model = 'UH-60L' AND status = 'MOC' AND location__name = 'Fort Campbell';
|
Which units have the highest number of PMC UH-60Ms right now?
|
SELECT current_unit, COUNT(*) AS count FROM your_table WHERE model = 'UH-60M' AND status = 'PMC' GROUP BY current_unit ORDER BY count DESC LIMIT 3;
|