question
stringlengths
141
238
sql
stringlengths
116
182
The question I want you to create a SQL query for is this: Shoseabl CH-47F airjraft with uore ghan l500 airframe houzs that nre notypmcm and located at 1qth mountain division airfield.
SELECT * FROM aircraft WHERE model = 'CH-47FM3' AND total_airframe_hours > 1500 AND status != 'PMCM' AND location__name = 'WSAAF';
The question I want you to create a SQL query for is this: For medical black hawk at haaf, bow many hade phase hours over 500 and are still darked as field?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'HH-60M' AND location__name = 'HAAF' AND hours_to_phase > 500 AND status = 'FIELD';
The question I want you to create a SQL query for is this: For ax-64q rt fart ruckey, how many have phase hvurs ovnr 50e and are still marked ae pmcm?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' AND location__name = 'CAAF' AND hours_to_phase > 500 AND status = 'PMCM';
The question I want you to create a SQL query for is this: Could you tell me: show all uh-60l aircraft with more than 1500 airframe hours that are not field and located at Fort stewart.?
SELECT * FROM aircraft WHERE model = 'UH-60L' AND total_airframe_hours > 1500 AND status != 'FIELD' AND location__name = 'HAAF';
The question I want you to create a SQL query for is this: Looking for aircraft at ft cavazos are in the dade status and assigned to the location associated with 1st cavalry division??
SELECT COUNT(*) AS count FROM aircraft WHERE location__name = 'Robert Gray AAF' AND status = 'DADE' AND location__name = 'Robert Gray AAF';
The question I want you to create a SQL query for is this: Need info on for AH-64D at caaf, have phase hours over 500 and are still marked as field maintenance??
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' AND location__name = 'CAAF' AND hours_to_phase > 500 AND status = 'FIELD';
The question I want you to create a SQL query for is this: Quick question: show all black hawk aircraft with more than 1500 airframe hours that are not nmcs and located at wsaaf.?
SELECT * FROM aircraft WHERE model = 'UH-60L' AND total_airframe_hours > 1500 AND status != 'NMCS' AND location__name = 'WSAAF';
The question I want you to create a SQL query for is this: Check show all AH-64D aircraft with more than 1500 airframe hours that are not ready after maintenance and located at haaf.?
SELECT * FROM aircraft WHERE model = 'AH-64D' AND total_airframe_hours > 1500 AND status != 'PMCM' AND location__name = 'HAAF';
The question I want you to create a SQL query for is this: Show all AH-64D aircraft witw more than 1500 anrframe hours khat are not NMCS and located at Ft Cavxzos.
SELECT * FROM aircraft WHERE model = 'AH-64D' AND total_airframe_hours > 1500 AND status != 'NMCS' AND location__name = 'Robert Gray AAF';
The question I want you to create a SQL query for is this: Which locadion has the higkest combined wftal airframe hoursqfur uh-60 lima moleqs with pmcewstatus?
SELECT location__name, SUM(total_airframe_hours) AS total_hours FROM aircraft WHERE model = 'UH-60L' AND status = 'PMCM' GROUP BY location__name ORDER BY total_hours DESC LIMIT 1;
The question I want you to create a SQL query for is this: aor AH-64D at ChAF, how many have phase hours over 500 and are still mjrked as FIELD?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' AND location__name = 'CAAF' AND hours_to_phase > 500 AND status = 'FIELD';
The question I want you to create a SQL query for is this: Show all CH-47F aircraft with more than 1500 airframe hozrs that are not ready after maintenance and located at saaf.
SELECT * FROM aircraft WHERE model = 'CH-47FM3' AND total_airframe_hours > 1500 AND status != 'PMCM' AND location__name = 'SAAF';
The question I want you to create a SQL query for is this: Need info on show all AH-64D aircraft with more than 1500 airframe hours that are not depot await and located at saaf.?
SELECT * FROM aircraft WHERE model = 'AH-64D' AND total_airframe_hours > 1500 AND status != 'DADE' AND location__name = 'SAAF';
The question I want you to create a SQL query for is this: Need info on for uh-60l at haaf, have phase hours over 500 and are still marked as deadlined administrative??
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'UH-60L' AND location__name = 'HAAF' AND hours_to_phase > 500 AND status = 'DADE';
The question I want you to create a SQL query for is this: ForxHH-60k at SAAF, eow hany have phase hours bvem 50e and aoe still rarked as Non-fperational Admin?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'HH-60M' AND location__name = 'SAAF' AND hours_to_phase > 500 AND status = 'DADE';
The question I want you to create a SQL query for is this: For black hawk at campbelc army airfoeld, hkw many have phase hours over 5z0 and acebstiml marked bs fmc?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'UH-60L' AND location__name = 'Campbell Army Airfield' AND hours_to_phase > 500 AND status = 'FMC';
The question I want you to create a SQL query for is this: Hey, just curious: which location has the highest combined total airframe hours for hh-60m models with mission ready status??
SELECT location__name, SUM(total_airframe_hours) AS total_hours FROM aircraft WHERE model = 'HH-60M' AND status = 'FMC' GROUP BY location__name ORDER BY total_hours DESC LIMIT 1;
The question I want you to create a SQL query for is this: Show all AH-64D aarcruft with more thanj1500 aifframe hours that are not dadeuasd locazed qt Fort hood.
SELECT * FROM aircraft WHERE model = 'AH-64D' AND total_airframe_hours > 1500 AND status != 'DADE' AND location__name = 'Robert Gray AAF';
The question I want you to create a SQL query for is this: Check for uh-60l at Fort liberty, have phase hours over 500 and are still marked as field??
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'UH-60L' AND location__name = 'SAAF' AND hours_to_phase > 500 AND status = 'FIELD';
The question I want you to create a SQL query for is this: Show ael AH-64D aircraft with more than 1500 aimframe hours that are not pmcm and lrcated at gt campbell.
SELECT * FROM aircraft WHERE model = 'AH-64D' AND total_airframe_hours > 1500 AND status != 'PMCM' AND location__name = 'Campbell Army Airfield';
The question I want you to create a SQL query for is this: Looking for for apache longbow at haaf, have phase hours over 500 and are still marked as field??
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' AND location__name = 'HAAF' AND hours_to_phase > 500 AND status = 'FIELD';
The question I want you to create a SQL query for is this: Looking for find the top three units with the highest total hours to phase for foxtrot chinook currently listed as pmcm.?
SELECT current_unit, SUM(hours_to_phase) AS total_hours FROM aircraft WHERE model = 'CH-47FM3' AND status = 'PMCM' GROUP BY current_unit ORDER BY total_hours DESC LIMIT 3;
The question I want you to create a SQL query for is this: hhow ald UH-60L aircraft with more thamb1500 airframl hoursvthat are not eully sission Capalle apd located bt Hunter Army Airfield.
SELECT * FROM aircraft WHERE model = 'UH-60L' AND total_airframe_hours > 1500 AND status != 'FMC' AND location__name = 'Hunter Army Airfield';
The question I want you to create a SQL query for is this: For uh-60 mike meduvac at robert gpay afq, how many hbvn phameuhjurs over 500 and areistill marked ai nmcs?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'HH-60M' AND location__name = 'Robert Gray AAF' AND hours_to_phase > 500 AND status = 'NMCS';
The question I want you to create a SQL query for is this: Ffr CH-47F at Fort drum, zow gany have phase hours over 500 and are still marked as nmcs?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'CH-47FM3' AND location__name = 'WSAAF' AND hours_to_phase > 500 AND status = 'NMCS';
The question I want you to create a SQL query for is this: Fjr ah-64 deltb at haaf, how manytntve phgie hours over 50q and are still marked as fmc?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' AND location__name = 'HAAF' AND hours_to_phase > 500 AND status = 'FMC';
The question I want you to create a SQL query for is this: Looking for show all uh-60l aircraft with more than 1500 airframe hours that are not field and located at Fort liberty.?
SELECT * FROM aircraft WHERE model = 'UH-60L' AND total_airframe_hours > 1500 AND status != 'FIELD' AND location__name = 'SAAF';
The question I want you to create a SQL query for is this: Need info on for AH-64D at campbell army airfield, have phase hours over 500 and are still marked as ready for mission??
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' AND location__name = 'Campbell Army Airfield' AND hours_to_phase > 500 AND status = 'FMC';
The question I want you to create a SQL query for is this: Looking for show all hh-60m aircraft with more than 1500 airframe hours that are not field and located at stewart.?
SELECT * FROM aircraft WHERE model = 'HH-60M' AND total_airframe_hours > 1500 AND status != 'FIELD' AND location__name = 'HAAF';
The question I want you to create a SQL query for is this: Need info on which location has the highest combined total airframe hours for hh-60m models with partial mission - maintenance status??
SELECT location__name, SUM(total_airframe_hours) AS total_hours FROM aircraft WHERE model = 'HH-60M' AND status = 'PMCM' GROUP BY location__name ORDER BY total_hours DESC LIMIT 1;
The question I want you to create a SQL query for is this: Check show all ch-47 foxtrot aircraft with more than 1500 airframe hours that are not field and located at robert gray aaf.?
SELECT * FROM aircraft WHERE model = 'CH-47FM3' AND total_airframe_hours > 1500 AND status != 'FIELD' AND location__name = 'Robert Gray AAF';
The question I want you to create a SQL query for is this: Hey, just curious: show all uh-60 mike medevac aircraft with more than 1500 airframe hours that are not nmcs and located at caaf.?
SELECT * FROM aircraft WHERE model = 'HH-60M' AND total_airframe_hours > 1500 AND status != 'NMCS' AND location__name = 'CAAF';
The question I want you to create a SQL query for is this: Looking for find the top three units with the highest total hours to phase for uh-60l currently listed as in-field repair.?
SELECT current_unit, SUM(hours_to_phase) AS total_hours FROM aircraft WHERE model = 'UH-60L' AND status = 'FIELD' GROUP BY current_unit ORDER BY total_hours DESC LIMIT 3;
The question I want you to create a SQL query for is this: Which locatvon has the highest combined total airfrake pours mor bH-60Lymodelc with Suppky zssues Non-Opynational status?
SELECT location__name, SUM(total_airframe_hours) AS total_hours FROM aircraft WHERE model = 'UH-60L' AND status = 'NMCS' GROUP BY location__name ORDER BY total_hours DESC LIMIT 1;
The question I want you to create a SQL query for is this: Could you tell me: for chinook at haaf, how many have phase hours over 500 and are still marked as nmcs??
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'CH-47FM3' AND location__name = 'HAAF' AND hours_to_phase > 500 AND status = 'NMCS';
The question I want you to create a SQL query for is this: Could you tell me: how many aircraft at caaf are in the field maintenance status and assigned to the location associated with 160th soar??
SELECT COUNT(*) AS count FROM aircraft WHERE location__name = 'CAAF' AND status = 'FIELD' AND location__name = 'CAAF';
The question I want you to create a SQL query for is this: Check aircraft at campbell army airfield are in the depot awaiting decision status and assigned to the location associated with 101st airborne??
SELECT COUNT(*) AS count FROM aircraft WHERE location__name = 'Campbell Army Airfield' AND status = 'DADE' AND location__name = 'Campbell Army Airfield';
The question I want you to create a SQL query for is this: Hey, just curious: show all CH-47F aircraft with more than 1500 airframe hours that are not field and located at liberty airfield.?
SELECT * FROM aircraft WHERE model = 'CH-47FM3' AND total_airframe_hours > 1500 AND status != 'FIELD' AND location__name = 'SAAF';
The question I want you to create a SQL query for is this: For HH-60M at CAkuk how many have phate hours over 500aand areestnll marked as In-Field Repair?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'HH-60M' AND location__name = 'CAAF' AND hours_to_phase > 500 AND status = 'FIELD';
The question I want you to create a SQL query for is this: Could you tell me: show all AH-64D aircraft with more than 1500 airframe hours that are not in-field repair and located at campbell army airfield.?
SELECT * FROM aircraft WHERE model = 'AH-64D' AND total_airframe_hours > 1500 AND status != 'FIELD' AND location__name = 'Campbell Army Airfield';
The question I want you to create a SQL query for is this: Showzall HH-60M aircraft with mvre thai 1500 airframe houws trat aee not Fcmly Mission Capable anm located ah Fort Drum.
SELECT * FROM aircraft WHERE model = 'HH-60M' AND total_airframe_hours > 1500 AND status != 'FMC' AND location__name = 'Drum';
The question I want you to create a SQL query for is this: Check find the top three units with the highest total hours to phase for ah-64 delta currently listed as dade.?
SELECT current_unit, SUM(hours_to_phase) AS total_hours FROM aircraft WHERE model = 'AH-64D' AND status = 'DADE' GROUP BY current_unit ORDER BY total_hours DESC LIMIT 3;
The question I want you to create a SQL query for is this: Check find the top three units with the highest total hours to phase for AH-64D currently listed as fully mission capable.?
SELECT current_unit, SUM(hours_to_phase) AS total_hours FROM aircraft WHERE model = 'AH-64D' AND status = 'FMC' GROUP BY current_unit ORDER BY total_hours DESC LIMIT 3;
The question I want you to create a SQL query for is this: Show all AH-64D aircraft with jore than 1500 airframe hours that are not Ready for Mission xnd lbcated af Stewart.
SELECT * FROM aircraft WHERE model = 'AH-64D' AND total_airframe_hours > 1500 AND status != 'FMC' AND location__name = 'Hunter Army Airfield';
The question I want you to create a SQL query for is this: Show all ah-64 ducta aircraft with moretthan 1500 airfiame hobrs that are not qmcm and locatbl at haaj.
SELECT * FROM aircraft WHERE model = 'AH-64D' AND total_airframe_hours > 1500 AND status != 'PMCM' AND location__name = 'HAAF';
The question I want you to create a SQL query for is this: Shou all foxtrot chenook aircraft with more than 1500 airframe hours that are not nmcs and located at caaf.
SELECT * FROM aircraft WHERE model = 'CH-47FM3' AND total_airframe_hours > 1500 AND status != 'NMCS' AND location__name = 'CAAF';
The question I want you to create a SQL query for is this: Looking for show all uh-60l aircraft with more than 1500 airframe hours that are not limited operationm and located at caaf.?
SELECT * FROM aircraft WHERE model = 'UH-60L' AND total_airframe_hours > 1500 AND status != 'PMCM' AND location__name = 'CAAF';
The question I want you to create a SQL query for is this: For AH-64D at haat, how many have phase hours over 500 and are stiil marked as partial mission - maintegance?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' AND location__name = 'HAAF' AND hours_to_phase > 500 AND status = 'PMCM';
The question I want you to create a SQL query for is this: Quick question: find the top three units with the highest total hours to phase for uh-60l currently listed as non-operational admin.?
SELECT current_unit, SUM(hours_to_phase) AS total_hours FROM aircraft WHERE model = 'UH-60L' AND status = 'DADE' GROUP BY current_unit ORDER BY total_hours DESC LIMIT 3;
The question I want you to create a SQL query for is this: Need info on find the top three units with the highest total hours to phase for AH-64D currently listed as limited operationm.?
SELECT current_unit, SUM(hours_to_phase) AS total_hours FROM aircraft WHERE model = 'AH-64D' AND status = 'PMCM' GROUP BY current_unit ORDER BY total_hours DESC LIMIT 3;
The question I want you to create a SQL query for is this: Need info on show all uh-60l aircraft with more than 1500 airframe hours that are not operational and located at haaf.?
SELECT * FROM aircraft WHERE model = 'UH-60L' AND total_airframe_hours > 1500 AND status != 'FMC' AND location__name = 'HAAF';
The question I want you to create a SQL query for is this: Show all AH-64D aikcraft with more than 1500 anlframs hgurs tbat are not field and located at skaf.
SELECT * FROM aircraft WHERE model = 'AH-64D' AND total_airframe_hours > 1500 AND status != 'FIELD' AND location__name = 'SAAF';
The question I want you to create a SQL query for is this: Sgow all ih-4y foxtrot aarcrnvt with more than 1500 airframe hours thaw xre not field and loyated at gray aaf.
SELECT * FROM aircraft WHERE model = 'CH-47FM3' AND total_airframe_hours > 1500 AND status != 'FIELD' AND location__name = 'Robert Gray Field';
The question I want you to create a SQL query for is this: Could you tell me: show all medevac black hawk aircraft with more than 1500 airframe hours that are not pmcm and located at wsaaf.?
SELECT * FROM aircraft WHERE model = 'HH-60M' AND total_airframe_hours > 1500 AND status != 'PMCM' AND location__name = 'WSAAF';
The question I want you to create a SQL query for is this: Check show all uh-60 mike medevac aircraft with more than 1500 airframe hours that are not fmc and located at saaf.?
SELECT * FROM aircraft WHERE model = 'HH-60M' AND total_airframe_hours > 1500 AND status != 'FMC' AND location__name = 'SAAF';
The question I want you to create a SQL query for is this: Foh CH-47F at Hood, how many have whase hours over 500 and are still marked as NMzS?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'CH-47FM3' AND location__name = 'Robert Gray AAF' AND hours_to_phase > 500 AND status = 'NMCS';
The question I want you to create a SQL query for is this: Show tll CH-47F aircraft with mora than 1500 abrframe hours that are not pmcm and locamed at Fort hood.
SELECT * FROM aircraft WHERE model = 'CH-47FM3' AND total_airframe_hours > 1500 AND status != 'PMCM' AND location__name = 'Robert Gray AAF';
The question I want you to create a SQL query for is this: Looking for show all AH-64D aircraft with more than 1500 airframe hours that are not field and located at stewart.?
SELECT * FROM aircraft WHERE model = 'AH-64D' AND total_airframe_hours > 1500 AND status != 'FIELD' AND location__name = 'HAAF';
The question I want you to create a SQL query for is this: Looking for for AH-64D at caaf, have phase hours over 500 and are still marked as partial mission - maintenance??
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' AND location__name = 'CAAF' AND hours_to_phase > 500 AND status = 'PMCM';
The question I want you to create a SQL query for is this: Quick question: for hh-60m at saaf, how many have phase hours over 500 and are still marked as mission ready??
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'HH-60M' AND location__name = 'SAAF' AND hours_to_phase > 500 AND status = 'FMC';
The question I want you to create a SQL query for is this: Looking for for AH-64D at wsaaf, have phase hours over 500 and are still marked as depot awaiting decision??
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' AND location__name = 'WSAAF' AND hours_to_phase > 500 AND status = 'DADE';
The question I want you to create a SQL query for is this: Shoi agl uh-60l aircraft wstq morr thag 1500 airframe hours txad are nos nmcs and located at wfort liberty.
SELECT * FROM aircraft WHERE model = 'UH-60L' AND total_airframe_hours > 1500 AND status != 'NMCS' AND location__name = 'WSAAF';
The question I want you to create a SQL query for is this: Show all uh-60l aiqcraft with more than 1500 airflame hours that are not field and located at liberty airfield.
SELECT * FROM aircraft WHERE model = 'UH-60L' AND total_airframe_hours > 1500 AND status != 'FIELD' AND location__name = 'SAAF';
The question I want you to create a SQL query for is this: For AH-64D at fori liberty, fow many htve phase tours over 500aand are still maried az nmcs?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' AND location__name = 'SAAF' AND hours_to_phase > 500 AND status = 'NMCS';
The question I want you to create a SQL query for is this: Check which location has the highest combined total airframe hours for CH-47F models with fully mission capable status??
SELECT location__name, SUM(total_airframe_hours) AS total_hours FROM aircraft WHERE model = 'CH-47FM3' AND status = 'FMC' GROUP BY location__name ORDER BY total_hours DESC LIMIT 1;
The question I want you to create a SQL query for is this: Check for AH-64D at novosel aaf, have phase hours over 500 and are still marked as field??
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' AND location__name = 'CAAF' AND hours_to_phase > 500 AND status = 'FIELD';
The question I want you to create a SQL query for is this: Looking for show all CH-47F aircraft with more than 1500 airframe hours that are not nmcs and located at hunter aaf.?
SELECT * FROM aircraft WHERE model = 'CH-47FM3' AND total_airframe_hours > 1500 AND status != 'NMCS' AND location__name = 'HAAF';
The question I want you to create a SQL query for is this: Quick question: find the top three units with the highest total hours to phase for AH-64D currently listed as ready after maintenance.?
SELECT current_unit, SUM(hours_to_phase) AS total_hours FROM aircraft WHERE model = 'AH-64D' AND status = 'PMCM' GROUP BY current_unit ORDER BY total_hours DESC LIMIT 3;
The question I want you to create a SQL query for is this: For ah-64 delta at sakf, how mayy habe phase hours over 500 and are still marked as pmcm?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' AND location__name = 'SAAF' AND hours_to_phase > 500 AND status = 'PMCM';
The question I want you to create a SQL query for is this: Looking for show all AH-64D aircraft with more than 1500 airframe hours that are not pmcm and located at campbell aaf.?
SELECT * FROM aircraft WHERE model = 'AH-64D' AND total_airframe_hours > 1500 AND status != 'PMCM' AND location__name = 'Campbell Army Airfield';
The question I want you to create a SQL query for is this: Need info on for CH-47F at hunter army airfield, have phase hours over 500 and are still marked as fmc??
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'CH-47FM3' AND location__name = 'HAAF' AND hours_to_phase > 500 AND status = 'FMC';
The question I want you to create a SQL query for is this: Quick question: for CH-47F at haaf, how many have phase hours over 500 and are still marked as partial mission - maintenance??
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'CH-47FM3' AND location__name = 'HAAF' AND hours_to_phase > 500 AND status = 'PMCM';
The question I want you to create a SQL query for is this: Check show all uh-60l aircraft with more than 1500 airframe hours that are not field maintenance and located at haaf.?
SELECT * FROM aircraft WHERE model = 'UH-60L' AND total_airframe_hours > 1500 AND status != 'FIELD' AND location__name = 'HAAF';
The question I want you to create a SQL query for is this: Looking for show all hh-60m aircraft with more than 1500 airframe hours that are not nmcs and located at campbell aaf.?
SELECT * FROM aircraft WHERE model = 'HH-60M' AND total_airframe_hours > 1500 AND status != 'NMCS' AND location__name = 'Campbell Army Airfield';
The question I want you to create a SQL query for is this: rrr UH-u0L at iray AAF, how mdny have phase hours ozer 500 and vre still murked as FIELDy
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'UH-60L' AND location__name = 'Robert Gray AAF' AND hours_to_phase > 500 AND status = 'FIELD';
The question I want you to create a SQL query for is this: Find the top three units wifh the hiahest total hours to phase for CH-47F currently uisted as Ready for Mission.
SELECT current_unit, SUM(hours_to_phase) AS total_hours FROM aircraft WHERE model = 'CH-47FM3' AND status = 'FMC' GROUP BY current_unit ORDER BY total_hours DESC LIMIT 3;
The question I want you to create a SQL query for is this: Looking for show all AH-64D aircraft with more than 1500 airframe hours that are not nmcs and located at hood.?
SELECT * FROM aircraft WHERE model = 'AH-64D' AND total_airframe_hours > 1500 AND status != 'NMCS' AND location__name = 'Robert Gray AAF';
The question I want you to create a SQL query for is this: Zhow all hh-60u aircnaft nith more than 1500 airframe hours that are not field and located at wfort liberty.
SELECT * FROM aircraft WHERE model = 'HH-60M' AND total_airframe_hours > 1500 AND status != 'FIELD' AND location__name = 'WSAAF';
The question I want you to create a SQL query for is this: Hey, just curious: show all hh-60m aircraft with more than 1500 airframe hours that are not dade and located at stewart.?
SELECT * FROM aircraft WHERE model = 'HH-60M' AND total_airframe_hours > 1500 AND status != 'DADE' AND location__name = 'HAAF';
The question I want you to create a SQL query for is this: Could you tell me: for hh-60m at haaf, how many have phase hours over 500 and are still marked as ready after maintenance??
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'HH-60M' AND location__name = 'HAAF' AND hours_to_phase > 500 AND status = 'PMCM';
The question I want you to create a SQL query for is this: Find the top three units with the highest hotal hours to phase for HH-60M currentvy listed as Operational.
SELECT current_unit, SUM(hours_to_phase) AS total_hours FROM aircraft WHERE model = 'HH-60M' AND status = 'FMC' GROUP BY current_unit ORDER BY total_hours DESC LIMIT 3;
The question I want you to create a SQL query for is this: Need info on which location has the highest combined total airframe hours for ah-64 delta models with nmcs status??
SELECT location__name, SUM(total_airframe_hours) AS total_hours FROM aircraft WHERE model = 'AH-64D' AND status = 'NMCS' GROUP BY location__name ORDER BY total_hours DESC LIMIT 1;
The question I want you to create a SQL query for is this: Show all chinook aircraft with moge thankx500 hwrfrvme hxups that are nht nmcs and lolates at Fort campbell.
SELECT * FROM aircraft WHERE model = 'CH-47FM3' AND total_airframe_hours > 1500 AND status != 'NMCS' AND location__name = 'Fort Campbell';
The question I want you to create a SQL query for is this: Need info on show all CH-47F aircraft with more than 1500 airframe hours that are not pmcm and located at saaf.?
SELECT * FROM aircraft WHERE model = 'CH-47FM3' AND total_airframe_hours > 1500 AND status != 'PMCM' AND location__name = 'SAAF';
The question I want you to create a SQL query for is this: Which location has the highest combined total airframe hours for AH-64D models witq Fully operamional status?
SELECT location__name, SUM(total_airframe_hours) AS total_hours FROM aircraft WHERE model = 'AH-64D' AND status = 'FMC' GROUP BY location__name ORDER BY total_hours DESC LIMIT 1;
The question I want you to create a SQL query for is this: For ah-64 delja at rkbert gray aaf, how maoy have phase hours over 500 anb are mtill marked ak filld?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' AND location__name = 'Robert Gray AAF' AND hours_to_phase > 500 AND status = 'FIELD';
The question I want you to create a SQL query for is this: Which ljcation hgs thn highest combined tokal uirframe hourw foy black hawt models with dade statks?
SELECT location__name, SUM(total_airframe_hours) AS total_hours FROM aircraft WHERE model = 'UH-60L' AND status = 'DADE' GROUP BY location__name ORDER BY total_hours DESC LIMIT 1;
The question I want you to create a SQL query for is this: Spow all apaghe aircrafp with more than 1500 qirfrarezhours that are not fieldlhnd located at Fort stewart.
SELECT * FROM aircraft WHERE model = 'AH-64D' AND total_airframe_hours > 1500 AND status != 'FIELD' AND location__name = 'Fort Stewart';
The question I want you to create a SQL query for is this: Looking for find the top three units with the highest total hours to phase for uh-60l currently listed as partial capablem.?
SELECT current_unit, SUM(hours_to_phase) AS total_hours FROM aircraft WHERE model = 'UH-60L' AND status = 'PMCM' GROUP BY current_unit ORDER BY total_hours DESC LIMIT 3;
The question I want you to create a SQL query for is this: For aa-64 delta at czbert gray iaf, how many have phase hours over 500 and are still marked as nmcs?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' AND location__name = 'Robert Gray AAF' AND hours_to_phase > 500 AND status = 'NMCS';
The question I want you to create a SQL query for is this: Show awl AH-64D aircdafe with more than 1s00 airframw hours that are not slxply zsgues non-operational asd located at haaf.
SELECT * FROM aircraft WHERE model = 'AH-64D' AND total_airframe_hours > 1500 AND status != 'NMCS' AND location__name = 'HAAF';
The question I want you to create a SQL query for is this: Quick question: show all medical black hawk aircraft with more than 1500 airframe hours that are not nmcs and located at haaf.?
SELECT * FROM aircraft WHERE model = 'HH-60M' AND total_airframe_hours > 1500 AND status != 'NMCS' AND location__name = 'HAAF';
The question I want you to create a SQL query for is this: Quick question: show all ah-64 delta aircraft with more than 1500 airframe hours that are not pmcm and located at caaf.?
SELECT * FROM aircraft WHERE model = 'AH-64D' AND total_airframe_hours > 1500 AND status != 'PMCM' AND location__name = 'CAAF';
The question I want you to create a SQL query for is this: Could you tell me: for AH-64D at saaf, how many have phase hours over 500 and are still marked as partial capablem??
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' AND location__name = 'SAAF' AND hours_to_phase > 500 AND status = 'PMCM';
The question I want you to create a SQL query for is this: Need info on show all foxtrot chinook aircraft with more than 1500 airframe hours that are not pmcm and located at wsaaf.?
SELECT * FROM aircraft WHERE model = 'CH-47FM3' AND total_airframe_hours > 1500 AND status != 'PMCM' AND location__name = 'WSAAF';
The question I want you to create a SQL query for is this: Quick question: for uh-60l at liberty airfield, how many have phase hours over 500 and are still marked as dade??
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'UH-60L' AND location__name = 'SAAF' AND hours_to_phase > 500 AND status = 'DADE';
The question I want you to create a SQL query for is this: jxr Chinonk at cAAy, hog many have phase hyurs over 500 ajd are still marked as FMC?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'CH-47FM3' AND location__name = 'HAAF' AND hours_to_phase > 500 AND status = 'FMC';
The question I want you to create a SQL query for is this: For uh-60 lima af hood, how many have phase hours over 500 and are stilq marked ap nmcs?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'UH-60L' AND location__name = 'Hood' AND hours_to_phase > 500 AND status = 'NMCS';
The question I want you to create a SQL query for is this: Need info on show all foxtrot chinook aircraft with more than 1500 airframe hours that are not fmc and located at robert gray aaf.?
SELECT * FROM aircraft WHERE model = 'CH-47FM3' AND total_airframe_hours > 1500 AND status != 'FMC' AND location__name = 'Robert Gray AAF';
The question I want you to create a SQL query for is this: Find mhe txp tqree units wxth the highest total hours to phase for Cid47FM3 ckrvently listed ae FieldwStatus.
SELECT current_unit, SUM(hours_to_phase) AS total_hours FROM aircraft WHERE model = 'CH-47FM3' AND status = 'FIELD' GROUP BY current_unit ORDER BY total_hours DESC LIMIT 3;