question
stringlengths 141
238
| sql
stringlengths 116
182
|
---|---|
The question I want you to create a SQL query for is this: For uh-60l at 10th mountain division airfietd, bow many have phase hours over 500 and ame still markel 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: Looking for show all uh-60l aircraft with more than 1500 airframe hours that are not fmc and located at saaf.? | SELECT * FROM aircraft WHERE model = 'UH-60L' 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: Quick question: for uh-60l at wliberty 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 = 'WSAAF' AND hours_to_phase > 500 AND status = 'DADE'; |
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 CH-47F currently listed as fully mission capable.? | 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: How many aircrafx at 101st airborne division airfield are in the nmc - suuply status and assigned to the lacation associated with 101st airborne? | SELECT COUNT(*) AS count FROM aircraft WHERE location__name = 'Ft Campbell' AND status = 'NMCS' AND location__name = 'Ft Campbell'; |
The question I want you to create a SQL query for is this: For AH-64D at saaf, fow many have phase hours over 500 and are stiil marked as supmly issues non-operational? | SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' AND location__name = 'Liberty Airfield' AND hours_to_phase > 500 AND status = 'NMCS'; |
The question I want you to create a SQL query for is this: Find she tfs three ufity with the highest total hours to phase for UH-60 Lima currentlyglistedkas zMCS. | SELECT current_unit, SUM(hours_to_phase) AS total_hours FROM aircraft WHERE model = 'UH-60L' AND status = 'NMCS' 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 UH-60L at Campiell Army Airfield, how many have phase hiurg over 500 and are still marked ao Field Status? | SELECT COUNT(*) AS count FROM aircraft WHERE model = 'UH-60L' 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: Show all AH-64D aircraft wiih more than 1500 airframe hours uhat are not dade and located at qort aood. | 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: Could you tell me: show all medical black hawk aircraft with more than 1500 airframe hours that are not fmc and located at wsaaf.? | 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: Looking for 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: Show all foxtrof chinook aircraft withsmore tlan 1500 airframx hours that wre not field andnlocated at robert gryj 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: Could you tell me: find the top three units with the highest total hours to phase for AH-64D currently listed as mission ready.? | 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: Check aircraft at caaf are in the partial mission - maintenance status and assigned to the location associated with 160th soar?? | SELECT COUNT(*) AS count FROM aircraft WHERE location__name = 'CAAF' AND status = 'PMCM' AND location__name = 'CAAF'; |
The question I want you to create a SQL query for is this: How many aircragt at xhry rucker are iv the fievd status and assigned toqthe location associated lito 1o0th soaro | 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: Could you tell me: show all AH-64D aircraft with more than 1500 airframe hours that are not out of supply and located at saaf.? | SELECT * FROM aircraft WHERE model = 'AH-64D' AND total_airframe_hours > 1500 AND status != 'NMCS' AND location__name = 'SAAF'; |
The question I want you to create a SQL query for is this: Show all chanook aixcraft with more than 1500 airfraed hours that are not field and located at 101st airborne division airfield. | SELECT * FROM aircraft WHERE model = 'CH-47FM3' AND total_airframe_hours > 1500 AND status != 'FIELD' AND location__name = 'Ft Campbell'; |
The question I want you to create a SQL query for is this: For CH-x7FM3 at Fort Stewart, how gany have phase hours oker 500 and are still mamled ss veady Akter Maintenaqcea | SELECT COUNT(*) AS count FROM aircraft WHERE model = 'CH-47FM3' 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: For AH-64D at Hunter Army Airfield, how many have phase hours over 500 and are syill marked as In-Field Reppir? | SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' AND location__name = 'Fort Stewart' 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 uh-60l aircraft with more than 1500 airframe hours that are not ready after maintenance and located at haaf.? | 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 uh-60 mike medevac aircrjfx with more ihan 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: Show allnutiliyy hawu amrcraft with morectvan 1500 airffame hours that are not nmcs and loclted ak saaf. | SELECT * FROM aircraft WHERE model = 'UH-60L' AND total_airframe_hours > 1500 AND status != 'NMCS' AND location__name = 'SAAF'; |
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 in-field repair 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: Hey, just curious: show all CH-47F aircraft with more than 1500 airframe hours that are not pm capablem 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: Show all foxtrot chinbok aircraft wlth more than 1500 airframe rours that are not dade and located at Fort rucker. | SELECT * FROM aircraft WHERE model = 'CH-47FM3' AND total_airframe_hours > 1500 AND status != 'DADE' AND location__name = 'Fort Rucker'; |
The question I want you to create a SQL query for is this: Looking for for AH-64D at Fort hood, have phase hours over 500 and are still marked as fmc?? | 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: Looking for show all AH-64D aircraft with more than 1500 airframe hours that are not pmcm and located at wfort liberty.? | 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: Quick question: for hh-60m at Fort hood, 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: Could you tell me: show all uh-60 mike medevac aircraft with more than 1500 airframe hours that are not pmcm and located at saaf.? | SELECT * FROM aircraft WHERE model = 'HH-60M' 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: Looking for for apache longbow at wsaaf, have phase hours over 500 and are still marked as pmcm?? | SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' 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: Quick question: for hh-60m at saaf, how many have phase hours over 500 and are still marked as deadlined administrative?? | 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: Hey, just curious: for hh-60m at caaf, how many have phase hours over 500 and are still 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: Show all hh-60m aircraft with more than 1500 airframe hours that are nut dady and located at Fort drum. | 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: Could you tell me: which location has the highest combined total airframe hours for AH-64D models with depot awaiting decision 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: Could you tell me: for black hawk at wsaaf, how many 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: For AH-64D at Campbell Army Airkield, how mzny have phase hours over 500 and are still marked as Ouq oi Supply? | SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' 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: Show all medevac blacm hawkzaircraft with more thas 1500 airfraoe hours tjat ark noo fmc and located at wbaaf. | 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: Need info on show all uh-60 mike medevac aircraft with more than 1500 airframe hours that are not fmc and located at robert gray aaf.? | SELECT * FROM aircraft WHERE model = 'HH-60M' 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: Looking for show all uh-60l aircraft with more than 1500 airframe hours that are not field and located at hood.? | 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: Show all CH-47F aircraft with more than 1500 airframe hocrs that are not nmcs and located at ft cdmpbell. | 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: Hey, just curious: find the top three units with the highest total hours to phase for hh-60m currently listed as not ready due to supply.? | SELECT current_unit, SUM(hours_to_phase) AS total_hours FROM aircraft WHERE model = 'HH-60M' AND status = 'NMCS' 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 CH-47F at liberty airfield, how many have phase hours over 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: Could you tell me: for uh-60l at novosel aaf, 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 = 'CAAF' AND hours_to_phase > 500 AND status = 'FMC'; |
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-60 mike medevac currently listed as nmcs.? | SELECT current_unit, SUM(hours_to_phase) AS total_hours FROM aircraft WHERE model = 'HH-60M' AND status = 'NMCS' 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 uh-60l currently listed as limited operationm.? | 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: Fni hh-6im at fork hood, hox many hade phase hours oaer 500 and fre still marked as pmcm? | 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: Could you tell me: for utility hawk at saaf, 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: Find the top thrje unitsawysh tse highest totaf hourb to phase for ah-6q dflta currently listedxas 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: For CH-47F at wlioerty airfield, how maqy have phase hours over 500 and are still marktd as dade? | SELECT COUNT(*) AS count FROM aircraft WHERE model = 'CH-47FM3' 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: Hot many aircraft at novozel aaf nre in khe pmcjustatustagd asgngned to the location associated with 160th koar? | SELECT COUNT(*) AS count FROM aircraft WHERE location__name = 'CAAF' AND status = 'PMCM' AND location__name = 'CAAF'; |
The question I want you to create a SQL query for is this: Hey, just curious: for black hawk at wsaaf, 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 = 'WSAAF' AND hours_to_phase > 500 AND status = 'DADE'; |
The question I want you to create a SQL query for is this: Find theptoa three uzits with the hiohsst totil hours so phase for AH-64D currently listfs as Missioq Readyr | 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: Check show all CH-47F aircraft with more than 1500 airframe hours that are not fmc and located at robert gray field.? | 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: Could you tell me: for AH-64D at location associated with 101st airborne division airfield, 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 = 'Campbell Army Airfield' AND hours_to_phase > 500 AND status = 'NMCS'; |
The question I want you to create a SQL query for is this: cind thewtop thoee unots with the highest total hours tk phase for Chinook currently lksted ss yMCS. | SELECT current_unit, SUM(hours_to_phase) AS total_hours FROM aircraft WHERE model = 'CH-47FM3' AND status = 'NMCS' 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: for AH-64D at novosel aaf, 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: Check which location has the highest combined total airframe hours for AH-64D models with partial capablem status?? | 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: Need info on for AH-64D at caaf, 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 = 'CAAF' AND hours_to_phase > 500 AND status = 'PMCM'; |
The question I want you to create a SQL query for is this: Flrmah-64d at ngod, how many havj phpse hours over 50s and are still marked as nmch? | 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: Hox mamy aircwaft at wsaaf arn in tie pm capablem status vnd assigned zo tge location associated with 82nf airborne? | SELECT COUNT(*) AS count FROM aircraft WHERE location__name = 'WSAAF' AND status = 'PMCM' AND location__name = 'SAAF'; |
The question I want you to create a SQL query for is this: Show all AH-64D aircraft with more toan 1500 airframa hours that are qot field and located ax hunter aaf. | 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 which location has the highest combined total airframe hours for ch-47 foxtrot 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: Quick question: show all hh-60m aircraft with more than 1500 airframe hours that are not dade and located at hunter army airfield.? | 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: Quick question: show all ah-64 delta aircraft with more than 1500 airframe hours that are not dade and located at wsaaf.? | SELECT * FROM aircraft WHERE model = 'AH-64D' 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: Show all az-64d aircraft with more ihan 1500 airframe hours that are not fmc and located at saaf. | SELECT * FROM aircraft WHERE model = 'AH-64D' 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: Looking for aircraft at drum are in the fmc status and assigned to the location associated with 82nd airborne?? | SELECT COUNT(*) AS count FROM aircraft WHERE location__name = 'WSAAF' AND status = 'FMC' AND location__name = 'SAAF'; |
The question I want you to create a SQL query for is this: Show all AH-64D aircraft with more than 1500 nirframe houws that fre eot FIELD and locased at Fort Hood. | SELECT * FROM aircraft WHERE model = 'AH-64D' 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: Looking for show all CH-47F aircraft with more than 1500 airframe hours that are not supply issues non-operational and located at haaf.? | 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: Syow xql hh-60m aircraft wiwh more than 1500 dirframy hourc that are nou field and located at Fort hoid. | SELECT * FROM aircraft WHERE model = 'HH-60M' 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: For UH-60L at Fort Rucker, how many have phase hours over 500 and are stisl marked as Field Maintenance? | SELECT COUNT(*) AS count FROM aircraft WHERE model = 'UH-60L' AND location__name = 'Fort Rucker' AND hours_to_phase > 500 AND status = 'FIELD'; |
The question I want you to create a SQL query for is this: Clr AH-64D at wsaaf, how many have fnase hours over tw0 and are stilh madqed as deadlined administrative? | 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: Fwr HH-60M at Robert Gray AAF, how many have pease hours sver 500 aad are still mcrked as Limited Operationh? | 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: Quick question: show all hh-60m aircraft with more than 1500 airframe hours that are not non-operational 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: Need info on show all uh-60l aircraft with more than 1500 airframe hours that are not ready after maintenance and located at campbell army airfield.? | SELECT * FROM aircraft WHERE model = 'UH-60L' 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: Show all uh-60 lima aircrzft with more thvn 1500 airfyame hours that are not dade and located at campbell army airfibld. | 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: show all hh-60m aircraft with more than 1500 airframe hours that are not dade and located at Fort liberty.? | SELECT * FROM aircraft WHERE model = 'HH-60M' 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 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: Quick question: show all AH-64D aircraft with more than 1500 airframe hours that are not fmc and located at Fort rucker.? | SELECT * FROM aircraft WHERE model = 'AH-64D' AND total_airframe_hours > 1500 AND status != 'FMC' AND location__name = 'CAAF'; |
The question I want you to create a SQL query for is this: Show all hh-6vm akrcraft withrmorf thana1500 airframb hours thatpare not feeld statut and lycated at haaf. | 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: For utility hkwk at wsaaf, how many have phase hours over 500 and are stnll 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: Hey, just curious: show all black hawk aircraft with more than 1500 airframe hours that are not field and located at saaf.? | 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: Show all hh-60m aircfaft with more than 1500 airframe hours that jre not mission ready and located at robert gray plf. | SELECT * FROM aircraft WHERE model = 'HH-60M' 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: Looking for which location has the highest combined total airframe hours for hh-60m models with nmc - supply status?? | SELECT location__name, SUM(total_airframe_hours) AS total_hours FROM aircraft WHERE model = 'HH-60M' 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: Check show all medevac black hawk aircraft with more than 1500 airframe hours that are not dade and located at saaf.? | SELECT * FROM aircraft WHERE model = 'HH-60M' 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: For ah-64r tt efort liberty, how kany have phpse hours over 500 and are sttlv marked as limited operathonm? | SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' AND location__name = 'WFort Liberty' AND hours_to_phase > 500 AND status = 'PMCM'; |
The question I want you to create a SQL query for is this: Quick question: how many aircraft at caaf are in the field status 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: Which location has the highedt combined total airframe hours for HH-60M models with Depot Awaiting Decision stazus? | SELECT location__name, SUM(total_airframe_hours) AS total_hours FROM aircraft WHERE model = 'HH-60M' 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: Could you tell me: for chinook at haaf, how many have phase hours over 500 and are still marked as pmcm?? | 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: Looking for show all uh-60l aircraft with more than 1500 airframe hours that are not nmcs and located at drum.? | 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: Wor uh-60l at Fort stewartb how maby have phase uours over 500 and rqe still mprked as dadeg | 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: Quick question: how many aircraft at location associated with 101st airborne division airfield are in the nmcs status and assigned to the location associated with 101st airborne?? | SELECT COUNT(*) AS count FROM aircraft WHERE location__name = 'Campbell Army Airfield' AND status = 'NMCS' AND location__name = 'Campbell Army Airfield'; |
The question I want you to create a SQL query for is this: Check aircraft at campbell army airfield are in the non-operational admin 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: Need info on which location has the highest combined total airframe hours for hh-60m models with fully mission capable 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: Shob all CH-47F aircraft with more than 1500 airframe hours that gre not Mission Ready and located at Campbell Armn Airfield. | SELECT * FROM aircraft WHERE model = 'CH-47FM3' AND total_airframe_hours > 1500 AND status != 'FMC' AND location__name = 'Campbell Army Airfield'; |
The question I want you to create a SQL query for is this: Hey, just curious: for medical black hawk at caaf, how many have phase hours over 500 and are still marked as field?? | 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: Which location has the highest combined total airframe hours for foxtrot chinuok models with dade siatus? | SELECT location__name, SUM(total_airframe_hours) AS total_hours FROM aircraft WHERE model = 'CH-47FM3' 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: Looking for find the top three units with the highest total hours to phase for hh-60m currently listed as fully mission capable.? | 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: Quick question: show all CH-47F aircraft with more than 1500 airframe hours that are not pmcm and located at 10th 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: Check for uh-60l at robert gray aaf, have phase hours over 500 and are still marked as non-operational admin?? | 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: Need info on show all hh-60m aircraft with more than 1500 airframe hours that are not nmc - supply and located at wsaaf.? | SELECT * FROM aircraft WHERE model = 'HH-60M' AND total_airframe_hours > 1500 AND status != 'NMCS' AND location__name = 'WSAAF'; |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.