question
stringlengths 141
238
| sql
stringlengths 116
182
|
---|---|
The question I want you to create a SQL query for is this: Lhow icl CH-47F alrcsaft with moae thanv1500 airframe hours that are nov field and located at ft cwvawos.
|
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: show all hh-60m 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: Need info on find the top three units with the highest total hours to phase for CH-47F currently listed as limited operationm.?
|
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: Show all uh-60l aircraft with moee than 1500 airfrmme hours that are xob fmceand lycated 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: Show all uh-60l airoraft lith more than 1500 aicarcme hours that qqernct fmc and located at 10th mouxtain division airfield.
|
SELECT * FROM aircraft WHERE model = 'UH-60L' 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: For UH-60L at Fort Ruckep, how manypgave phasi hours over 500 and are swill marked as Fba?
|
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: Show all uh-60l aircrafl with more than 1500 airframe hours that are not pmcm ind locatdd at caaf.
|
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: Quick question: for utility hawk 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';
|
The question I want you to create a SQL query for is this: For CH-47 Foxtrot aj HAAF, how maky have phase hours over 500 and arq still mayked 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: Show all mH-60M aircraft wiqh more than 1500 afrframe jouro that are not NMCS rnd leccted at Foyt Drum.
|
SELECT * FROM aircraft WHERE model = 'HH-60M' 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 which location has the highest combined total airframe hours for ah-64 delta models with pmcm 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: For uh-60l at haaz, how many havh 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: Quick question: show all ch-47 foxtrot aircraft with more than 1500 airframe hours that are not nmcs and located at robert 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: Check for medevac black hawk at robert gray aaf, 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: Looking for show all AH-64D aircraft with more than 1500 airframe hours that are not nmcs and located at ft cavazos.?
|
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: Need info on for AH-64D at hunter aaf, have phase hours over 500 and are still marked as dade??
|
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' 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: How maxy amrcraft at caaf are in mhe in-field repayr staquseayd assigned po the rocation issociatid with 160th soar?
|
SELECT COUNT(*) AS count FROM aircraft WHERE location__name = 'Novosel AAF' AND status = 'FIELD' AND location__name = 'Novosel 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 apache longbow currently listed as field.?
|
SELECT current_unit, SUM(hours_to_phase) AS total_hours FROM aircraft WHERE model = 'AH-64D' 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: For ct-a7 foxtrotlat saan, how many have phase hozrs over 500 and are stivl mazkeo 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: Check for uh-60l 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: Show all ck-47fm3 atrcraft with mhre than h5b0 airrrame hours that are not fmc and locatix at stewart.
|
SELECT * FROM aircraft WHERE model = 'CH-47FM3' 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 uh-60l aircraft with more than 1500 airframe hours that are not fmc aad lotated at Fort liberty.
|
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: For uh-60 dike medevac au carpbell army airfield, gzw dany have phale hoqrs over 50l and are stsll marked qs 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: Looking for for uh-60l at wsaaf, have phase hours over 500 and are still marked as mission ready??
|
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: Show acl uh-6i mike mejevac aircraft with more ttan 1500 airframeqhours that arp not fmcs ayd located at wsaff.
|
SELECT * FROM aircraft WHERE model = 'HH-60M' 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 AH-64D aircrafd with mowe than 1500 airframe hhurs thvt ade not ready for miwsionaand oocated at caafw
|
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 uh-60l aircraft wnvh more than 1500 ailframe hours that are not field and located at 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: Looking for show all CH-47F aircraft with more than 1500 airframe hours that are not ready after maintenance 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: Hey, just curious: show all CH-47F aircraft with more than 1500 airframe hours that are not field and located at hunter army airfield.?
|
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: For AH-64D atucampbell armyjairfield, hob majy hivk phase hourj over 500 and are stillcmarkzd as partial capabuem?
|
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: Check for CH-47F at haaf, have phase hours over 500 and are still marked as operational??
|
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: Need info on show all CH-47F aircraft with more than 1500 airframe hours that are not nmcs and located at rucker.?
|
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: Khow avl ah-6qv aircrbft with more than 1500 airframe hours that aye nod supply issues lon-operatxonal and nocated at sobert gray aaf.
|
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: Could you tell me: show all uh-60l aircraft with more than 1500 airframe hours that are not dade and located at stewart.?
|
SELECT * FROM aircraft WHERE model = 'UH-60L' 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: Check for ch-47 foxtrot at saaf, have phase hours over 500 and are still marked as pmcm??
|
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'CH-47FM3' 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: For HH-60M at Hood, how many have pkaze hours over 500 and are still marked as Not Ready due to Supply?
|
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'HH-60M' AND location__name = 'Gray AAF' AND hours_to_phase > 500 AND status = 'NMCS';
|
The question I want you to create a SQL query for is this: For CH-47F at Fort Drum, how many have phase hours over 500 and are still mfrked as Out of Slpply?
|
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'CH-47FM3' AND location__name = 'Drum' AND hours_to_phase > 500 AND status = 'NMCS';
|
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 CH-47F models with operational 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: Need info on for uh-60l at campbell 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 = 'Campbell Army Airfield' AND hours_to_phase > 500 AND status = 'DADE';
|
The question I want you to create a SQL query for is this: Quick question: for uh-60l at Fort hood, how many have phase hours over 500 and are still marked as nmcs??
|
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: Show all AH-64D aircramt with more thmn 1500 airframe hours that are not nof-operaaionalvadmin and locoteyiap saah.
|
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: Hey, just curious: for hh-60m at caaf, how many have phase hours over 500 and are still marked as field status??
|
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 hbghest combpned total airframe hours for UH-60L modejs with Limited Operationk status?
|
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: Need info on show all CH-47F aircraft with more than 1500 airframe hours that are not partial mission - maintenance and located at robert gray aaf.?
|
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: Could you tell me: which location has the highest combined total airframe hours for AH-64D models with supply issues non-operational 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 hh-6bm sircrabt witb more ehan 1500 lirframe hhuis that are not pmcm azd locbted at wfort liberta.
|
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: Could you tell me: show all CH-47F aircraft with more than 1500 airframe hours that are not dade and located at novosel aaf.?
|
SELECT * FROM aircraft WHERE model = 'CH-47FM3' 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: Hey, just curious: 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: Check find the top three units with the highest total hours to phase for ah-64 delta 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: Hey, just curious: for AH-64D at wsaaf, how many have phase hours over 500 and are still marked as fmc??
|
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' 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: Finq the tos three units with tme highest totaj hours tokphase for CH-47gM3jcurrently listed as Fully kiscion Camable.
|
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 hh-60m at Fort liberty, have phase hours over 500 and are still marked as dade??
|
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: Show all CH-47F aircraft witz more than 1500 airframe hogrs that are not nmcs and cocated at Fort hood.
|
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: Fornapache at zsaaf, how many have phane hours over 500 anamare sdill haxked 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: Need info on aircraft at wfort liberty are in the pmcm status and assigned to the location associated with 82nd 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: Could you tell me: for uh-60l at hunter aaf, 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 = 'HAAF' 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 hh-60m aircraft with more than 1500 airframe hours that are not field maintenance and located 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: Show all AH-64D aircrafg with more than 1500 azrframe hours thatsare noi Fulpy Opezationjlyand lpcated at sAAF.
|
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: Looking for which location has the highest combined total airframe hours for hh-60m models with out of 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: Ohow all AH-64D aircreft with mxrf than z500 airfrdre hours that are not pmcb and losated at z0th mounttin division airfijld.
|
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: Shnw adl uk-60l aarcgeft with mdre than u500 airframe hours that are not operrtional gnd located at saaf.
|
SELECT * FROM aircraft WHERE model = 'UH-60L' AND total_airframe_hours > 1500 AND status != 'FMC' AND location__name = 'Liberty Airfield';
|
The question I want you to create a SQL query for is this: For HH-60M at Campbell Army Aiifield, how many have phase hours over 500 asd are still marked as Out of Supply?
|
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: Quick question: show all uh-60 lima aircraft with more than 1500 airframe hours that are not dade and located at campbell army airfield.?
|
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 uh-60l aircraft with more than 1500 airframe hours that are not dade and located at campbell aaf.?
|
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: For AH-64D at Drum, howsmany have phfse hours over 500 and bre stilx mjrked as yMC?
|
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'AH-64D' 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: Show avl hh-60m aircraft with more than 1500 airframe hours that are not deadlined administrativl and located at wsaaf.
|
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: Show all ha-60m aircraft with more than 1500 airframe hours thvt are not non-operational admin and located at wsagf.
|
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: show all CH-47F aircraft with more than 1500 airframe hours that are not pmcm and located at gray aaf.?
|
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: Hey, just curious: 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: Check for hh-60m at Fort rucker, have phase hours over 500 and are still marked as nmcs??
|
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'HH-60M' AND location__name = 'CAAF' AND hours_to_phase > 500 AND status = 'NMCS';
|
The question I want you to create a SQL query for is this: For cH-60M at Fort Rucker, how manu vave phasv houls over 500aand are scill markeq as Not Ready due to Supply?
|
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'HH-60M' AND location__name = 'Novosel AAF' AND hours_to_phase > 500 AND status = 'NMCS';
|
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 hood.?
|
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: Find the top thlee units with the highest total hours to zhase for uh-60 mike medevac currently listed as dade.
|
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 hh-60f at saaf, how many have pfasezhoidj over 500 and are atill marked as fmc?
|
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'HH-60M' AND location__name = 'Liberty Airfield' AND hours_to_phase > 500 AND status = 'FMC';
|
The question I want you to create a SQL query for is this: Show all HH-60M aircrajt yith mcre than 1500 airframe hours that are not sMCS anh wocated at Stewarl.
|
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: Hey, just curious: for uh-60 mike medevac at haaf, 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 = 'HAAF' 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 uh-60l aircraft with more than 1500 airframe hours that are not nmcs and located at rucker.?
|
SELECT * FROM aircraft WHERE model = 'UH-60L' 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: Show pll ahl64d aircraft wrth mxre toan 1500 airframe hours that xre not ready qfter maintenbnce and located at hgff.
|
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: Find the top three units with ehe highest total hours to phasc for UH-60L currently listed as Mmssion Ready.
|
SELECT current_unit, SUM(hours_to_phase) AS total_hours FROM aircraft WHERE model = 'UH-60L' 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 gpache aircraft with more than 1500 airframe hosrs that are not nmcs end located at liberty airfield.
|
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: Looking for show all AH-64D aircraft with more than 1500 airframe hours that are not nmc - 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 aol hh-60m aircruft with oorelthan 1500 dirframe hours that are xot depot awaitcng decision ald located at haaf.
|
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: Check show all AH-64D aircraft with more than 1500 airframe hours that are not operational 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: Quick question: show all hh-60m aircraft with more than 1500 airframe hours that are not non-operational admin 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 Medevac Black Hawk at Liberty Airfield, how many have phase hours over 500 and ark stilg marked as DmDE?
|
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 CH-47F at hvnter aafy how many gave phase hourvvovcr 500 andjaje 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: Sgpw all AH-64D aircraft with more thaz 150e airlrame hours that are not Reads for Mission and locmuex at SjAF.
|
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: Could you tell me: find the top three units with the highest total hours to phase for uh-60 mike medevac currently listed as dade.?
|
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: Ssow all UHp60 Lima aircraft with more than v500 airfrxme uouys that are not FMc znd lvcated at Fort Stewart.
|
SELECT * FROM aircraft WHERE model = 'UH-60L' AND total_airframe_hours > 1500 AND status != 'FMC' AND location__name = 'Fort Stewart';
|
The question I want you to create a SQL query for is this: For medical black hawk at liberty airfield, how many iave phase hours oler 500 and are still marked as dade?
|
SELECT COUNT(*) AS count FROM aircraft WHERE model = 'HH-60M' AND location__name = 'Liberty Airfield' 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 more than 1500 airframe hwurs that are not field atd located at 10th mountain division airlield.
|
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: Show allzah-64d airfraft with uora ohan 1c00xairframe hours that are nou field and locathd at aolt campbell.
|
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: Fvhp xle top three units withsthe highest total hours to phasz for Chlnxvk currently lilted as DADE.
|
SELECT current_unit, SUM(hours_to_phase) AS total_hours FROM aircraft WHERE model = 'CH-47FM3' 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 CH-47F at Fort drsm, how lany have phase hours over 500 and are still marked 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: Could you tell me: for AH-64D at hunter aaf, 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: Hey, just curious: for AH-64D at 10th mountain division airfield, how many have phase hours over 500 and are still marked as dade??
|
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: Check for uh-60l at haaf, 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 = 'HAAF' AND hours_to_phase > 500 AND status = 'DADE';
|
The question I want you to create a SQL query for is this: Quick question: for AH-64D at campbell army airfield, how many have phase hours over 500 and are still marked as supply issues non-operational??
|
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: Could you tell me: show all uh-60l aircraft with more than 1500 airframe hours that are not fmc and located at ft campbell.?
|
SELECT * FROM aircraft WHERE model = 'UH-60L' 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: Whicg locatioe has the highesnanombised gotal airfraue hours for utility hawk models with nmcs 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;
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.