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 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 information on ground transportation for 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\",\"... | show me information on ground transportation for 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 : ... | 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 ... | what kind of ground transportation is available in 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\",\"... | what kind of ground transportation is available in 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 | BALTIMORE | MD | USA | EST row... | col : transport_type row 1 : LIMOUSINE |
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 = 'OAKLAND' AND ground_service_1.airport_code = airport_1.airpo... | what ground transportation is there in oakland | {"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\",\"... | what ground transportation is there 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 : 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 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'ATLANTA' | what ground transportation is 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\",\"... | what ground transportation is 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 | 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 = 'NEWARK' AND ground_service_1.transport_type = 'RAPID TRANSIT' | train to newark | {"columns":["transport_type"],"index":[0],"data":[["RAPID TRANSIT"]]} | [
"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\",\"... | train to 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 | CHICAGO | IL | USA | CST row 6 : ... | col : transport_type row 1 : 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 = 'SAN DIEGO' | what is the ground transportation 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\",\"... | what is the ground transportation 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 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CH... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : RENTAL CAR |
SELECT DISTINCT restriction_1.advance_purchase , restriction_1.stopovers , restriction_1.saturday_stay_required , restriction_1.minimum_stay , restriction_1.maximum_stay , restriction_1.application , restriction_1.no_discounts , restriction_1.restriction_code FROM restriction AS restriction_1 WHERE restriction_1.restri... | what is restriction ap/57 | {"columns":["advance_purchase","stopovers","saturday_stay_required","minimum_stay","maximum_stay","application","no_discounts","restriction_code"],"index":[0],"data":[[7,"YES","YES",1,999,"FARES NOT APPLICABLE TO\/FROM INTERMEDIATE POINTS","CHILDREN'S FARES, SALES AGENTS, TOUR CONDUCTORS","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 restriction ap/57 <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 | ... | col : advance_purchase | stopovers | saturday_stay_required | minimum_stay | maximum_stay | application | no_discounts | restriction_code row 1 : 7 | YES | YES | 1 | 999 | FARES NOT APPLICABLE TO/FROM INTERMEDIATE POINTS | CHILDREN'S FARES, SALES AGENTS, TOUR CONDUCTORS | AP/57 |
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 from the boston airport 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\",\"... | is there ground transportation from the boston airport 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 | ... | 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 = 'PHILADELPHIA' AND ground_service_1.airport_code = airport_1.... | how do i get to philadelphia downtown from the 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\",\"... | how do i get to philadelphia downtown from the 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 : C... | 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 , airport AS airport_1 , airport_service AS airport_service_1 , city AS city_1 , city AS city_2 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = airport_service_1.airport_code AND airport_ser... | how can i get from the denver airport to 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\",\"... | how can i get from the denver airport 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 | 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 = 'ATL' AND ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'ATLANTA' | i would like information on ground transportation in atlanta from the airport to the city in the morning around 9am | {"columns":["transport_type"],"index":[0,1,2,3],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RAPID TRANSIT"],["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 would like information on ground transportation in atlanta from the airport to the city in the morning around 9am <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 | ... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RAPID TRANSIT row 4 : 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 = 'LGA' AND airport_service_1.city_code = city_1.city_code AND city_1.city_name = 'NEW YORK' | what is the distance from la guardia to new york's downtown | {"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\",\"... | what is the distance from la guardia to new york's 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 | USA | EST row ... | 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 = 'ATLANTA' | i will be staying downtown in atlanta for two hours could you tell me what the ground transportation is available | {"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\",\"... | i will be staying downtown in atlanta for two hours could you tell me what the 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 | US... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RAPID TRANSIT row 4 : RENTAL CAR |
SELECT DISTINCT airport_service_1.minutes_distant FROM airport_service AS airport_service_1 , city AS city_1 WHERE airport_service_1.city_code = city_1.city_code AND city_1.city_name = 'BOSTON' | what is the transportation time from the airport to boston | {"columns":["minutes_distant"],"index":[0],"data":[[30]]} | [
"city",
"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 is the transportation time from the airport to 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... | col : minutes_distant row 1 : 30 |
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' | what ground transportation is there 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\",\"... | what ground transportation is there 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 | CHI... | 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 = 'NEW YORK' AND ground_service_1.transport_type = 'RENTAL CAR' | in new york i'll need 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 new york i'll need 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 airport_1.airport_code , airport_1.airport_name , airport_1.airport_location , airport_1.state_code , airport_1.country_name , airport_1.time_zone_code , airport_1.minimum_connect_time FROM airport AS airport_1 , airport_service AS airport_service_1 , city AS city_1 WHERE airport_1.airport_code = airpor... | describe pittsburgh airport | {"columns":["airport_code","airport_name","airport_location","state_code","country_name","time_zone_code","minimum_connect_time"],"index":[0],"data":[["PIT","GREATER PITTSBURGH INTERNATIONAL","PITTSBURGH, PENNSYLVANIA","PA","USA","EST",40]]} | [
"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\",\"... | describe pittsburgh 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 : CCHI | CHICAGO | IL | USA | ... | col : airport_code | airport_name | airport_location | state_code | country_name | time_zone_code | minimum_connect_time row 1 : PIT | GREATER PITTSBURGH INTERNATIONAL | PITTSBURGH, PENNSYLVANIA | PA | USA | EST | 40 |
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 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 , city AS city_2 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = airport_service_1.airport_code AND airport_ser... | what ground transportation is there from the airport in atlanta to downtown | {"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 there from the airport in atlanta 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 | BALTIMORE | MD ... | 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 airline_1.airline_code = 'UA' | what is ua | {"columns":["airline_code"],"index":[0],"data":[["UA"]]} | [
"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 is ua <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 AIRLINES,... | col : airline_code row 1 : UA |
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 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 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 | CH... | 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 = 'DENVER' | what's the name of the denver airport | {"columns":["airport_code"],"index":[0],"data":[["DEN"]]} | [
"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 name of the 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 : CCHI | CHICAGO | I... | col : airport_code row 1 : DEN |
SELECT DISTINCT airport_1.airport_code , airport_1.airport_name , airport_1.airport_location , airport_1.state_code , airport_1.country_name , airport_1.time_zone_code , airport_1.minimum_connect_time FROM airport AS airport_1 , airport_service AS airport_service_1 , city AS city_1 WHERE airport_1.airport_code = airpor... | please list information regarding san francisco airport | {"columns":["airport_code","airport_name","airport_location","state_code","country_name","time_zone_code","minimum_connect_time"],"index":[0,1],"data":[["OAK","METROPOLITAN OAKLAND INTERNATIONAL","OAKLAND, CALIFORNIA","CA","USA","PST",30],["SFO","SAN FRANCISCO INTERNATIONAL","SAN FRANCISCO, CALIFORNIA","CA","USA","PST"... | [
"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\",\"... | please list information regarding san francisco 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 : airport_code | airport_name | airport_location | state_code | country_name | time_zone_code | minimum_connect_time row 1 : OAK | METROPOLITAN OAKLAND INTERNATIONAL | OAKLAND, CALIFORNIA | CA | USA | PST | 30 row 2 : SFO | SAN FRANCISCO INTERNATIONAL | SAN FRANCISCO, CALIFORNIA | CA | USA | PST | 50 |
SELECT DISTINCT airline_1.airline_code FROM airline AS airline_1 WHERE airline_1.airline_code = 'NW' | what is airline nw | {"columns":["airline_code"],"index":[0],"data":[["NW"]]} | [
"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 is airline nw <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 : NW |
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' | how far is it from orlando airport to orlando | {"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\",\"... | how far is it from orlando airport to 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 | CHI... | col : miles_distant row 1 : 8 |
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 = 'WASHINGTON' | what type of ground transportation is available in washington | {"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\",\"... | what type of ground transportation is available in 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 ro... | col : transport_type row 1 : LIMOUSINE row 2 : AIR TAXI OPERATION row 3 : RAPID TRANSIT row 4 : 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 help me with ground transportation information i need to get 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 help me with ground transportation information i need to get 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 | BURB... | 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 , 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 = 'TACOMA' AND ground_service_1.airport_code = airport_1.airpor... | how do i get from the airport to downtown in tacoma | {"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\",\"... | how do i get from the airport to downtown in tacoma <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 , 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 | {"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 <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 , airport AS airport_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'SAN FRANCISCO' AND ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = 'SFO' | how do you travel from san francisco airport to downtown san francisco | {"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\",\"... | how do you travel from san francisco airport to downtown 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... | 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 is the ground transportation available in the city of 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 is the ground transportation available in the city of 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 | US... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RAPID TRANSIT row 4 : RENTAL CAR |
SELECT DISTINCT city_1.city_code FROM city AS city_1 , airport_service AS airport_service_1 , airport AS airport_1 WHERE city_1.city_code = airport_service_1.city_code AND airport_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = 'MCO' | what city is the airport mco in | {"columns":["city_code"],"index":[0],"data":[["OORL"]]} | [
"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 city is the airport mco in <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 : city_code row 1 : OORL |
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 = 'BWI' AND ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'BALTIMORE' | what is the ground transportation between airport and baltimore | {"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\",\"... | what is the ground transportation between airport and 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 ... | 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 = 'NEW YORK' AND ground_service_1.transport_type = 'RENTAL CAR' | i will need a car at new york | {"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\",\"... | i will need a car at 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 ... | col : transport_type row 1 : RENTAL CAR |
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 , airport AS airport_1 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = 'PIT' | what ground transportation is available from the pittsburgh airport | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"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\":[[... | what ground transportation is available from the 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 | NAS... | 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 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = 'SFO' | what types of ground transportation are there to san francisco airport | {"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]} | [
"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\":[[... | what types of ground transportation are there to san francisco 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 | ... | 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 , city AS city_2 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'BOSTON' OR ground_service_1.city_code = city_2.city_code AND city_2.city_name = 'BALTIMORE' | show me ground transportation in boston and 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 boston and 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 :... | 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 = 'BALTIMORE' | what ground transportation is available 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\",\"... | what ground transportation is available 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 : CCH... | 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' | explain restriction ap/57 | {"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\"... | explain restriction ap/57 <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 | ... | 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 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'TORONTO' | tell me about ground transportation at toronto | {"columns":["transport_type"],"index":[0,1,2,3],"data":[["AIR TAXI OPERATION"],["RENTAL CAR"],["TAXI"],["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\",\"... | tell me about ground transportation at 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 | EST row 5 : CCHI | CH... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : RENTAL CAR row 3 : TAXI row 4 : LIMOUSINE |
SELECT DISTINCT airport_1.airport_code FROM airport AS airport_1 WHERE airport_1.airport_code = 'MCO' | what does mco stand for | {"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 stand for <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 ... | 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 = 'OAKLAND' | ground transportation 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\",\"... | ground transportation 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 : CCHI | CHICAGO | IL | U... | col : transport_type row 1 : LIMOUSINE row 2 : RENTAL CAR row 3 : AIR TAXI OPERATION |
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' AND city_1.state_code = 'TX' | what is the ground transportation available in fort worth texas | {"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 texas <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 : LIMOUSINE row 2 : RENTAL CAR |
SELECT DISTINCT restriction_1.advance_purchase , restriction_1.stopovers , restriction_1.saturday_stay_required , restriction_1.minimum_stay , restriction_1.maximum_stay , restriction_1.application , restriction_1.no_discounts , restriction_1.restriction_code FROM restriction AS restriction_1 WHERE restriction_1.restri... | what is restriction ap/57 | {"columns":["advance_purchase","stopovers","saturday_stay_required","minimum_stay","maximum_stay","application","no_discounts","restriction_code"],"index":[0],"data":[[7,"YES","YES",1,999,"FARES NOT APPLICABLE TO\/FROM INTERMEDIATE POINTS","CHILDREN'S FARES, SALES AGENTS, TOUR CONDUCTORS","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 restriction ap/57 <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 | ... | col : advance_purchase | stopovers | saturday_stay_required | minimum_stay | maximum_stay | application | no_discounts | restriction_code row 1 : 7 | YES | YES | 1 | 999 | FARES NOT APPLICABLE TO/FROM INTERMEDIATE POINTS | CHILDREN'S FARES, SALES AGENTS, TOUR CONDUCTORS | AP/57 |
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 ... | how do i get downtown from the toronto airport | {"columns":["transport_type"],"index":[0,1,2,3],"data":[["AIR TAXI OPERATION"],["RENTAL CAR"],["TAXI"],["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\",\"... | how do i get downtown from the toronto 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 : CCHI | CH... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : RENTAL CAR row 3 : TAXI row 4 : LIMOUSINE |
SELECT DISTINCT aircraft_1.aircraft_code FROM aircraft AS aircraft_1 WHERE aircraft_1.basic_type = 'F28' | what is the seating capacity for the f28 | {"columns":["aircraft_code"],"index":[0],"data":[["F28"]]} | [
"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... | what is the seating capacity for the f28 <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 : F28 |
SELECT DISTINCT aircraft_1.aircraft_code FROM aircraft AS aircraft_1 WHERE aircraft_1.aircraft_code = '72S' | how many people fit on a 72s airplane | {"columns":["aircraft_code"],"index":[0],"data":[["72S"]]} | [
"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 people fit on a 72s airplane <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 | NO ... | col : aircraft_code row 1 : 72S |
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 = 'ATL' AND ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'ATLANTA' | ground transportation atl to atlanta | {"columns":["transport_type"],"index":[0,1,2,3],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RAPID TRANSIT"],["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 atl to 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 | CHICAGO | IL... | 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 = 'DFW' | what does dfw mean | {"columns":["airport_code"],"index":[0],"data":[["DFW"]]} | [
"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 dfw 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 : DFW |
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 = 'SAN DIEGO' AND ground_service_1.airport_code = airport_1.air... | is there ground transportation from san diego airport to the downtown area | {"columns":["transport_type"],"index":[0,1],"data":[["AIR TAXI OPERATION"],["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\",\"... | is there ground transportation from san diego airport to the downtown area <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 : 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 , city AS city_2 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = airport_service_1.airport_code AND airport_ser... | what is the schedule of ground transportation from washington airport into downtown | {"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\",\"... | what is the schedule of ground transportation from washington airport into 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 | BALTIMO... | col : transport_type row 1 : LIMOUSINE row 2 : AIR TAXI OPERATION row 3 : RAPID TRANSIT row 4 : 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 much time does it take to go between the airport and downtown by ground transportation in dallas | {"columns":["minutes_distant"],"index":[0,1],"data":[[null],[70.0]]} | [
"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 much time does it take to go between the airport and downtown by 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... | col : minutes_distant row 1 : row 2 : 70.0 |
SELECT DISTINCT airport_1.airport_code FROM airport AS airport_1 WHERE airport_1.airport_code = 'BUR' | what is bur | {"columns":["airport_code"],"index":[0],"data":[["BUR"]]} | [
"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 bur <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 : BUR |
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 = 'DALLAS' AND ground_service_1.airport_code = airport_1.airpor... | what ground transportation is available in dallas tomorrow | {"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\",\"... | what ground transportation is available in dallas tomorrow <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 = 'ATLANTA' | what ground transportation is there 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\",\"... | what ground transportation is there 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 | CH... | 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 , airport AS airport_1 , airport_service AS airport_service_1 , city AS city_1 , city AS city_2 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = airport_service_1.airport_code AND airport_ser... | what transportation is available from the dallas airport to downtown | {"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\",\"... | what transportation is available from the dallas airport 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 | 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 , airport AS airport_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'ATLANTA' AND ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = 'ATL' | is there ground transportation from atlanta airport to downtown atlanta | {"columns":["transport_type"],"index":[0,1,2,3],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RAPID TRANSIT"],["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 atlanta airport to downtown 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 | US... | 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 = 'PITTSBURGH' | please list available ground transportation 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\",\"... | please list available ground transportation 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 ... | 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 = 'BALTIMORE' | is there 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\",\"... | is there 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 | 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 , 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 ground transportation 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\",\"... | please give ground transportation 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 : CCHI... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR |
SELECT DISTINCT airline_1.airline_code , airline_1.airline_name , airline_1.note FROM airline AS airline_1 WHERE airline_1.airline_code = 'UA' | define airline ua | {"columns":["airline_code","airline_name","note"],"index":[0],"data":[["UA","UNITED AIRLINES",null]]} | [
"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... | define airline ua <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 AI... | col : airline_code | airline_name | note row 1 : UA | UNITED AIRLINES | |
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' | information on 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\",\"... | information on 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 | CH... | 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 = 'LAS VEGAS' | ground transportation in las vegas | {"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\",\"... | ground transportation in 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 | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO | IL |... | 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 = '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 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DENVER' | is there 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\",\"... | is there 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 : 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 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'PITTSBURGH' | show me ground transportation information for 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\",\"... | show me ground transportation information 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 :... | 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 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'ATLANTA' AND ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = 'ATL' | is there transportation from the atlanta airport to downtown atlanta | {"columns":["transport_type"],"index":[0,1,2,3],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RAPID TRANSIT"],["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 transportation from the atlanta airport to downtown 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 airline_1.airline_code FROM airline AS airline_1 WHERE airline_1.airline_code = 'US' | what is airline us | {"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... | what is airline us <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 : US |
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 , city AS city_2 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = airport_service_1.airport_code AND airport_ser... | what ground transportation is available from pittsburgh to 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\",\"... | what ground transportation is available from pittsburgh 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 | 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 , 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... | show me a list of ground transportation at denver | {"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 a list of ground transportation at 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 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'ATLANTA' | atlanta 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\",\"... | atlanta 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 5 : CCHI | CHICAGO | IL | USA ... | 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 = 'BALTIMORE' | 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\",\"... | 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 | CHICAGO | IL |... | 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 = 'OAKLAND' | ground transport 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\",\"... | ground transport 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 : CCHI | CHICAGO | IL | USA | ... | col : transport_type row 1 : LIMOUSINE row 2 : RENTAL CAR row 3 : AIR TAXI OPERATION |
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' | please give me ground transportation information for 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\",\"... | please give me ground transportation information for 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 , airport AS airport_1 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = 'PHL' | what type of ground transportation is available at philadelphia airport | {"columns":["transport_type"],"index":[0,1,2,3],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RAPID TRANSIT"],["RENTAL CAR"]]} | [
"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\":[[... | what type of ground transportation is available at philadelphia 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 |... | col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RAPID TRANSIT row 4 : RENTAL CAR |
SELECT DISTINCT restriction_1.restriction_code FROM restriction AS restriction_1 WHERE restriction_1.restriction_code = 'AP/57' | what is the ap57 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 ap57 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/2... | 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 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DALLAS' | dallas 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\",\"... | dallas 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 5 : CCHI | CHICAGO | IL | USA |... | col : transport_type row 1 : LIMOUSINE row 2 : RENTAL CAR |
SELECT DISTINCT airline_1.airline_code FROM airline AS airline_1 WHERE airline_1.airline_code = 'UA' | what does the abbreviation ua mean | {"columns":["airline_code"],"index":[0],"data":[["UA"]]} | [
"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 does the abbreviation ua mean <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 ... | col : airline_code row 1 : UA |
SELECT DISTINCT class_of_service_1.booking_class , class_of_service_1.rank , class_of_service_1.class_description FROM class_of_service AS class_of_service_1 WHERE class_of_service_1.booking_class = 'Q' OR class_of_service_1.booking_class = 'F' | what's the difference between fare code q and fare code f | {"columns":["booking_class","rank","class_description"],"index":[0,1],"data":[["F",2,"FIRST CLASS"],["Q",12,"COACH ECONOMY CLASS DISCOUNTED"]]} | [
"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's the difference between fare code q and fare code f <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 SER... | col : booking_class | rank | class_description row 1 : F | 2 | FIRST CLASS row 2 : Q | 12 | COACH ECONOMY CLASS DISCOUNTED |
SELECT DISTINCT airline_1.airline_code FROM airline AS airline_1 WHERE airline_1.airline_code = 'AS' | what 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 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 AIRLINES,... | 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 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 class_of_service_1.booking_class FROM class_of_service AS class_of_service_1 WHERE class_of_service_1.booking_class = 'Y' | fare code y what does that mean | {"columns":["booking_class"],"index":[0],"data":[["Y"]]} | [
"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\"],[\... | fare code y what does that 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... | col : booking_class row 1 : Y |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.