query stringlengths 76 524 | question stringlengths 7 126 | answer stringlengths 54 8.89k | table_names list | tables list | source stringlengths 979 15.9k | target stringlengths 28 10.1k |
|---|---|---|---|---|---|---|
SELECT DISTINCT food_service_1.meal_description FROM food_service AS food_service_1 WHERE food_service_1.meal_code = 'D/S' | what does d/s stand for for meals | {"columns":["meal_description"],"index":[0,1],"data":[["SNACK"],["DINNER"]]} | [
"food_service"
] | [
"{\"columns\":[\"meal_code\",\"meal_number\",\"compartment\",\"meal_description\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,7... | what does d/s stand for for meals <table_name> : food_service col : meal_code | meal_number | compartment | meal_description row 1 : B | 1 | COACH | BREAKFAST row 2 : B | 1 | FIRST | BREAKFAST row 3 : B/ | 1 | FIRST | BREAKFAST row 4 : B/BS | 1 | COACH | BREAKFAST row 5 : B/BS | 1 | FIRST | BREAKFAST row 6 : B/BS | 2 |... | col : meal_description row 1 : SNACK row 2 : DINNER |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , airport AS airport_1 WHERE ground_service_1.transport_type = 'LIMOUSINE' AND ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = 'PIT' | is there limo service at pittsburgh airport | {"columns":["transport_type"],"index":[0],"data":[["LIMOUSINE"]]} | [
"airport",
"ground_service"
] | [
"{\"columns\":[\"airport_code\",\"airport_name\",\"airport_location\",\"state_code\",\"country_name\",\"time_zone_code\",\"minimum_connect_time\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],\"data\":[[... | is there limo service at pittsburgh airport <table_name> : airport col : airport_code | airport_name | airport_location | state_code | country_name | time_zone_code | minimum_connect_time row 1 : ATL | WILLIAM B. HARTSFIELD ATLANTA INTL. | ATLANTA, GEORGIA | GA | USA | EST | 55 row 2 : BNA | NASHVILLE INTERNATIONAL | N... | col : transport_type row 1 : LIMOUSINE |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 , city AS city_2 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DALLAS' OR ground_service_1.city_code = city_2.city_code AND city_2.city_name = 'FORT WORTH' | in dallas fort worth i would like information on ground transportation | {"columns":["transport_type"],"index":[0,1],"data":[["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | in dallas fort worth i would like information on ground transportation <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA... | col : transport_type row 1 : LIMOUSINE row 2 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , airport AS airport_1 , airport_service AS airport_service_1 , city AS city_1 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = airport_service_1.airport_code AND airport_service_1.city_code ... | can you give me information on transportation from the airport in philadelphia to downtown philadelphia | {"columns":["transport_type"],"index":[0,1,2,3],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RAPID TRANSIT"],["RENTAL CAR"]]} | [
"city",
"airport",
"airport_service",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | can you give me information on transportation from the airport in philadelphia to downtown philadelphia <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST ro... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RAPID TRANSIT row 4 : RENTAL CAR |
SELECT DISTINCT airline_1.airline_code FROM airline AS airline_1 WHERE 1 = 1 | show me airline abbreviations | {"columns":["airline_code"],"index":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],"data":[["2V"],["3J"],["7V"],["9E"],["9L"],["9N"],["9X"],["AA"],["AC"],["AR"],["AS"],["AT"],["BA"],["BE"],["CO"],["CP"],["DH"],["DL"],["EV"],["FF"],["GX"]... | [
"airline"
] | [
"{\"columns\":[\"airline_code\",\"airline_name\",\"note\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"2V\",\"NORTHEAST EXPRESS REGIONAL AIRLINES\",\"NATL AIR TRANSPORTATION ASSOC, INC.\"],[\"3J\",\"AIR ALLI... | show me airline abbreviations <table_name> : airline col : airline_code | airline_name | note row 1 : 2V | NORTHEAST EXPRESS REGIONAL AIRLINES | NATL AIR TRANSPORTATION ASSOC, INC. row 2 : 3J | AIR ALLIANCE | row 3 : 7V | ALPHA AIR | row 4 : 9E | EXPRESS AIRLINES I, INC. | row 5 : 9L | COLGAN AIR | row 6 : 9N | TRA... | col : airline_code row 1 : 2V row 2 : 3J row 3 : 7V row 4 : 9E row 5 : 9L row 6 : 9N row 7 : 9X row 8 : AA row 9 : AC row 10 : AR row 11 : AS row 12 : AT row 13 : BA row 14 : BE row 15 : CO row 16 : CP row 17 : DH row 18 : DL row 19 : EV row 20 : FF row 21 : GX row 22 : HP row 23 : HQ row 24 : KW row 25 : LH row 26 : M... |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , airport AS airport_1 , airport_service AS airport_service_1 , city AS city_1 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = airport_service_1.airport_code AND airport_service_1.city_code ... | what ground transportation is available at the atlanta airport | {"columns":["transport_type"],"index":[0,1,2,3],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RAPID TRANSIT"],["RENTAL CAR"]]} | [
"city",
"airport",
"airport_service",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | what ground transportation is available at the atlanta airport <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST r... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RAPID TRANSIT row 4 : RENTAL CAR |
SELECT DISTINCT aircraft_1.aircraft_code FROM aircraft AS aircraft_1 WHERE aircraft_1.basic_type = '737' AND aircraft_1.manufacturer = 'BOEING' | how many passengers can a boeing 737 hold | {"columns":["aircraft_code"],"index":[0,1,2,3,4],"data":[["733"],["734"],["735"],["737"],["73S"]]} | [
"aircraft"
] | [
"{\"columns\":[\"aircraft_code\",\"aircraft_description\",\"manufacturer\",\"basic_type\",\"engines\",\"propulsion\",\"wide_body\",\"wing_span\",\"length\",\"weight\",\"capacity\",\"pay_load\",\"cruising_speed\",\"range_miles\",\"pressurized\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,2... | how many passengers can a boeing 737 hold <table_name> : aircraft col : aircraft_code | aircraft_description | manufacturer | basic_type | engines | propulsion | wide_body | wing_span | length | weight | capacity | pay_load | cruising_speed | range_miles | pressurized row 1 : 100 | FOKKER 100 | FOKKER | 100 | 2 | JET |... | col : aircraft_code row 1 : 733 row 2 : 734 row 3 : 735 row 4 : 737 row 5 : 73S |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DENVER' | ground transportation denver | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | ground transportation denver <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO | IL | USA |... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT airport_service_1.miles_distant FROM airport_service AS airport_service_1 , airport AS airport_1 , city AS city_1 WHERE airport_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = 'YYZ' AND airport_service_1.city_code = city_1.city_code AND city_1.city_name = 'TORONTO' | what is the distance from toronto international airport to toronto | {"columns":["miles_distant"],"index":[0],"data":[[18]]} | [
"city",
"airport_service",
"airport"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | what is the distance from toronto international airport to toronto <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | E... | col : miles_distant row 1 : 18 |
SELECT DISTINCT airport_1.minimum_connect_time FROM airport AS airport_1 WHERE airport_1.airport_code = 'IAH' | what is the minimum connection time for houston intercontinental | {"columns":["minimum_connect_time"],"index":[0],"data":[[45]]} | [
"airport"
] | [
"{\"columns\":[\"airport_code\",\"airport_name\",\"airport_location\",\"state_code\",\"country_name\",\"time_zone_code\",\"minimum_connect_time\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],\"data\":[[... | what is the minimum connection time for houston intercontinental <table_name> : airport col : airport_code | airport_name | airport_location | state_code | country_name | time_zone_code | minimum_connect_time row 1 : ATL | WILLIAM B. HARTSFIELD ATLANTA INTL. | ATLANTA, GEORGIA | GA | USA | EST | 55 row 2 : BNA | NASHVI... | col : minimum_connect_time row 1 : 45 |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'WESTCHESTER COUNTY' | show me ground transportation in westchester county | {"columns":["transport_type"],"index":[0,1],"data":[["AIR TAXI OPERATION"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | show me ground transportation in westchester county <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , airport AS airport_1 , airport_service AS airport_service_1 , city AS city_1 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = airport_service_1.airport_code AND airport_service_1.city_code ... | please give grounds transportation at dallas airport | {"columns":["transport_type"],"index":[0,1],"data":[["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"airport",
"airport_service",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | please give grounds transportation at dallas airport <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCH... | col : transport_type row 1 : LIMOUSINE row 2 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'SAN FRANCISCO' | what ground transportation is available in san francisco | {"columns":["transport_type"],"index":[0,1,2],"data":[["LIMOUSINE"],["AIR TAXI OPERATION"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | what ground transportation is available in san francisco <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 :... | col : transport_type row 1 : LIMOUSINE row 2 : AIR TAXI OPERATION row 3 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 , airport AS airport_1 , airport_service AS airport_service_1 , city AS city_2 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'WASHINGTON' AND ground_service_1.airport_code = airport_1.ai... | ground transportation washington | {"columns":["transport_type"],"index":[0,1,2,3],"data":[["LIMOUSINE"],["AIR TAXI OPERATION"],["RAPID TRANSIT"],["RENTAL CAR"]]} | [
"city",
"airport",
"airport_service",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | ground transportation washington <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO | IL | U... | col : transport_type row 1 : LIMOUSINE row 2 : AIR TAXI OPERATION row 3 : RAPID TRANSIT row 4 : RENTAL CAR |
SELECT DISTINCT days_1.day_name FROM days AS days_1 WHERE days_1.days_code = 'SA' | what is sa | {"columns":["day_name"],"index":[0],"data":[["SATURDAY"]]} | [
"days"
] | [
"{\"columns\":[\"days_code\",\"day_name\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90... | what is sa <table_name> : days col : days_code | day_name row 1 : DAILY | FRIDAY row 2 : DAILY | MONDAY row 3 : DAILY | SATURDAY row 4 : DAILY | SUNDAY row 5 : DAILY | THURSDAY row 6 : DAILY | TUESDAY row 7 : DAILY | WEDNESDAY row 8 : FR | FRIDAY row 9 : FR SA | FRIDAY row 10 : FR SA | SATURDAY row 11 : MO | MONDAY row... | col : day_name row 1 : SATURDAY |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 , airport AS airport_1 , airport_service AS airport_service_1 , city AS city_2 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'PITTSBURGH' AND ground_service_1.airport_code = airport_1.ai... | show ground transportation for pittsburgh | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"airport",
"airport_service",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | show ground transportation for pittsburgh <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , airport AS airport_1 , airport_service AS airport_service_1 , city AS city_1 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = airport_service_1.airport_code AND airport_service_1.city_code ... | what ground transportation is available at denver airport | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"airport",
"airport_service",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | what ground transportation is available at denver airport <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 ... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT restriction_1.restriction_code FROM restriction AS restriction_1 WHERE restriction_1.restriction_code = 'AP/57' | what is the ap/57 restriction | {"columns":["restriction_code"],"index":[0],"data":[["AP\/57"]]} | [
"restriction"
] | [
"{\"columns\":[\"restriction_code\",\"advance_purchase\",\"stopovers\",\"saturday_stay_required\",\"minimum_stay\",\"maximum_stay\",\"application\",\"no_discounts\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13],\"data\":[[\"AP\\/12\",7,\"NO\",\"YES\",1,21,\"FOR ROUND TRIP TRAVEL BETWEEN U.S.\\/CANADA AND CARIBBEAN\"... | what is the ap/57 restriction <table_name> : restriction col : restriction_code | advance_purchase | stopovers | saturday_stay_required | minimum_stay | maximum_stay | application | no_discounts row 1 : AP/12 | 7 | NO | YES | 1 | 21 | FOR ROUND TRIP TRAVEL BETWEEN U.S./CANADA AND CARIBBEAN | CONTACT CARRIER row 2 : AP/... | col : restriction_code row 1 : AP/57 |
SELECT DISTINCT airport_1.airport_code FROM airport AS airport_1 WHERE airport_1.airport_code = 'EWR' | what is ewr | {"columns":["airport_code"],"index":[0],"data":[["EWR"]]} | [
"airport"
] | [
"{\"columns\":[\"airport_code\",\"airport_name\",\"airport_location\",\"state_code\",\"country_name\",\"time_zone_code\",\"minimum_connect_time\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],\"data\":[[... | what is ewr <table_name> : airport col : airport_code | airport_name | airport_location | state_code | country_name | time_zone_code | minimum_connect_time row 1 : ATL | WILLIAM B. HARTSFIELD ATLANTA INTL. | ATLANTA, GEORGIA | GA | USA | EST | 55 row 2 : BNA | NASHVILLE INTERNATIONAL | NASHVILLE, TENNESSEE | TN | USA |... | col : airport_code row 1 : EWR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'ST. LOUIS' | is there ground transportation in st. louis | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | is there ground transportation in st. louis <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICA... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DALLAS' | i'm looking for ground transportation in dallas | {"columns":["transport_type"],"index":[0,1],"data":[["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | i'm looking for ground transportation in dallas <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | C... | col : transport_type row 1 : LIMOUSINE row 2 : RENTAL CAR |
SELECT DISTINCT airline_1.airline_code FROM airline AS airline_1 WHERE 1 = 1 | show me airline abbreviations | {"columns":["airline_code"],"index":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],"data":[["2V"],["3J"],["7V"],["9E"],["9L"],["9N"],["9X"],["AA"],["AC"],["AR"],["AS"],["AT"],["BA"],["BE"],["CO"],["CP"],["DH"],["DL"],["EV"],["FF"],["GX"]... | [
"airline"
] | [
"{\"columns\":[\"airline_code\",\"airline_name\",\"note\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"2V\",\"NORTHEAST EXPRESS REGIONAL AIRLINES\",\"NATL AIR TRANSPORTATION ASSOC, INC.\"],[\"3J\",\"AIR ALLI... | show me airline abbreviations <table_name> : airline col : airline_code | airline_name | note row 1 : 2V | NORTHEAST EXPRESS REGIONAL AIRLINES | NATL AIR TRANSPORTATION ASSOC, INC. row 2 : 3J | AIR ALLIANCE | row 3 : 7V | ALPHA AIR | row 4 : 9E | EXPRESS AIRLINES I, INC. | row 5 : 9L | COLGAN AIR | row 6 : 9N | TRA... | col : airline_code row 1 : 2V row 2 : 3J row 3 : 7V row 4 : 9E row 5 : 9L row 6 : 9N row 7 : 9X row 8 : AA row 9 : AC row 10 : AR row 11 : AS row 12 : AT row 13 : BA row 14 : BE row 15 : CO row 16 : CP row 17 : DH row 18 : DL row 19 : EV row 20 : FF row 21 : GX row 22 : HP row 23 : HQ row 24 : KW row 25 : LH row 26 : M... |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'ATLANTA' | can you find out about the ground transportation available in atlanta | {"columns":["transport_type"],"index":[0,1,2,3],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RAPID TRANSIT"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | can you find out about the ground transportation available in atlanta <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA ... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RAPID TRANSIT row 4 : RENTAL CAR |
SELECT DISTINCT airport_1.airport_code FROM airport AS airport_1 WHERE airport_1.airport_code = 'BNA' | what is bna | {"columns":["airport_code"],"index":[0],"data":[["BNA"]]} | [
"airport"
] | [
"{\"columns\":[\"airport_code\",\"airport_name\",\"airport_location\",\"state_code\",\"country_name\",\"time_zone_code\",\"minimum_connect_time\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],\"data\":[[... | what is bna <table_name> : airport col : airport_code | airport_name | airport_location | state_code | country_name | time_zone_code | minimum_connect_time row 1 : ATL | WILLIAM B. HARTSFIELD ATLANTA INTL. | ATLANTA, GEORGIA | GA | USA | EST | 55 row 2 : BNA | NASHVILLE INTERNATIONAL | NASHVILLE, TENNESSEE | TN | USA |... | col : airport_code row 1 : BNA |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'PITTSBURGH' | while i'm in pittsburgh what ground transportation is available | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | while i'm in pittsburgh what ground transportation is available <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST ... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT food_service_1.meal_description FROM food_service AS food_service_1 WHERE food_service_1.meal_code = 'S/' | what does s/ designate as a meal | {"columns":["meal_description"],"index":[0],"data":[["SNACK"]]} | [
"food_service"
] | [
"{\"columns\":[\"meal_code\",\"meal_number\",\"compartment\",\"meal_description\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,7... | what does s/ designate as a meal <table_name> : food_service col : meal_code | meal_number | compartment | meal_description row 1 : B | 1 | COACH | BREAKFAST row 2 : B | 1 | FIRST | BREAKFAST row 3 : B/ | 1 | FIRST | BREAKFAST row 4 : B/BS | 1 | COACH | BREAKFAST row 5 : B/BS | 1 | FIRST | BREAKFAST row 6 : B/BS | 2 | ... | col : meal_description row 1 : SNACK |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DENVER' | what is the ground transportation available in denver | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | what is the ground transportation available in denver <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CC... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'PHOENIX' | list ground transportation options at phoenix | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | list ground transportation options at phoenix <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHI... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'ATLANTA' | please list ground transportation in atlanta | {"columns":["transport_type"],"index":[0,1,2,3],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RAPID TRANSIT"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | please list ground transportation in atlanta <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHIC... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RAPID TRANSIT row 4 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'BOSTON' | what is the ground transportation available in boston | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | what is the ground transportation available in boston <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CC... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DENVER' | what ground transportation is available in denver | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | what ground transportation is available in denver <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI |... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , airport AS airport_1 , city AS city_1 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = 'BOS' AND ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'BOSTON' | ground transportation please in the city of boston between airport and downtown | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"airport",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | ground transportation please in the city of boston between airport and downtown <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE |... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT airport_service_1.miles_distant FROM airport_service AS airport_service_1 , airport AS airport_1 , airport_service AS airport_service_2 , city AS city_1 , city AS city_2 WHERE airport_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = airport_service_2.airport_code AND airport_... | what is the distance between pittsburgh airport and downtown pittsburgh | {"columns":["miles_distant"],"index":[0],"data":[[17]]} | [
"city",
"airport_service",
"airport"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | what is the distance between pittsburgh airport and downtown pittsburgh <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | US... | col : miles_distant row 1 : 17 |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DENVER' | show me ground transportation in denver during weekdays | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | show me ground transportation in denver during weekdays <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : ... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , airport AS airport_1 , city AS city_1 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = 'BOS' AND ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'BOSTON' | ground transportation from airport in boston to downtown boston | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"airport",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | ground transportation from airport in boston to downtown boston <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST ... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT airport_1.airport_code FROM airport AS airport_1 , airport_service AS airport_service_1 , city AS city_1 WHERE airport_1.airport_code = airport_service_1.airport_code AND airport_service_1.city_code = city_1.city_code AND city_1.city_name = 'PHILADELPHIA' | does the philadelphia airport have a name | {"columns":["airport_code"],"index":[0],"data":[["PHL"]]} | [
"city",
"airport",
"airport_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | does the philadelphia airport have a name <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO... | col : airport_code row 1 : PHL |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'BALTIMORE' | show me ground transportation in baltimore | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | show me ground transportation in baltimore <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAG... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'SAN JOSE' | ground transportation in san jose | {"columns":["transport_type"],"index":[0,1],"data":[["AIR TAXI OPERATION"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | ground transportation in san jose <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO | IL | ... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , airport AS airport_1 , city AS city_1 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = 'BOS' AND ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'BOSTON' | i need information on ground transportation between airport and downtown in the city of boston | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"airport",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | i need information on ground transportation between airport and downtown in the city of boston <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBW... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DALLAS' | show me ground transportation in dallas please | {"columns":["transport_type"],"index":[0,1],"data":[["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | show me ground transportation in dallas please <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CH... | col : transport_type row 1 : LIMOUSINE row 2 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , airport AS airport_1 , airport_service AS airport_service_1 , city AS city_1 WHERE ground_service_1.transport_type = 'LIMOUSINE' AND ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = airport_servi... | is there limousine service available at baltimore airport | {"columns":["transport_type"],"index":[0],"data":[["LIMOUSINE"]]} | [
"city",
"airport",
"airport_service",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | is there limousine service available at baltimore airport <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 ... | col : transport_type row 1 : LIMOUSINE |
SELECT DISTINCT class_of_service_1.booking_class FROM class_of_service AS class_of_service_1 WHERE class_of_service_1.booking_class = 'H' | what is fare code h | {"columns":["booking_class"],"index":[0],"data":[["H"]]} | [
"class_of_service"
] | [
"{\"columns\":[\"booking_class\",\"rank\",\"class_description\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18],\"data\":[[\"B\",10,\"COACH ECONOMY CLASS DISCOUNTED\"],[\"BN\",17,\"COACH ECONOMY CLASS DISCOUNTED NIGHT SERVICE\"],[\"C\",4,\"BUSINESS CLASS\"],[\"CN\",8,\"BUSINESS CLASS NIGHT SERVICE\"],[\... | what is fare code h <table_name> : class_of_service col : booking_class | rank | class_description row 1 : B | 10 | COACH ECONOMY CLASS DISCOUNTED row 2 : BN | 17 | COACH ECONOMY CLASS DISCOUNTED NIGHT SERVICE row 3 : C | 4 | BUSINESS CLASS row 4 : CN | 8 | BUSINESS CLASS NIGHT SERVICE row 5 : F | 2 | FIRST CLASS row 6... | col : booking_class row 1 : H |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'BOSTON' | show me ground transportation in boston | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | show me ground transportation in boston <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO |... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT airline_1.airline_code FROM airline AS airline_1 WHERE airline_1.airline_code = 'HP' | what airline uses the code hp | {"columns":["airline_code"],"index":[0],"data":[["HP"]]} | [
"airline"
] | [
"{\"columns\":[\"airline_code\",\"airline_name\",\"note\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"2V\",\"NORTHEAST EXPRESS REGIONAL AIRLINES\",\"NATL AIR TRANSPORTATION ASSOC, INC.\"],[\"3J\",\"AIR ALLI... | what airline uses the code hp <table_name> : airline col : airline_code | airline_name | note row 1 : 2V | NORTHEAST EXPRESS REGIONAL AIRLINES | NATL AIR TRANSPORTATION ASSOC, INC. row 2 : 3J | AIR ALLIANCE | row 3 : 7V | ALPHA AIR | row 4 : 9E | EXPRESS AIRLINES I, INC. | row 5 : 9L | COLGAN AIR | row 6 : 9N | TRA... | col : airline_code row 1 : HP |
SELECT DISTINCT airport_1.airport_code FROM airport AS airport_1 WHERE airport_1.airport_code = 'EWR' | what is ewr | {"columns":["airport_code"],"index":[0],"data":[["EWR"]]} | [
"airport"
] | [
"{\"columns\":[\"airport_code\",\"airport_name\",\"airport_location\",\"state_code\",\"country_name\",\"time_zone_code\",\"minimum_connect_time\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],\"data\":[[... | what is ewr <table_name> : airport col : airport_code | airport_name | airport_location | state_code | country_name | time_zone_code | minimum_connect_time row 1 : ATL | WILLIAM B. HARTSFIELD ATLANTA INTL. | ATLANTA, GEORGIA | GA | USA | EST | 55 row 2 : BNA | NASHVILLE INTERNATIONAL | NASHVILLE, TENNESSEE | TN | USA |... | col : airport_code row 1 : EWR |
SELECT DISTINCT class_of_service_1.booking_class FROM class_of_service AS class_of_service_1 WHERE class_of_service_1.booking_class = 'Q' | what does fare code q mean | {"columns":["booking_class"],"index":[0],"data":[["Q"]]} | [
"class_of_service"
] | [
"{\"columns\":[\"booking_class\",\"rank\",\"class_description\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18],\"data\":[[\"B\",10,\"COACH ECONOMY CLASS DISCOUNTED\"],[\"BN\",17,\"COACH ECONOMY CLASS DISCOUNTED NIGHT SERVICE\"],[\"C\",4,\"BUSINESS CLASS\"],[\"CN\",8,\"BUSINESS CLASS NIGHT SERVICE\"],[\... | what does fare code q mean <table_name> : class_of_service col : booking_class | rank | class_description row 1 : B | 10 | COACH ECONOMY CLASS DISCOUNTED row 2 : BN | 17 | COACH ECONOMY CLASS DISCOUNTED NIGHT SERVICE row 3 : C | 4 | BUSINESS CLASS row 4 : CN | 8 | BUSINESS CLASS NIGHT SERVICE row 5 : F | 2 | FIRST CLAS... | col : booking_class row 1 : Q |
SELECT DISTINCT airport_1.airport_code FROM airport AS airport_1 WHERE airport_1.airport_code = 'EWR' | what does ewr mean | {"columns":["airport_code"],"index":[0],"data":[["EWR"]]} | [
"airport"
] | [
"{\"columns\":[\"airport_code\",\"airport_name\",\"airport_location\",\"state_code\",\"country_name\",\"time_zone_code\",\"minimum_connect_time\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],\"data\":[[... | what does ewr mean <table_name> : airport col : airport_code | airport_name | airport_location | state_code | country_name | time_zone_code | minimum_connect_time row 1 : ATL | WILLIAM B. HARTSFIELD ATLANTA INTL. | ATLANTA, GEORGIA | GA | USA | EST | 55 row 2 : BNA | NASHVILLE INTERNATIONAL | NASHVILLE, TENNESSEE | TN ... | col : airport_code row 1 : EWR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , airport AS airport_1 , airport_service AS airport_service_1 , city AS city_1 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = airport_service_1.airport_code AND airport_service_1.city_code ... | what ground transportation is available at the boston airport | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"airport",
"airport_service",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | what ground transportation is available at the boston airport <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST ro... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , airport AS airport_1 , airport_service AS airport_service_1 , city AS city_1 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = airport_service_1.airport_code AND airport_service_1.city_code ... | what ground transportation is available at the baltimore airport | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"airport",
"airport_service",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | what ground transportation is available at the baltimore airport <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'PITTSBURGH' | what's the ground transportation like at pittsburgh | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | what's the ground transportation like at pittsburgh <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , airport AS airport_1 , airport_service AS airport_service_1 , city AS city_1 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = airport_service_1.airport_code AND airport_service_1.city_code ... | fine can you give me information on ground transportation in washington dc to downtown | {"columns":["transport_type"],"index":[0,1,2,3],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"],["RAPID TRANSIT"]]} | [
"city",
"airport",
"airport_service",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | fine can you give me information on ground transportation in washington dc to downtown <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALT... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR row 4 : RAPID TRANSIT |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'PITTSBURGH' AND ground_service_1.transport_type = 'RENTAL CAR' | in pittsburgh i'd like to rent a car | {"columns":["transport_type"],"index":[0],"data":[["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | in pittsburgh i'd like to rent a car <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO | IL... | col : transport_type row 1 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'PITTSBURGH' AND ground_service_1.transport_type = 'RENTAL CAR' | please list the rental car information in pittsburgh | {"columns":["transport_type"],"index":[0],"data":[["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | please list the rental car information in pittsburgh <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCH... | col : transport_type row 1 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'NEWARK' | what ground transportation is available in newark | {"columns":["transport_type"],"index":[0,1,2,3],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RAPID TRANSIT"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | what ground transportation is available in newark <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI |... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RAPID TRANSIT row 4 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'PHOENIX' | ground transport phoenix | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | ground transport phoenix <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO | IL | USA | CST... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , airport AS airport_1 , city AS city_1 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = 'BOS' AND ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'BOSTON' | is there ground transportation between airport and downtown in boston | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"airport",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | is there ground transportation between airport and downtown in boston <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA ... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , airport AS airport_1 , city AS city_1 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = 'DFW' AND ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DALLAS' | is there ground transportation from the dallas airport to downtown dallas | {"columns":["transport_type"],"index":[0,1],"data":[["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"airport",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | is there ground transportation from the dallas airport to downtown dallas <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | ... | col : transport_type row 1 : LIMOUSINE row 2 : RENTAL CAR |
SELECT DISTINCT airport_service_1.minutes_distant FROM airport_service AS airport_service_1 , airport AS airport_1 , airport_service AS airport_service_2 , city AS city_1 , city AS city_2 WHERE airport_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = airport_service_2.airport_code AND airpor... | how long is a trip from philadelphia airport to downtown philadelphia | {"columns":["minutes_distant"],"index":[0],"data":[[35]]} | [
"city",
"airport_service",
"airport"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | how long is a trip from philadelphia airport to downtown philadelphia <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA ... | col : minutes_distant row 1 : 35 |
SELECT DISTINCT airline_1.airline_code FROM airline AS airline_1 WHERE airline_1.airline_code = 'AS' | airline code as | {"columns":["airline_code"],"index":[0],"data":[["AS"]]} | [
"airline"
] | [
"{\"columns\":[\"airline_code\",\"airline_name\",\"note\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"2V\",\"NORTHEAST EXPRESS REGIONAL AIRLINES\",\"NATL AIR TRANSPORTATION ASSOC, INC.\"],[\"3J\",\"AIR ALLI... | airline code as <table_name> : airline col : airline_code | airline_name | note row 1 : 2V | NORTHEAST EXPRESS REGIONAL AIRLINES | NATL AIR TRANSPORTATION ASSOC, INC. row 2 : 3J | AIR ALLIANCE | row 3 : 7V | ALPHA AIR | row 4 : 9E | EXPRESS AIRLINES I, INC. | row 5 : 9L | COLGAN AIR | row 6 : 9N | TRANS STATES AIRL... | col : airline_code row 1 : AS |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DENVER' | what is the ground transport in denver | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | what is the ground transport in denver <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO | ... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'PITTSBURGH' | what ground transportation is available in pittsburgh | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | what ground transportation is available in pittsburgh <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CC... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , airport AS airport_1 , city AS city_1 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = 'DFW' AND ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DALLAS' | could you tell me about ground transportation arrangements from the dallas airport to downtown dallas | {"columns":["transport_type"],"index":[0,1],"data":[["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"airport",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | could you tell me about ground transportation arrangements from the dallas airport to downtown dallas <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row ... | col : transport_type row 1 : LIMOUSINE row 2 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 , airport AS airport_1 , airport_service AS airport_service_1 , city AS city_2 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'PHOENIX' AND ground_service_1.airport_code = airport_1.airpo... | does the phoenix airport have ground transportation to and from downtown | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"airport",
"airport_service",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | does the phoenix airport have ground transportation to and from downtown <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | U... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'PHILADELPHIA' | what are the ground transportation services in philadelphia | {"columns":["transport_type"],"index":[0,1,2,3],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RAPID TRANSIT"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | what are the ground transportation services in philadelphia <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row ... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RAPID TRANSIT row 4 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DENVER' | what kind of ground transportation is available in denver | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | what kind of ground transportation is available in denver <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 ... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'FORT WORTH' | what is the ground transportation available in fort worth | {"columns":["transport_type"],"index":[0,1],"data":[["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | what is the ground transportation available in fort worth <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 ... | col : transport_type row 1 : LIMOUSINE row 2 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DENVER' AND ground_service_1.transport_type = 'RENTAL CAR' | what about a car rental in denver | {"columns":["transport_type"],"index":[0],"data":[["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | what about a car rental in denver <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO | IL | ... | col : transport_type row 1 : RENTAL CAR |
SELECT DISTINCT airport_1.airport_code FROM airport AS airport_1 , airport_service AS airport_service_1 , city AS city_1 WHERE airport_1.airport_code = airport_service_1.airport_code AND airport_service_1.city_code = city_1.city_code AND city_1.city_name = 'NEW YORK' | airports in new york | {"columns":["airport_code"],"index":[0,1,2,3],"data":[["EWR"],["HPN"],["JFK"],["LGA"]]} | [
"city",
"airport",
"airport_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | airports in new york <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO | IL | USA | CST row... | col : airport_code row 1 : EWR row 2 : HPN row 3 : JFK row 4 : LGA |
SELECT DISTINCT airport_1.airport_code FROM airport AS airport_1 WHERE airport_1.airport_code = 'MCO' | what is mco | {"columns":["airport_code"],"index":[0],"data":[["MCO"]]} | [
"airport"
] | [
"{\"columns\":[\"airport_code\",\"airport_name\",\"airport_location\",\"state_code\",\"country_name\",\"time_zone_code\",\"minimum_connect_time\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],\"data\":[[... | what is mco <table_name> : airport col : airport_code | airport_name | airport_location | state_code | country_name | time_zone_code | minimum_connect_time row 1 : ATL | WILLIAM B. HARTSFIELD ATLANTA INTL. | ATLANTA, GEORGIA | GA | USA | EST | 55 row 2 : BNA | NASHVILLE INTERNATIONAL | NASHVILLE, TENNESSEE | TN | USA |... | col : airport_code row 1 : MCO |
SELECT DISTINCT airline_1.airline_code FROM airline AS airline_1 WHERE airline_1.airline_code = 'AC' | what airline is ac | {"columns":["airline_code"],"index":[0],"data":[["AC"]]} | [
"airline"
] | [
"{\"columns\":[\"airline_code\",\"airline_name\",\"note\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"2V\",\"NORTHEAST EXPRESS REGIONAL AIRLINES\",\"NATL AIR TRANSPORTATION ASSOC, INC.\"],[\"3J\",\"AIR ALLI... | what airline is ac <table_name> : airline col : airline_code | airline_name | note row 1 : 2V | NORTHEAST EXPRESS REGIONAL AIRLINES | NATL AIR TRANSPORTATION ASSOC, INC. row 2 : 3J | AIR ALLIANCE | row 3 : 7V | ALPHA AIR | row 4 : 9E | EXPRESS AIRLINES I, INC. | row 5 : 9L | COLGAN AIR | row 6 : 9N | TRANS STATES A... | col : airline_code row 1 : AC |
SELECT DISTINCT food_service_1.meal_description FROM food_service AS food_service_1 WHERE food_service_1.meal_code LIKE '%S/%' | what does the meal code s/ stand for | {"columns":["meal_description"],"index":[0,1,2,3],"data":[["BREAKFAST"],["DINNER"],["LUNCH"],["SNACK"]]} | [
"food_service"
] | [
"{\"columns\":[\"meal_code\",\"meal_number\",\"compartment\",\"meal_description\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,7... | what does the meal code s/ stand for <table_name> : food_service col : meal_code | meal_number | compartment | meal_description row 1 : B | 1 | COACH | BREAKFAST row 2 : B | 1 | FIRST | BREAKFAST row 3 : B/ | 1 | FIRST | BREAKFAST row 4 : B/BS | 1 | COACH | BREAKFAST row 5 : B/BS | 1 | FIRST | BREAKFAST row 6 : B/BS | ... | col : meal_description row 1 : BREAKFAST row 2 : DINNER row 3 : LUNCH row 4 : SNACK |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'BOSTON' | what ground transportation is available in boston | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | what ground transportation is available in boston <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI |... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , airport AS airport_1 , airport_service AS airport_service_1 , city AS city_1 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = airport_service_1.airport_code AND airport_service_1.city_code ... | show me the ground transportation in the salt lake city airport | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"airport",
"airport_service",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | show me the ground transportation in the salt lake city airport <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST ... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT airport_1.airport_code FROM airport AS airport_1 , airport_service AS airport_service_1 , city AS city_1 WHERE airport_1.airport_code = airport_service_1.airport_code AND airport_service_1.city_code = city_1.city_code AND city_1.city_name = 'BALTIMORE' | give me a list of airports in baltimore | {"columns":["airport_code"],"index":[0],"data":[["BWI"]]} | [
"city",
"airport",
"airport_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | give me a list of airports in baltimore <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO |... | col : airport_code row 1 : BWI |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DENVER' AND ground_service_1.transport_type = 'LIMOUSINE' | i'd like a limo in denver on august seventh | {"columns":["transport_type"],"index":[0],"data":[["LIMOUSINE"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | i'd like a limo in denver on august seventh <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICA... | col : transport_type row 1 : LIMOUSINE |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'ATLANTA' | in atlanta i would like information on ground transportation | {"columns":["transport_type"],"index":[0,1,2,3],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RAPID TRANSIT"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | in atlanta i would like information on ground transportation <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RAPID TRANSIT row 4 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'OAKLAND' | what does ground transportation look like in oakland | {"columns":["transport_type"],"index":[0,1,2],"data":[["LIMOUSINE"],["RENTAL CAR"],["AIR TAXI OPERATION"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | what does ground transportation look like in oakland <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCH... | col : transport_type row 1 : LIMOUSINE row 2 : RENTAL CAR row 3 : AIR TAXI OPERATION |
SELECT DISTINCT food_service_1.meal_code , food_service_1.meal_number , food_service_1.compartment FROM food_service AS food_service_1 WHERE 1 = 1 | what are all the available meals | {"columns":["meal_code","meal_number","compartment"],"index":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,8... | [
"food_service"
] | [
"{\"columns\":[\"meal_code\",\"meal_number\",\"compartment\",\"meal_description\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,7... | what are all the available meals <table_name> : food_service col : meal_code | meal_number | compartment | meal_description row 1 : B | 1 | COACH | BREAKFAST row 2 : B | 1 | FIRST | BREAKFAST row 3 : B/ | 1 | FIRST | BREAKFAST row 4 : B/BS | 1 | COACH | BREAKFAST row 5 : B/BS | 1 | FIRST | BREAKFAST row 6 : B/BS | 2 | ... | col : meal_code | meal_number | compartment row 1 : B | 1 | COACH row 2 : B | 1 | FIRST row 3 : B/ | 1 | FIRST row 4 : B/BS | 1 | COACH row 5 : B/BS | 1 | FIRST row 6 : B/BS | 2 | COACH row 7 : B/S | 1 | COACH row 8 : B/S | 1 | FIRST row 9 : B/SB | 1 | COACH row 10 : B/SB | 1 | FIRST row 11 : B/SB | 2 | COACH row 12 : ... |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DALLAS' | show me dallas ground transport | {"columns":["transport_type"],"index":[0,1],"data":[["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | show me dallas ground transport <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO | IL | US... | col : transport_type row 1 : LIMOUSINE row 2 : RENTAL CAR |
SELECT DISTINCT airport_1.airport_code FROM airport AS airport_1 WHERE airport_1.airport_code = 'MCO' | what is mco | {"columns":["airport_code"],"index":[0],"data":[["MCO"]]} | [
"airport"
] | [
"{\"columns\":[\"airport_code\",\"airport_name\",\"airport_location\",\"state_code\",\"country_name\",\"time_zone_code\",\"minimum_connect_time\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],\"data\":[[... | what is mco <table_name> : airport col : airport_code | airport_name | airport_location | state_code | country_name | time_zone_code | minimum_connect_time row 1 : ATL | WILLIAM B. HARTSFIELD ATLANTA INTL. | ATLANTA, GEORGIA | GA | USA | EST | 55 row 2 : BNA | NASHVILLE INTERNATIONAL | NASHVILLE, TENNESSEE | TN | USA |... | col : airport_code row 1 : MCO |
SELECT DISTINCT class_of_service_1.booking_class FROM class_of_service AS class_of_service_1 WHERE class_of_service_1.booking_class = 'H' | what is fare code h | {"columns":["booking_class"],"index":[0],"data":[["H"]]} | [
"class_of_service"
] | [
"{\"columns\":[\"booking_class\",\"rank\",\"class_description\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18],\"data\":[[\"B\",10,\"COACH ECONOMY CLASS DISCOUNTED\"],[\"BN\",17,\"COACH ECONOMY CLASS DISCOUNTED NIGHT SERVICE\"],[\"C\",4,\"BUSINESS CLASS\"],[\"CN\",8,\"BUSINESS CLASS NIGHT SERVICE\"],[\... | what is fare code h <table_name> : class_of_service col : booking_class | rank | class_description row 1 : B | 10 | COACH ECONOMY CLASS DISCOUNTED row 2 : BN | 17 | COACH ECONOMY CLASS DISCOUNTED NIGHT SERVICE row 3 : C | 4 | BUSINESS CLASS row 4 : CN | 8 | BUSINESS CLASS NIGHT SERVICE row 5 : F | 2 | FIRST CLASS row 6... | col : booking_class row 1 : H |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 , airport AS airport_1 , airport_service AS airport_service_1 , city AS city_2 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DENVER' AND ground_service_1.airport_code = airport_1.airpor... | i need information for ground transportation denver colorado | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"airport",
"airport_service",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | i need information for ground transportation denver colorado <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 , airport AS airport_1 , airport_service AS airport_service_1 , city AS city_2 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'LAS VEGAS' AND ground_service_1.airport_code = airport_1.air... | i would like to know the types of ground transportation from the airport to las vegas | {"columns":["transport_type"],"index":[0],"data":[["LIMOUSINE"]]} | [
"city",
"airport",
"airport_service",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | i would like to know the types of ground transportation from the airport to las vegas <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTI... | col : transport_type row 1 : LIMOUSINE |
SELECT DISTINCT airport_service_1.miles_distant FROM airport_service AS airport_service_1 , airport AS airport_1 , city AS city_1 WHERE airport_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = 'MCO' AND airport_service_1.city_code = city_1.city_code AND city_1.city_name = 'ORLANDO' | tell me distance from orlando airport to the city | {"columns":["miles_distant"],"index":[0],"data":[[8]]} | [
"city",
"airport_service",
"airport"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | tell me distance from orlando airport to the city <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI |... | col : miles_distant row 1 : 8 |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DALLAS' | ground transportation dallas | {"columns":["transport_type"],"index":[0,1],"data":[["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | ground transportation dallas <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO | IL | USA |... | col : transport_type row 1 : LIMOUSINE row 2 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DENVER' | what types of ground transportation are available in denver | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | what types of ground transportation are available in denver <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row ... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'FORT WORTH' | i'd like to know the ground travel available in fort worth | {"columns":["transport_type"],"index":[0,1],"data":[["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | i'd like to know the ground travel available in fort worth <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5... | col : transport_type row 1 : LIMOUSINE row 2 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'WASHINGTON' | show me all ground transportation in washington dc | {"columns":["transport_type"],"index":[0,1,2,3],"data":[["LIMOUSINE"],["AIR TAXI OPERATION"],["RAPID TRANSIT"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | show me all ground transportation in washington dc <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI ... | col : transport_type row 1 : LIMOUSINE row 2 : AIR TAXI OPERATION row 3 : RAPID TRANSIT row 4 : RENTAL CAR |
SELECT DISTINCT airport_1.airport_code FROM airport AS airport_1 , airport_service AS airport_service_1 , city AS city_1 WHERE airport_1.airport_code = airport_service_1.airport_code AND airport_service_1.city_code = city_1.city_code AND city_1.city_name = 'ORLANDO' | what's the airport at orlando | {"columns":["airport_code"],"index":[0],"data":[["MCO"]]} | [
"city",
"airport",
"airport_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | what's the airport at orlando <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO | IL | USA ... | col : airport_code row 1 : MCO |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'SAN JOSE' AND ground_service_1.transport_type = 'RENTAL CAR' | can i rent a car in san jose too | {"columns":["transport_type"],"index":[0],"data":[["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | can i rent a car in san jose too <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO | IL | U... | col : transport_type row 1 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DENVER' | show ground transportation in denver | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | show ground transportation in denver <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO | IL... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT airline_1.airline_code FROM airline AS airline_1 WHERE airline_1.airline_code = 'US' AND airline_1.airline_name = 'USAIR' | is us us air | {"columns":["airline_code"],"index":[0],"data":[["US"]]} | [
"airline"
] | [
"{\"columns\":[\"airline_code\",\"airline_name\",\"note\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"2V\",\"NORTHEAST EXPRESS REGIONAL AIRLINES\",\"NATL AIR TRANSPORTATION ASSOC, INC.\"],[\"3J\",\"AIR ALLI... | is us us air <table_name> : airline col : airline_code | airline_name | note row 1 : 2V | NORTHEAST EXPRESS REGIONAL AIRLINES | NATL AIR TRANSPORTATION ASSOC, INC. row 2 : 3J | AIR ALLIANCE | row 3 : 7V | ALPHA AIR | row 4 : 9E | EXPRESS AIRLINES I, INC. | row 5 : 9L | COLGAN AIR | row 6 : 9N | TRANS STATES AIRLINE... | col : airline_code row 1 : US |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'BOSTON' | what ground transportation is available in boston | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | what ground transportation is available in boston <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI |... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT airline_1.airline_code FROM airline AS airline_1 WHERE airline_1.airline_name LIKE '%DELTA%' AND airline_1.airline_code = 'DL' | does dl stand for delta | {"columns":["airline_code"],"index":[0],"data":[["DL"]]} | [
"airline"
] | [
"{\"columns\":[\"airline_code\",\"airline_name\",\"note\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"2V\",\"NORTHEAST EXPRESS REGIONAL AIRLINES\",\"NATL AIR TRANSPORTATION ASSOC, INC.\"],[\"3J\",\"AIR ALLI... | does dl stand for delta <table_name> : airline col : airline_code | airline_name | note row 1 : 2V | NORTHEAST EXPRESS REGIONAL AIRLINES | NATL AIR TRANSPORTATION ASSOC, INC. row 2 : 3J | AIR ALLIANCE | row 3 : 7V | ALPHA AIR | row 4 : 9E | EXPRESS AIRLINES I, INC. | row 5 : 9L | COLGAN AIR | row 6 : 9N | TRANS STA... | col : airline_code row 1 : DL |
SELECT DISTINCT restriction_1.restriction_code FROM restriction AS restriction_1 WHERE restriction_1.restriction_code = 'AP/57' | what does ap57 mean | {"columns":["restriction_code"],"index":[0],"data":[["AP\/57"]]} | [
"restriction"
] | [
"{\"columns\":[\"restriction_code\",\"advance_purchase\",\"stopovers\",\"saturday_stay_required\",\"minimum_stay\",\"maximum_stay\",\"application\",\"no_discounts\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13],\"data\":[[\"AP\\/12\",7,\"NO\",\"YES\",1,21,\"FOR ROUND TRIP TRAVEL BETWEEN U.S.\\/CANADA AND CARIBBEAN\"... | what does ap57 mean <table_name> : restriction col : restriction_code | advance_purchase | stopovers | saturday_stay_required | minimum_stay | maximum_stay | application | no_discounts row 1 : AP/12 | 7 | NO | YES | 1 | 21 | FOR ROUND TRIP TRAVEL BETWEEN U.S./CANADA AND CARIBBEAN | CONTACT CARRIER row 2 : AP/2 | 7 | NO... | col : restriction_code row 1 : AP/57 |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 , city AS city_2 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DALLAS' OR ground_service_1.city_code = city_2.city_code AND city_2.city_name = 'FORT WORTH' | what kinds of ground transportation is available in dallas fort worth | {"columns":["transport_type"],"index":[0,1],"data":[["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | what kinds of ground transportation is available in dallas fort worth <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA ... | col : transport_type row 1 : LIMOUSINE row 2 : RENTAL CAR |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'BOSTON' | what ground transportation can i take into boston | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | what ground transportation can i take into boston <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI |... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT airport_1.airport_code FROM airport AS airport_1 WHERE airport_1.airport_code = 'MCO' | what does mco mean | {"columns":["airport_code"],"index":[0],"data":[["MCO"]]} | [
"airport"
] | [
"{\"columns\":[\"airport_code\",\"airport_name\",\"airport_location\",\"state_code\",\"country_name\",\"time_zone_code\",\"minimum_connect_time\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],\"data\":[[... | what does mco mean <table_name> : airport col : airport_code | airport_name | airport_location | state_code | country_name | time_zone_code | minimum_connect_time row 1 : ATL | WILLIAM B. HARTSFIELD ATLANTA INTL. | ATLANTA, GEORGIA | GA | USA | EST | 55 row 2 : BNA | NASHVILLE INTERNATIONAL | NASHVILLE, TENNESSEE | TN ... | col : airport_code row 1 : MCO |
SELECT DISTINCT airline_1.airline_code FROM airline AS airline_1 WHERE airline_1.airline_code = 'AS' | what airline is as | {"columns":["airline_code"],"index":[0],"data":[["AS"]]} | [
"airline"
] | [
"{\"columns\":[\"airline_code\",\"airline_name\",\"note\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"2V\",\"NORTHEAST EXPRESS REGIONAL AIRLINES\",\"NATL AIR TRANSPORTATION ASSOC, INC.\"],[\"3J\",\"AIR ALLI... | what airline is as <table_name> : airline col : airline_code | airline_name | note row 1 : 2V | NORTHEAST EXPRESS REGIONAL AIRLINES | NATL AIR TRANSPORTATION ASSOC, INC. row 2 : 3J | AIR ALLIANCE | row 3 : 7V | ALPHA AIR | row 4 : 9E | EXPRESS AIRLINES I, INC. | row 5 : 9L | COLGAN AIR | row 6 : 9N | TRANS STATES A... | col : airline_code row 1 : AS |
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'SAN DIEGO' | and i'll need ground transportation for tuesday july sixth to wednesday july seventh in san diego | {"columns":["transport_type"],"index":[0,1],"data":[["AIR TAXI OPERATION"],["RENTAL CAR"]]} | [
"city",
"ground_service"
] | [
"{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"... | and i'll need ground transportation for tuesday july sixth to wednesday july seventh in san diego <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : ... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : RENTAL CAR |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.