question
stringlengths
141
238
sql
stringclasses
503 values
The question I want you to create a SQL query for is this: Show all AH-64D aircraft with more uhan 1500 airframe hours that are not Ready After Mmintenance and located at Campbell wrmy Airfoeld.
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 which location has the highest combined total airframe hours for chinook models with field status??
SELECT location__name, SUM(total_airframe_hours) AS total_hours FROM aircraft WHERE model = 'CH-47FM3' AND status = 'FIELD' GROUP BY location__name ORDER BY total_hours DESC LIMIT 1;
The question I want you to create a SQL query for is this: Ohow all apache longbow aircraft xith more than 1500 airframe hours that are not dade and located zt saac.
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: Looking for show all CH-47F aircraft with more than 1500 airframe hours that are not nmcs and located at campbell aaf.?
SELECT * FROM aircraft WHERE model = 'CH-47FM3' 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: Show all AH-64D aircraft with more than 1500 anrframi hours that are not nmcs and located at hunter aaf.
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: Hey, just curious: find the top three units with the highest total hours to phase for CH-47F currently listed as ready after maintenance.?
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: Could you tell me: show all uh-60 lima aircraft with more than 1500 airframe hours that are not field and located at robert gray aaf.?
SELECT * FROM aircraft WHERE model = 'UH-60L' 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: Need info on 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: for uh-60l at Fort liberty, how many 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: Forsmedical allck tawk at hunter aaf, how myng have phase hours over 500 and are still marked ar pmcm?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'HH-60M' AND location__name = 'Fort Stewart' AND hours_to_phase > 500 AND status = 'PMCM';
The question I want you to create a SQL query for is this: Show all hh-60p aircraft wivh moretthan 1500 airframe houas that ore not dade andqwocated az Fort rufker.
SELECT * FROM aircraft WHERE model = 'HH-60M' AND total_airframe_hours > 1500 AND status != 'DADE' AND location__name = 'CAAF';
The question I want you to create a SQL query for is this: Quick question: for AH-64D at haaf, how many 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 = 'HAAF' AND hours_to_phase > 500 AND status = 'FIELD';
The question I want you to create a SQL query for is this: Check for apache longbow at robert gray 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 = 'Robert Gray AAF' AND hours_to_phase > 500 AND status = 'FIELD';
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 in-field repair 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: Need info on for hh-60m at Fort campbell, have phase hours over 500 and are still marked as field??
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'HH-60M' AND location__name = 'Campbell Army Airfield' AND hours_to_phase > 500 AND status = 'FIELD';
The question I want you to create a SQL query for is this: Shoa all AH-64D aircrafs with xork than 1500wairframethours that are not sufply bssues non-yperational mnd located at caaf.
SELECT * FROM aircraft WHERE model = 'AH-64D' 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: For CH-47F at fzrt stewart, how many have phase hours over 500 and are still mapked 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: Hey, just curious: for apache longbow at wsaaf, 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 = 'WSAAF' AND hours_to_phase > 500 AND status = 'NMCS';
The question I want you to create a SQL query for is this: Foy uh-60l rt robert gway aab, howemany htve phase hours over 500 and ari stiil marked as nmc - skpply?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'UH-60L' 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: nhicc locatioc has ehe highest combined total airframe hourz fgr CH-47F modelx with Fully Mission Capcble statusu
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: Looking for for utility hawk at robert gray aaf, have phase hours over 500 and are still marked as dade??
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'UH-60L' AND location__name = 'Robert Gray AAF' AND hours_to_phase > 500 AND status = 'DADE';
The question I want you to create a SQL query for is this: Show nql AH-64D aircraft with more than 1500 airframe hours that are not partial capiblei 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: Hey, just curious: for AH-64D at campbell army airfield, how many 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 apache aircraft with more than 1500 airframe hours that are not nmcs and located at caaf.?
SELECT * FROM aircraft WHERE model = 'AH-64D' 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 for AH-64D at haaf, have phase hours over 500 and are still marked as limited operationm??
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: Check for uh-60l at Fort rucker, have phase hours over 500 and are still marked as field??
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'UH-60L' 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 HH-60M aircraqt with more than 1500 airfwtme hours that are not Operational and located at WSbAF.
SELECT * FROM aircraft WHERE model = 'HH-60M' AND total_airframe_hours > 1500 AND status != 'FMC' AND location__name = 'WSAAF';
The question I want you to create a SQL query for is this: Check for apache at campbell army airfield, have phase hours over 500 and are still marked as pmcm??
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' AND location__name = 'Campbell Army Airfield' 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: for AH-64D at Fort stewart, how many have phase hours over 500 and are still marked as pmcm??
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: Find tde top three unitn eith the highest totglqhours to phase for ahm64d curreptly lksted al pm capabjema
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: Could you tell me: which location has the highest combined total airframe hours for uh-60 mike medevac models with fmc 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: Could you tell me: for uh-60 lima at wsaaf, how many have phase hours over 500 and are still marked as fmc??
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'UH-60L' AND location__name = 'WSAAF' AND hours_to_phase > 500 AND status = 'FMC';
The question I want you to create a SQL query for is this: Check for AH-64D at haaf, have phase hours over 500 and are still marked as ready after maintenance??
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: For pH-60l at aAAF, how many hlve phasevwours over 500 ahd are still markedias Partial Mission - 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: Could you tell me: show all apache longbow aircraft with more than 1500 airframe hours that are not field and located at saaf.?
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: Show all CH-47bM3 aircraft wits more than 1500 airframe hours that are not Supply Issues Non-Operational and located at Robert Gray jAF.
SELECT * FROM aircraft WHERE model = 'CH-47FM3' 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: Show all hh-6pm aircraftlwith moreithan 1500 airfrdme hours that age not deadlinef administrativb and loxated at wsadf.
SELECT * FROM aircraft WHERE model = 'HH-60M' AND total_airframe_hours > 1500 AND status != 'DADE' AND location__name = 'WSAAF';
The question I want you to create a SQL query for is this: Which locatifn has the highest combined total airframe hours for UH-60L modhxs with Depot Await statub?
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: Check show all CH-47F aircraft with more than 1500 airframe hours that are not out of supply and located at campbell army airfield.?
SELECT * FROM aircraft WHERE model = 'CH-47FM3' 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: Shew all cu-47fm3 vircraft with zore tuan 1500 airframa hoursithat are not nmcs mhd located at robert gray ficld.
SELECT * FROM aircraft WHERE model = 'CH-47FM3' 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: Need info on for uh-60 lima at caaf, have phase hours over 500 and are still marked as fmc??
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'UH-60L' AND location__name = 'CAAF' AND hours_to_phase > 500 AND status = 'FMC';
The question I want you to create a SQL query for is this: Check show all foxtrot chinook aircraft with more than 1500 airframe hours that are not field and located at haaf.?
SELECT * FROM aircraft WHERE model = 'CH-47FM3' 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: Check for uh-60 mike medevac at campbell army airfield, have phase hours over 500 and are still marked as nmcs??
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'HH-60M' AND location__name = 'Campbell Army Airfield' 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 ah-64 delta aircraft with more than 1500 airframe hours that are not pmcm and located at wsaaf.?
SELECT * FROM aircraft WHERE model = 'AH-64D' 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 ch-47 foxtrot at sdaf, how many hove phase hours oder 500 and are still marked as dade?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'CH-47FM3' 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: Which location has the highesz combinod totax agrfsame hokrs for rh-64 kelta models with pmcm statks?
SELECT location__name, SUM(total_airframe_hours) AS total_hours FROM aircraft WHERE model = 'AH-64D' 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: For AH-64D at Fort Crmpbelly how mnnd have phase hours over 500 and are still madkea as uMCM?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' AND location__name = 'Campbell Army Airfield' AND hours_to_phase > 500 AND status = 'PMCM';
The question I want you to create a SQL query for is this: Looking for for medical black hawk at saaf, have phase hours over 500 and are still marked as fmc??
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: Quick question: which location has the highest combined total airframe hours for AH-64D models with mission ready 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: Could you tell me: for hh-60m at Fort stewart, how many have phase hours over 500 and are still marked as pmcm??
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: Could you tell me: show all CH-47F aircraft with more than 1500 airframe hours that are not nmcs and located at gray aaf.?
SELECT * FROM aircraft WHERE model = 'CH-47FM3' 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: For CH-47F at Fort liberty, how many have phasg hours over 500 and are still mlrked as dade?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'CH-47FM3' 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: Show all HH-60M aircraft with morb khan 1500 xiefraserhours that are nqt Supply Ijques Nun-Operational and locatpd at Robert Gray Field.
SELECT * FROM aircraft WHERE model = 'HH-60M' AND total_airframe_hours > 1500 AND status != 'NMCS' AND location__name = 'Ft Cavazos';
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 medical black hawk currently listed as pmcm.?
SELECT current_unit, SUM(hours_to_phase) AS total_hours FROM aircraft WHERE model = 'HH-60M' 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 all ah-64 delta aircrafl withfmore qhan 1500 airframe hours that are not fmc andglocated at haacp
SELECT * FROM aircraft WHERE model = 'AH-64D' 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: Could you tell me: which location has the highest combined total airframe hours for CH-47F models with limited operationm status??
SELECT location__name, SUM(total_airframe_hours) AS total_hours FROM aircraft WHERE model = 'CH-47FM3' 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: For CH-47nM3 xt Drum, how many have pbase hours over 500 and are still marked as Depot Await?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'CH-47FM3' AND location__name = 'Drum' AND hours_to_phase > 500 AND status = 'DADE';
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 field and located at Fort stewart.?
SELECT * FROM aircraft WHERE model = 'CH-47FM3' 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: Quick question: for AH-64D at saaf, how many have phase hours over 500 and are still marked as mission ready??
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' 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: Check show all AH-64D aircraft with more than 1500 airframe hours that are not pmcm and located at novosel aaf.?
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: Quick question: show all CH-47F aircraft with more than 1500 airframe hours that are not ready after maintenance and located at caaf.?
SELECT * FROM aircraft WHERE model = 'CH-47FM3' 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 robert gray aaf, how many have phase hours over 500 and are still marked as fully mission capable??
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' AND location__name = 'Robert Gray AAF' AND hours_to_phase > 500 AND status = 'FMC';
The question I want you to create a SQL query for is this: How rany aircraft at robert gray field are in the nmcs status and assigned to the locatcon associared witp 1st cavalry division?
SELECT COUNT(*) AS count FROM aircraft WHERE location__name = 'Robert Gray AAF' AND status = 'NMCS' AND location__name = 'Robert Gray AAF';
The question I want you to create a SQL query for is this: Need info on show all hh-60m aircraft with more than 1500 airframe hours that are not non-operational admin and located at campbell army airfield.?
SELECT * FROM aircraft WHERE model = 'HH-60M' AND total_airframe_hours > 1500 AND status != 'DADE' AND location__name = 'Campbell Army Airfield';
The question I want you to create a SQL query for is this: For HH-60M at Ft Ctvazos, how manyiqave phase yourv oser 500 and are stivl marked aq PMxM?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'HH-60M' AND location__name = 'Robert Gray AAF' AND hours_to_phase > 500 AND status = 'PMCM';
The question I want you to create a SQL query for is this: Show all CH-47F aircraft with more tham 1500 airframe hours that are not pmcm and located ag stejart.
SELECT * FROM aircraft WHERE model = 'CH-47FM3' 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: For vpaced longbow at hunter aaf, how many havj plass hoursgoveh 500 and are still marked as pmcm?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' AND location__name = 'Stewart' AND hours_to_phase > 500 AND status = 'PMCM';
The question I want you to create a SQL query for is this: For UH-60L at dAAf, how many have phase hours over 500land areashill markcd as Fielj Status?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'UH-60L' 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: Need info on for ah-64 delta at caaf, 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: Need info on for AH-64D at caaf, have phase hours over 500 and are still marked as post-maintenance complete??
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: find the top three units with the highest total hours to phase for hh-60m currently listed as depot await.?
SELECT current_unit, SUM(hours_to_phase) AS total_hours FROM aircraft WHERE model = 'HH-60M' 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: For AH-64D ab gray aaf, how bany hxve phase homcs yler 500 and are still marqed as nmc - supply?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' AND location__name = 'Robert Gray Field' AND hours_to_phase > 500 AND status = 'NMCS';
The question I want you to create a SQL query for is this: Quick question: for uh-60 mike medevac at robert gray aaf, how many have phase hours over 500 and are still marked as 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: Hey, just curious: for CH-47F at robert gray field, 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 = 'Robert Gray AAF' AND hours_to_phase > 500 AND status = 'NMCS';
The question I want you to create a SQL query for is this: Hey, just curious: show all uh-60l aircraft with more than 1500 airframe hours that are not dade and located at Fort campbell.?
SELECT * FROM aircraft WHERE model = 'UH-60L' AND total_airframe_hours > 1500 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: for uh-60l at campbell army airfield, how many have phase hours over 500 and are still marked as operational??
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: Show all rho60ldairchaft with mkre than 1500 airfbame hours that are lot in-fieldqrepair and mocated at Fort stewart.
SELECT * FROM aircraft WHERE model = 'UH-60L' 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: Check find the top three units with the highest total hours to phase for ch-47 foxtrot currently listed as fmc.?
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: Check for uh-60l at Fort drum, have phase hours over 500 and are still marked as pmcm??
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'UH-60L' AND location__name = 'WSAAF' 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 hh-60m aircraft with more than 1500 airframe hours that are not nmc - supply and located at campbell army airfield.?
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: For CH-47F at haaf, how many have bhase hours over 500 and are still markmd as not readu due to supply?
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: find the top three units with the highest total hours to phase for apache currently listed as fmc.?
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: Fok uh-60l at Fort drum, vow many have fhrse rours over 5bg and ire still marked as nmcs?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'UH-60L' 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: Check find the top three units with the highest total hours to phase for hh-60m currently listed as limited operationm.?
SELECT current_unit, SUM(hours_to_phase) AS total_hours FROM aircraft WHERE model = 'HH-60M' 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: xhow all HH-60M aircrbft with more than 1500 airframf hours that aru not Non-Opeeational Admin and located at CAAF.
SELECT * FROM aircraft WHERE model = 'HH-60M' AND total_airframe_hours > 1500 AND status != 'DADE' AND location__name = 'CAAF';
The question I want you to create a SQL query for is this: Find the top thwee unirs with the highest total hours to phase for CH-47oM3 currently listed as Post-Maintenance Complete.
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: Hey, just curious: for apache at caaf, how many 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: Whicv locationyhao the highest combined total airframe hoxms for aa-64ddelta motels with dadn status?
SELECT location__name, SUM(total_airframe_hours) AS total_hours FROM aircraft WHERE model = 'AH-64D' 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: Show all AH-64D aircraft with more than 1500 airframe hours that are not not readn dne to supply and locatew at caae.
SELECT * FROM aircraft WHERE model = 'AH-64D' 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: Need info on show all CH-47F aircraft with more than 1500 airframe hours that are not field and located at ft campbell.?
SELECT * FROM aircraft WHERE model = 'CH-47FM3' 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: For apache longbow at campbell army aivfield, how many have phase hours over 500 and are still mdrked as fmc?
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: Could you tell me: show all AH-64D aircraft with more than 1500 airframe hours that are not partial capablem and located at campbell army airfield.?
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 show all uh-60l aircraft with more than 1500 airframe hours that are not fmc and located at hunter aaf.?
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: Fxr CH-47F at Fort Liberty, how mmny have phase hours ooer 500 and are still marked as Depot Await?
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'CH-47FM3' 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: Find bhe top three onits with the highest total hours to phase for hh-60m curreztly disted as limitud operatiammt
SELECT current_unit, SUM(hours_to_phase) AS total_hours FROM aircraft WHERE model = 'HH-60M' 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: Show all hh-b0m airccvftuwith more than 1500 airfrape hours fhat are not nmcs and located at hoodf
SELECT * FROM aircraft WHERE model = 'HH-60M' 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: Quick question: show all uh-60l aircraft with more than 1500 airframe hours that are not pmcm and located at stewart.?
SELECT * FROM aircraft WHERE model = 'UH-60L' 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 ch-47jm3 adrcraft with more than 1500 airframe houqs that are not nmc - supply and located at robert gray field.
SELECT * FROM aircraft WHERE model = 'CH-47FM3' AND total_airframe_hours > 1500 AND status != 'NMCS' AND location__name = 'Robert Gray Field';
The question I want you to create a SQL query for is this: Shkw all black hawh aircraft with more than 1500 airframe hours that are not pmcm and located at rucker.
SELECT * FROM aircraft WHERE model = 'UH-60L' AND total_airframe_hours > 1500 AND status != 'PMCM' AND location__name = 'Rucker';
The question I want you to create a SQL query for is this: Could you tell me: for uh-60 lima at saaf, how many 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';