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 = 'CHARLOTTE'
what ground transport is available in charlotte
{"columns":["transport_type"],"index":[0],"data":[["RENTAL CAR"]]}
[ "city", "ground_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
what ground transport is available in charlotte <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | C...
col : transport_type row 1 : 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...
can i see ground transportation from long beach airport to downtown
{"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\",\"...
can i see ground transportation from long beach 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 : AIR TAXI OPERATION row 2 : RENTAL CAR
SELECT DISTINCT airport_1.airport_code FROM airport AS airport_1 WHERE airport_1.airport_code = 'HOU'
what does hou mean
{"columns":["airport_code"],"index":[0],"data":[["HOU"]]}
[ "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 hou 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 : HOU
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'
do you have ground transportation between airport and downtown in boston
{"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]}
[ "city", "airport", "ground_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
do you have ground transportation between airport and downtown in boston <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | U...
col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR
SELECT DISTINCT airport_service_1.minutes_distant FROM airport_service AS airport_service_1 , city AS city_1 , airport AS airport_1 WHERE airport_service_1.city_code = city_1.city_code AND city_1.city_name = 'ATLANTA' AND airport_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = 'ATL'
how long does it take to get from atlanta airport into the city of atlanta
{"columns":["minutes_distant"],"index":[0],"data":[[45]]}
[ "city", "airport_service", "airport" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
how long does it take to get from atlanta airport into the city of 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 |...
col : minutes_distant row 1 : 45
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...
is there ground transportation from the airport in denver 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\",\"...
is there ground transportation from the airport in denver 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 aircraft_1.aircraft_code FROM aircraft AS aircraft_1 WHERE aircraft_1.aircraft_code = 'D10'
what is the abbreviation d10
{"columns":["aircraft_code"],"index":[0],"data":[["D10"]]}
[ "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 abbreviation d10 <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 | 92 | 11...
col : aircraft_code row 1 : D10
SELECT DISTINCT restriction_1.restriction_code FROM restriction AS restriction_1 WHERE restriction_1.restriction_code = 'AP/57'
what does 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\"...
what does 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 , 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....
can you tell me how to get from the airport in philadelphia 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\",\"...
can you tell me how to get from the airport in philadelphia 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 | 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 = 'DENVER'
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\",\"...
ground transportation in denver <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO | IL | US...
col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'SAN FRANCISCO'
what ground transportation is available in san francisco
{"columns":["transport_type"],"index":[0,1,2],"data":[["LIMOUSINE"],["AIR TAXI OPERATION"],["RENTAL CAR"]]}
[ "city", "ground_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
what ground transportation is available in san francisco <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 :...
col : transport_type row 1 : LIMOUSINE row 2 : AIR TAXI OPERATION row 3 : RENTAL CAR
SELECT DISTINCT airport_1.airport_code FROM airport AS airport_1 WHERE 1 = 1
names of airports
{"columns":["airport_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,46,47,48,49,50,51],"data":[["ATL"],["BNA"],["BOS"],["BUR"],["BWI"],["CLE"],["CLT"],["CMH"],["CVG"],["DAL"],["DCA"],["DEN"],["DET"],["DFW"],["DTW"],["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\":[[...
names of airports <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 : ATL row 2 : BNA row 3 : BOS row 4 : BUR row 5 : BWI row 6 : CLE row 7 : CLT row 8 : CMH row 9 : CVG row 10 : DAL row 11 : DCA row 12 : DEN row 13 : DET row 14 : DFW row 15 : DTW row 16 : EWR row 17 : HOU row 18 : HPN row 19 : IAD row 20 : IAH row 21 : IND row 22 : JFK row 23 : LAS row 24 : LA...
SELECT DISTINCT aircraft_1.aircraft_code FROM aircraft AS aircraft_1 WHERE aircraft_1.aircraft_code = '73S'
how many people fit on a 73s
{"columns":["aircraft_code"],"index":[0],"data":[["73S"]]}
[ "aircraft" ]
[ "{\"columns\":[\"aircraft_code\",\"aircraft_description\",\"manufacturer\",\"basic_type\",\"engines\",\"propulsion\",\"wide_body\",\"wing_span\",\"length\",\"weight\",\"capacity\",\"pay_load\",\"cruising_speed\",\"range_miles\",\"pressurized\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,2...
how many people fit on a 73s <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 | 92 | 11...
col : aircraft_code row 1 : 73S
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'BALTIMORE'
what ground transportation is available at 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 at 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 class_of_service_1.booking_class FROM class_of_service AS class_of_service_1 WHERE class_of_service_1.booking_class = 'YN'
what does code yn mean
{"columns":["booking_class"],"index":[0],"data":[["YN"]]}
[ "class_of_service" ]
[ "{\"columns\":[\"booking_class\",\"rank\",\"class_description\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18],\"data\":[[\"B\",10,\"COACH ECONOMY CLASS DISCOUNTED\"],[\"BN\",17,\"COACH ECONOMY CLASS DISCOUNTED NIGHT SERVICE\"],[\"C\",4,\"BUSINESS CLASS\"],[\"CN\",8,\"BUSINESS CLASS NIGHT SERVICE\"],[\...
what does code yn 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 CLASS ro...
col : booking_class row 1 : YN
SELECT DISTINCT airport_1.airport_code FROM airport AS airport_1 WHERE 1 = 1
airports
{"columns":["airport_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,46,47,48,49,50,51],"data":[["ATL"],["BNA"],["BOS"],["BUR"],["BWI"],["CLE"],["CLT"],["CMH"],["CVG"],["DAL"],["DCA"],["DEN"],["DET"],["DFW"],["DTW"],["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\":[[...
airports <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 | CS...
col : airport_code row 1 : ATL row 2 : BNA row 3 : BOS row 4 : BUR row 5 : BWI row 6 : CLE row 7 : CLT row 8 : CMH row 9 : CVG row 10 : DAL row 11 : DCA row 12 : DEN row 13 : DET row 14 : DFW row 15 : DTW row 16 : EWR row 17 : HOU row 18 : HPN row 19 : IAD row 20 : IAH row 21 : IND row 22 : JFK row 23 : LAS row 24 : LA...
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'
is ground transportation available in philadelphia
{"columns":["transport_type"],"index":[0,1,2,3],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RAPID TRANSIT"],["RENTAL CAR"]]}
[ "city", "ground_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
is ground transportation available in philadelphia <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 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 , airport AS airport_1 , airport_service AS airport_service_1 , city AS city_1 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = airport_service_1.airport_code AND airport_service_1.city_code ...
show me the ground transportation to westchester county
{"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\",\"...
show me the ground transportation to westchester county <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : ...
col : transport_type row 1 : AIR TAXI OPERATION row 2 : RENTAL CAR
SELECT DISTINCT aircraft_1.aircraft_code FROM aircraft AS aircraft_1 WHERE aircraft_1.propulsion = 'TURBOPROP'
how many people fly on a turboprop
{"columns":["aircraft_code"],"index":[0,1,2,3,4,5,6,7,8,9,10,11,12,13],"data":[["AT7"],["ATP"],["ATR"],["BE1"],["BE9"],["DH7"],["DH8"],["DO8"],["EM2"],["F27"],["J31"],["SF3"],["SH6"],["SWM"]]}
[ "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 fly on a turboprop <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 | 9...
col : aircraft_code row 1 : AT7 row 2 : ATP row 3 : ATR row 4 : BE1 row 5 : BE9 row 6 : DH7 row 7 : DH8 row 8 : DO8 row 9 : EM2 row 10 : F27 row 11 : J31 row 12 : SF3 row 13 : SH6 row 14 : SWM
SELECT DISTINCT airline_1.airline_code FROM airline AS airline_1 WHERE airline_1.airline_code = 'US'
what does us stand for
{"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 does us stand for <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 STAT...
col : airline_code row 1 : US
SELECT DISTINCT restriction_1.restriction_code FROM restriction AS restriction_1 WHERE restriction_1.restriction_code = 'AP/57'
what does restriction ap/57 mean
{"columns":["restriction_code"],"index":[0],"data":[["AP\/57"]]}
[ "restriction" ]
[ "{\"columns\":[\"restriction_code\",\"advance_purchase\",\"stopovers\",\"saturday_stay_required\",\"minimum_stay\",\"maximum_stay\",\"application\",\"no_discounts\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13],\"data\":[[\"AP\\/12\",7,\"NO\",\"YES\",1,21,\"FOR ROUND TRIP TRAVEL BETWEEN U.S.\\/CANADA AND CARIBBEAN\"...
what does restriction ap/57 mean <table_name> : restriction col : restriction_code | advance_purchase | stopovers | saturday_stay_required | minimum_stay | maximum_stay | application | no_discounts row 1 : AP/12 | 7 | NO | YES | 1 | 21 | FOR ROUND TRIP TRAVEL BETWEEN U.S./CANADA AND CARIBBEAN | CONTACT CARRIER row 2 : ...
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 = 'DENVER'
what ground transportation is there from 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 there from 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 | C...
col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , airport AS airport_1 , city AS city_1 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = 'BOS' AND ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'BOSTON'
ground transportation between airport and downtown in boston
{"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]}
[ "city", "airport", "ground_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
ground transportation between airport and downtown in boston <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row...
col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DENVER'
ground transportation denver
{"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]}
[ "city", "ground_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
ground transportation denver <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO | IL | USA |...
col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR
SELECT DISTINCT airport_1.airport_code FROM airport AS airport_1 WHERE airport_1.airport_code = 'YYZ'
what is yyz
{"columns":["airport_code"],"index":[0],"data":[["YYZ"]]}
[ "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 yyz <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 : YYZ
SELECT DISTINCT restriction_1.restriction_code FROM restriction AS restriction_1 WHERE restriction_1.restriction_code = 'AP/57'
explain the 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 the 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/...
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.transport_type = 'LIMOUSINE' AND ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'LOS ANGELES'
what limousine service in los angeles
{"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\",\"...
what limousine service in los angeles <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 : transport_type row 1 : LIMOUSINE
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 ...
i'll need a rental car at the atlanta airport can you show me what's available
{"columns":["transport_type"],"index":[0],"data":[["RENTAL CAR"]]}
[ "city", "airport", "airport_service", "ground_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
i'll need a rental car at the atlanta airport can you show me what's available <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | ...
col : transport_type row 1 : RENTAL CAR
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 = 'B'
what's the difference between fare code q and fare code b
{"columns":["booking_class","rank","class_description"],"index":[0,1],"data":[["B",10,"COACH ECONOMY CLASS DISCOUNTED"],["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 b <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 : B | 10 | COACH ECONOMY CLASS DISCOUNTED row 2 : Q | 12 | COACH ECONOMY CLASS DISCOUNTED
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 = 'WASHINGTON'
how do i get from bwi to washington
{"columns":["transport_type"],"index":[0],"data":[["LIMOUSINE"]]}
[ "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 i get from bwi to washington <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO | IL ...
col : transport_type row 1 : LIMOUSINE
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 do i get from pittsburgh airport to downtown pittsburgh
{"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]}
[ "city", "airport", "airport_service", "ground_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
how do i get from pittsburgh airport to downtown pittsburgh <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row ...
col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR
SELECT DISTINCT airport_1.airport_code FROM airport AS airport_1 WHERE airport_1.airport_code = 'MIA'
what is mia
{"columns":["airport_code"],"index":[0],"data":[["MIA"]]}
[ "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 mia <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 : MIA
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'
please show me all airports in denver
{"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\",\"...
please show me all airports 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 | I...
col : airport_code row 1 : DEN
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 available 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 available 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 |...
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 ...
i need information on ground transportation from the airport in atlanta
{"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\",\"...
i need information on ground transportation from the airport 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 | US...
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 does us mean
{"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 does us 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 | TRANS STATES AI...
col : airline_code row 1 : US
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 = 'HOUSTON'
houston airports
{"columns":["airport_code"],"index":[0,1],"data":[["HOU"],["IAH"]]}
[ "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\",\"...
houston airports <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 : airport_code row 1 : HOU row 2 : IAH
SELECT DISTINCT class_of_service_1.booking_class FROM class_of_service AS class_of_service_1 WHERE 1 = 1
could you please list all of the classes of flights there are
{"columns":["booking_class"],"index":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18],"data":[["P"],["F"],["J"],["C"],["S"],["FN"],["Y"],["CN"],["YN"],["B"],["K"],["H"],["Q"],["M"],["L"],["V"],["BN"],["KN"],["U"]]}
[ "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\"],[\...
could you please list all of the classes of flights there are <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...
col : booking_class row 1 : P row 2 : F row 3 : J row 4 : C row 5 : S row 6 : FN row 7 : Y row 8 : CN row 9 : YN row 10 : B row 11 : K row 12 : H row 13 : Q row 14 : M row 15 : L row 16 : V row 17 : BN row 18 : KN row 19 : U
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...
is there ground transportation 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\",\"...
is there 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...
col : transport_type row 1 : LIMOUSINE row 2 : RENTAL CAR
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'SAN FRANCISCO'
show me the ground transportation schedule in san francisco on thursday evening
{"columns":["transport_type"],"index":[0,1,2],"data":[["LIMOUSINE"],["AIR TAXI OPERATION"],["RENTAL CAR"]]}
[ "city", "ground_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
show me the ground transportation schedule in san francisco on thursday evening <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE |...
col : transport_type row 1 : LIMOUSINE row 2 : AIR TAXI OPERATION row 3 : RENTAL CAR
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'CHARLOTTE'
what ground transportation is available in charlotte
{"columns":["transport_type"],"index":[0],"data":[["RENTAL CAR"]]}
[ "city", "ground_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
what ground transportation is available in charlotte <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCH...
col : transport_type row 1 : RENTAL CAR
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'ATLANTA'
i would like to find out the ground travel 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\",\"...
i would like to find out the ground travel 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 ...
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 , city AS city_1 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = 'DFW' AND ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DALLAS'
please give me ground transportation information between dallas fort worth airport and downtown dallas
{"columns":["transport_type"],"index":[0,1],"data":[["LIMOUSINE"],["RENTAL CAR"]]}
[ "city", "airport", "ground_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
please give me ground transportation information between dallas fort worth airport and downtown dallas <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row...
col : transport_type row 1 : LIMOUSINE row 2 : RENTAL CAR
SELECT DISTINCT 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 is the name of the airport at denver
{"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 is the name of the airport 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 | CHICAGO...
col : airport_code row 1 : DEN
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'PHOENIX'
ground transportation in phoenix
{"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]}
[ "city", "ground_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
ground transportation in phoenix <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO | IL | U...
col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR
SELECT DISTINCT airline_1.airline_code FROM airline AS airline_1 WHERE airline_1.airline_code = 'DL'
what does the abbreviation dl mean
{"columns":["airline_code"],"index":[0],"data":[["DL"]]}
[ "airline" ]
[ "{\"columns\":[\"airline_code\",\"airline_name\",\"note\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"2V\",\"NORTHEAST EXPRESS REGIONAL AIRLINES\",\"NATL AIR TRANSPORTATION ASSOC, INC.\"],[\"3J\",\"AIR ALLI...
what does the abbreviation dl 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 : DL
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 = 'SEATTLE'
what kind of ground transportation can you offer me in seattle
{"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]}
[ "city", "ground_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
what kind of ground transportation can you offer me in seattle <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST r...
col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR
SELECT DISTINCT airline_1.airline_code FROM airline AS airline_1 WHERE airline_1.airline_code = 'HP'
what is hp
{"columns":["airline_code"],"index":[0],"data":[["HP"]]}
[ "airline" ]
[ "{\"columns\":[\"airline_code\",\"airline_name\",\"note\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"2V\",\"NORTHEAST EXPRESS REGIONAL AIRLINES\",\"NATL AIR TRANSPORTATION ASSOC, INC.\"],[\"3J\",\"AIR ALLI...
what is hp <table_name> : airline col : airline_code | airline_name | note row 1 : 2V | NORTHEAST EXPRESS REGIONAL AIRLINES | NATL AIR TRANSPORTATION ASSOC, INC. row 2 : 3J | AIR ALLIANCE | row 3 : 7V | ALPHA AIR | row 4 : 9E | EXPRESS AIRLINES I, INC. | row 5 : 9L | COLGAN AIR | row 6 : 9N | TRANS STATES AIRLINES,...
col : airline_code row 1 : HP
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 = 'PHL' AND ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'PHILADELPHIA'
what is the ground transportation from philadelphia airport to the city proper
{"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\",\"...
what is the ground transportation from philadelphia airport to the city proper <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | ...
col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : 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.transport_type = 'RENTAL CAR' AND ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'HOUSTON'
can i have a rental car in houston
{"columns":["transport_type"],"index":[0],"data":[["RENTAL CAR"]]}
[ "city", "ground_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
can i have a rental car in houston <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO | IL |...
col : transport_type row 1 : RENTAL CAR
SELECT DISTINCT airport_1.airport_code FROM airport AS airport_1 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 class_of_service_1.booking_class FROM class_of_service AS class_of_service_1 WHERE class_of_service_1.booking_class = 'H'
what is fare class h
{"columns":["booking_class"],"index":[0],"data":[["H"]]}
[ "class_of_service" ]
[ "{\"columns\":[\"booking_class\",\"rank\",\"class_description\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18],\"data\":[[\"B\",10,\"COACH ECONOMY CLASS DISCOUNTED\"],[\"BN\",17,\"COACH ECONOMY CLASS DISCOUNTED NIGHT SERVICE\"],[\"C\",4,\"BUSINESS CLASS\"],[\"CN\",8,\"BUSINESS CLASS NIGHT SERVICE\"],[\...
what is fare class h <table_name> : class_of_service col : booking_class | rank | class_description row 1 : B | 10 | COACH ECONOMY CLASS DISCOUNTED row 2 : BN | 17 | COACH ECONOMY CLASS DISCOUNTED NIGHT SERVICE row 3 : C | 4 | BUSINESS CLASS row 4 : CN | 8 | BUSINESS CLASS NIGHT SERVICE row 5 : F | 2 | FIRST CLASS row ...
col : booking_class row 1 : H
SELECT DISTINCT airport_1.airport_code FROM airport AS airport_1 WHERE airport_1.airport_code = 'EWR'
what does ewr mean
{"columns":["airport_code"],"index":[0],"data":[["EWR"]]}
[ "airport" ]
[ "{\"columns\":[\"airport_code\",\"airport_name\",\"airport_location\",\"state_code\",\"country_name\",\"time_zone_code\",\"minimum_connect_time\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],\"data\":[[...
what does ewr mean <table_name> : airport col : airport_code | airport_name | airport_location | state_code | country_name | time_zone_code | minimum_connect_time row 1 : ATL | WILLIAM B. HARTSFIELD ATLANTA INTL. | ATLANTA, GEORGIA | GA | USA | EST | 55 row 2 : BNA | NASHVILLE INTERNATIONAL | NASHVILLE, TENNESSEE | TN ...
col : airport_code row 1 : EWR
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'PHILADELPHIA'
show me ground transportation in philadelphia on monday morning
{"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\",\"...
show me ground transportation in philadelphia on monday morning <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 : RAPID TRANSIT row 4 : RENTAL CAR
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DENVER'
what kind of ground transportation is there in denver
{"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]}
[ "city", "ground_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
what kind of ground transportation is there in denver <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CC...
col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR
SELECT DISTINCT aircraft_1.aircraft_code FROM aircraft AS aircraft_1 WHERE aircraft_1.aircraft_code = '100'
how many seats in a 100
{"columns":["aircraft_code"],"index":[0],"data":[["100"]]}
[ "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 seats in a 100 <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 | 92 | 117 | 9...
col : aircraft_code row 1 : 100
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'BOSTON'
what ground transportation is available at boston
{"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]}
[ "city", "ground_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
what ground transportation is available at boston <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI |...
col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'CHICAGO'
tell me about the ground transportation in chicago
{"columns":["transport_type"],"index":[0,1,2,3],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"],["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\",\"...
tell me about the ground transportation in chicago <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 row 4 : RAPID TRANSIT
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'SEATTLE'
i need ground transportation in seattle
{"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\",\"...
i need ground transportation in seattle <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO |...
col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DALLAS'
i need ground transportation in dallas please show me what's available
{"columns":["transport_type"],"index":[0,1],"data":[["LIMOUSINE"],["RENTAL CAR"]]}
[ "city", "ground_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
i need ground transportation in dallas please show me what's available <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA...
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 type of ground transportation is available at logan airport
{"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]}
[ "city", "airport", "airport_service", "ground_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
what type of ground transportation is available at logan airport <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST...
col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR
SELECT DISTINCT airport_service_1.miles_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 = 'PITTSBURGH'
how far is the airport from downtown pittsburgh
{"columns":["miles_distant"],"index":[0],"data":[[17]]}
[ "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\",\"...
how far is the airport from downtown pittsburgh <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | C...
col : miles_distant row 1 : 17
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'SAN FRANCISCO'
show me ground transportation in san francisco
{"columns":["transport_type"],"index":[0,1,2],"data":[["LIMOUSINE"],["AIR TAXI OPERATION"],["RENTAL CAR"]]}
[ "city", "ground_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
show me ground transportation in san francisco <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CH...
col : transport_type row 1 : LIMOUSINE row 2 : AIR TAXI OPERATION row 3 : RENTAL CAR
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'BOSTON'
show me boston ground transportation
{"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 boston 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...
col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR
SELECT DISTINCT airline_1.airline_code FROM airline AS airline_1 WHERE airline_1.airline_code = 'DL'
what is airline dl
{"columns":["airline_code"],"index":[0],"data":[["DL"]]}
[ "airline" ]
[ "{\"columns\":[\"airline_code\",\"airline_name\",\"note\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"2V\",\"NORTHEAST EXPRESS REGIONAL AIRLINES\",\"NATL AIR TRANSPORTATION ASSOC, INC.\"],[\"3J\",\"AIR ALLI...
what is airline dl <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 : DL
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 , city AS city_2 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DALLAS' OR ground_service_1.city_code = city_2.city_code AND city_2.city_name = 'BOSTON'
ground transportation in dallas and boston
{"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 dallas and boston <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAG...
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 , airport AS airport_1 WHERE ground_service_1.transport_type = 'LIMOUSINE' AND ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = 'PIT'
is there a limousine service available from the pittsburgh airport
{"columns":["transport_type"],"index":[0],"data":[["LIMOUSINE"]]}
[ "airport", "ground_service" ]
[ "{\"columns\":[\"airport_code\",\"airport_name\",\"airport_location\",\"state_code\",\"country_name\",\"time_zone_code\",\"minimum_connect_time\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],\"data\":[[...
is there a limousine service 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 | NASH...
col : transport_type row 1 : LIMOUSINE
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , airport AS airport_1 , city AS city_1 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = 'DFW' AND ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DALLAS'
tell me about ground transportation between the dallas fort worth airport and downtown dallas
{"columns":["transport_type"],"index":[0,1],"data":[["LIMOUSINE"],["RENTAL CAR"]]}
[ "city", "airport", "ground_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
tell me about ground transportation between the dallas fort worth airport and downtown dallas <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI...
col : transport_type row 1 : LIMOUSINE row 2 : RENTAL CAR
SELECT DISTINCT airport_1.airport_code FROM airport AS airport_1 , airport_service AS airport_service_1 , city AS city_1 WHERE airport_1.airport_code = airport_service_1.airport_code AND airport_service_1.city_code = city_1.city_code AND city_1.city_name = 'PHILADELPHIA'
what is the name of the airport in philadelphia
{"columns":["airport_code"],"index":[0],"data":[["PHL"]]}
[ "city", "airport", "airport_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
what is the name of the airport in philadelphia <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | C...
col : airport_code row 1 : PHL
SELECT DISTINCT city_1.city_name 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 = 'BWI' AND city_1.city_name = 'WASHINGTON'
is bwi washington
{"columns":["city_name"],"index":[0],"data":[["WASHINGTON"]]}
[ "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\",\"...
is bwi washington <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO | IL | USA | CST row 6 ...
col : city_name row 1 : WASHINGTON
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 available 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 available 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 |...
col : transport_type row 1 : LIMOUSINE row 2 : RENTAL CAR
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 , airport AS airport_1 , airport_service AS airport_service_1 , city AS city_2 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'DENVER' AND ground_service_1.airport_code = airport_1.airpor...
show me the ground transportation in 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 the 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 | CHICA...
col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'MINNEAPOLIS'
ground transportation minneapolis
{"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 minneapolis <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 airport_1.airport_code FROM airport AS airport_1 WHERE airport_1.airport_code = 'LAX'
what does lax stand for
{"columns":["airport_code"],"index":[0],"data":[["LAX"]]}
[ "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 lax 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 : LAX
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 = 'LAX' AND airport_service_1.city_code = city_1.city_code AND city_1.city_name = 'LOS ANGELES'
what is the distance from los angeles international airport to los angeles
{"columns":["miles_distant"],"index":[0],"data":[[17]]}
[ "city", "airport_service", "airport" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
what is the distance from los angeles international airport to los angeles <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 : miles_distant row 1 : 17
SELECT DISTINCT days_1.day_name FROM days AS days_1 WHERE days_1.days_code = 'SA'
what is sa
{"columns":["day_name"],"index":[0],"data":[["SATURDAY"]]}
[ "days" ]
[ "{\"columns\":[\"days_code\",\"day_name\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90...
what is sa <table_name> : days col : days_code | day_name row 1 : DAILY | FRIDAY row 2 : DAILY | MONDAY row 3 : DAILY | SATURDAY row 4 : DAILY | SUNDAY row 5 : DAILY | THURSDAY row 6 : DAILY | TUESDAY row 7 : DAILY | WEDNESDAY row 8 : FR | FRIDAY row 9 : FR SA | FRIDAY row 10 : FR SA | SATURDAY row 11 : MO | MONDAY row...
col : day_name row 1 : SATURDAY
SELECT DISTINCT airline_1.airline_code FROM airline AS airline_1 WHERE airline_1.airline_code = 'HP'
what airline is hp
{"columns":["airline_code"],"index":[0],"data":[["HP"]]}
[ "airline" ]
[ "{\"columns\":[\"airline_code\",\"airline_name\",\"note\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"2V\",\"NORTHEAST EXPRESS REGIONAL AIRLINES\",\"NATL AIR TRANSPORTATION ASSOC, INC.\"],[\"3J\",\"AIR ALLI...
what airline is hp <table_name> : airline col : airline_code | airline_name | note row 1 : 2V | NORTHEAST EXPRESS REGIONAL AIRLINES | NATL AIR TRANSPORTATION ASSOC, INC. row 2 : 3J | AIR ALLIANCE | row 3 : 7V | ALPHA AIR | row 4 : 9E | EXPRESS AIRLINES I, INC. | row 5 : 9L | COLGAN AIR | row 6 : 9N | TRANS STATES A...
col : airline_code row 1 : HP
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'
is there any ground transportation to the city 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\",\"...
is there any ground transportation to the city 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 :...
col : transport_type row 1 : LIMOUSINE row 2 : RENTAL CAR
SELECT DISTINCT aircraft_1.aircraft_code FROM aircraft AS aircraft_1 WHERE aircraft_1.aircraft_code = '733'
what's the capacity of a 733
{"columns":["aircraft_code"],"index":[0],"data":[["733"]]}
[ "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's the capacity of a 733 <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 | 92 | 11...
col : aircraft_code row 1 : 733
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 ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'SAN FRANCISCO'
ground transportation san francisco
{"columns":["transport_type"],"index":[0,1,2],"data":[["LIMOUSINE"],["AIR TAXI OPERATION"],["RENTAL CAR"]]}
[ "city", "ground_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
ground transportation san francisco <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 : CCHI | CHICAGO | IL ...
col : transport_type row 1 : LIMOUSINE row 2 : AIR TAXI OPERATION row 3 : RENTAL CAR
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , airport AS airport_1 WHERE ground_service_1.airport_code = airport_1.airport_code AND airport_1.airport_code = 'BOS' AND ( ground_service_1.transport_type LIKE '%LIMOUSINE%' OR ground_service_1.transport_type LIKE '%TAXI%' )
are there any limousines or taxi services available at the boston airport
{"columns":["transport_type"],"index":[0,1],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"]]}
[ "airport", "ground_service" ]
[ "{\"columns\":[\"airport_code\",\"airport_name\",\"airport_location\",\"state_code\",\"country_name\",\"time_zone_code\",\"minimum_connect_time\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],\"data\":[[...
are there any limousines or taxi services available at the boston 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
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'BOSTON'
boston ground transportation
{"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\",\"...
boston 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 : RENTAL CAR
SELECT DISTINCT food_service_1.meal_description FROM food_service AS food_service_1 WHERE food_service_1.meal_code = 'S'
what is the meaning of meal code s
{"columns":["meal_description"],"index":[0],"data":[["SNACK"]]}
[ "food_service" ]
[ "{\"columns\":[\"meal_code\",\"meal_number\",\"compartment\",\"meal_description\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,7...
what is the meaning of meal code s <table_name> : food_service col : meal_code | meal_number | compartment | meal_description row 1 : B | 1 | COACH | BREAKFAST row 2 : B | 1 | FIRST | BREAKFAST row 3 : B/ | 1 | FIRST | BREAKFAST row 4 : B/BS | 1 | COACH | BREAKFAST row 5 : B/BS | 1 | FIRST | BREAKFAST row 6 : B/BS | 2 ...
col : meal_description row 1 : SNACK
SELECT DISTINCT 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 = 'WASHINGTON'
show me airports near washington dc
{"columns":["airport_code"],"index":[0,1,2],"data":[["BWI"],["DCA"],["IAD"]]}
[ "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\",\"...
show me airports near 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 | CHICAGO | IL ...
col : airport_code row 1 : BWI row 2 : DCA row 3 : IAD
SELECT DISTINCT airline_1.airline_code FROM airline AS airline_1 WHERE airline_1.airline_code = 'HP'
what airline stands for hp
{"columns":["airline_code"],"index":[0],"data":[["HP"]]}
[ "airline" ]
[ "{\"columns\":[\"airline_code\",\"airline_name\",\"note\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"2V\",\"NORTHEAST EXPRESS REGIONAL AIRLINES\",\"NATL AIR TRANSPORTATION ASSOC, INC.\"],[\"3J\",\"AIR ALLI...
what airline stands for hp <table_name> : airline col : airline_code | airline_name | note row 1 : 2V | NORTHEAST EXPRESS REGIONAL AIRLINES | NATL AIR TRANSPORTATION ASSOC, INC. row 2 : 3J | AIR ALLIANCE | row 3 : 7V | ALPHA AIR | row 4 : 9E | EXPRESS AIRLINES I, INC. | row 5 : 9L | COLGAN AIR | row 6 : 9N | TRANS ...
col : airline_code row 1 : HP
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'FORT WORTH'
what is the ground transportation available in the city of fort worth
{"columns":["transport_type"],"index":[0,1],"data":[["LIMOUSINE"],["RENTAL CAR"]]}
[ "city", "ground_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
what is the ground transportation available in the city of fort worth <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA ...
col : transport_type row 1 : LIMOUSINE row 2 : RENTAL CAR
SELECT DISTINCT airline_1.airline_code FROM airline AS airline_1 WHERE airline_1.airline_code = 'US'
what does us mean
{"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 does us 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 | TRANS STATES AI...
col : airline_code row 1 : US
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'ATLANTA'
ground transportation 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\",\"...
ground transportation 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 | 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 = 'DENVER'
what kind of ground transportation is available in denver
{"columns":["transport_type"],"index":[0,1,2],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RENTAL CAR"]]}
[ "city", "ground_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
what kind of ground transportation is available in denver <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 ...
col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR
SELECT DISTINCT airport_1.airport_code FROM airport AS airport_1 WHERE airport_1.airport_code = 'EWR'
what is ewr
{"columns":["airport_code"],"index":[0],"data":[["EWR"]]}
[ "airport" ]
[ "{\"columns\":[\"airport_code\",\"airport_name\",\"airport_location\",\"state_code\",\"country_name\",\"time_zone_code\",\"minimum_connect_time\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],\"data\":[[...
what is ewr <table_name> : airport col : airport_code | airport_name | airport_location | state_code | country_name | time_zone_code | minimum_connect_time row 1 : ATL | WILLIAM B. HARTSFIELD ATLANTA INTL. | ATLANTA, GEORGIA | GA | USA | EST | 55 row 2 : BNA | NASHVILLE INTERNATIONAL | NASHVILLE, TENNESSEE | TN | USA |...
col : airport_code row 1 : EWR
SELECT DISTINCT class_of_service_1.booking_class FROM class_of_service AS class_of_service_1 WHERE class_of_service_1.booking_class = 'H'
what is fare code h
{"columns":["booking_class"],"index":[0],"data":[["H"]]}
[ "class_of_service" ]
[ "{\"columns\":[\"booking_class\",\"rank\",\"class_description\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18],\"data\":[[\"B\",10,\"COACH ECONOMY CLASS DISCOUNTED\"],[\"BN\",17,\"COACH ECONOMY CLASS DISCOUNTED NIGHT SERVICE\"],[\"C\",4,\"BUSINESS CLASS\"],[\"CN\",8,\"BUSINESS CLASS NIGHT SERVICE\"],[\...
what is fare code h <table_name> : class_of_service col : booking_class | rank | class_description row 1 : B | 10 | COACH ECONOMY CLASS DISCOUNTED row 2 : BN | 17 | COACH ECONOMY CLASS DISCOUNTED NIGHT SERVICE row 3 : C | 4 | BUSINESS CLASS row 4 : CN | 8 | BUSINESS CLASS NIGHT SERVICE row 5 : F | 2 | FIRST CLASS row 6...
col : booking_class row 1 : H
SELECT DISTINCT class_of_service_1.booking_class FROM class_of_service AS class_of_service_1 WHERE class_of_service_1.booking_class = 'Q'
what is fare code q
{"columns":["booking_class"],"index":[0],"data":[["Q"]]}
[ "class_of_service" ]
[ "{\"columns\":[\"booking_class\",\"rank\",\"class_description\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18],\"data\":[[\"B\",10,\"COACH ECONOMY CLASS DISCOUNTED\"],[\"BN\",17,\"COACH ECONOMY CLASS DISCOUNTED NIGHT SERVICE\"],[\"C\",4,\"BUSINESS CLASS\"],[\"CN\",8,\"BUSINESS CLASS NIGHT SERVICE\"],[\...
what is fare code q <table_name> : class_of_service col : booking_class | rank | class_description row 1 : B | 10 | COACH ECONOMY CLASS DISCOUNTED row 2 : BN | 17 | COACH ECONOMY CLASS DISCOUNTED NIGHT SERVICE row 3 : C | 4 | BUSINESS CLASS row 4 : CN | 8 | BUSINESS CLASS NIGHT SERVICE row 5 : F | 2 | FIRST CLASS row 6...
col : booking_class row 1 : Q
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'SAN FRANCISCO'
what ground transportation is available in san francisco
{"columns":["transport_type"],"index":[0,1,2],"data":[["LIMOUSINE"],["AIR TAXI OPERATION"],["RENTAL CAR"]]}
[ "city", "ground_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
what ground transportation is available in san francisco <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row 5 :...
col : transport_type row 1 : LIMOUSINE row 2 : AIR TAXI OPERATION row 3 : RENTAL CAR
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 , airport AS airport_1 , airport_service AS airport_service_1 , city AS city_2 WHERE ground_service_1.city_code = city_1.city_code AND city_1.city_name = 'SAN FRANCISCO' AND ground_service_1.airport_code = airport_1...
what is the available ground transportation between san francisco and downtown
{"columns":["transport_type"],"index":[0,1,2],"data":[["LIMOUSINE"],["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\",\"...
what is the available ground transportation between san francisco and downtown <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | ...
col : transport_type row 1 : LIMOUSINE row 2 : AIR TAXI OPERATION row 3 : RENTAL CAR
SELECT DISTINCT ground_service_1.transport_type FROM ground_service AS ground_service_1 , city AS city_1 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 airline_1.airline_code FROM airline AS airline_1 WHERE airline_1.airline_name LIKE '%DELTA%' AND airline_1.airline_code = 'DL'
does dl stand for delta
{"columns":["airline_code"],"index":[0],"data":[["DL"]]}
[ "airline" ]
[ "{\"columns\":[\"airline_code\",\"airline_name\",\"note\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"2V\",\"NORTHEAST EXPRESS REGIONAL AIRLINES\",\"NATL AIR TRANSPORTATION ASSOC, INC.\"],[\"3J\",\"AIR ALLI...
does dl stand for delta <table_name> : airline col : airline_code | airline_name | note row 1 : 2V | NORTHEAST EXPRESS REGIONAL AIRLINES | NATL AIR TRANSPORTATION ASSOC, INC. row 2 : 3J | AIR ALLIANCE | row 3 : 7V | ALPHA AIR | row 4 : 9E | EXPRESS AIRLINES I, INC. | row 5 : 9L | COLGAN AIR | row 6 : 9N | TRANS STA...
col : airline_code row 1 : DL
SELECT DISTINCT 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 types of ground transportation are available in philadelphia
{"columns":["transport_type"],"index":[0,1,2,3],"data":[["AIR TAXI OPERATION"],["LIMOUSINE"],["RAPID TRANSIT"],["RENTAL CAR"]]}
[ "city", "ground_service" ]
[ "{\"columns\":[\"city_code\",\"city_name\",\"state_code\",\"country_name\",\"time_zone_code\"],\"index\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],\"data\":[[\"BBNA\",\"NASHVILLE\",\"TN\",\"USA\",\"CST\"],[\"BBOS\",\"BOSTON\",\"...
what types of ground transportation are available in philadelphia <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | ES...
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 mco
{"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 mco <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 : city_code row 1 : OORL
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 = 'BOSTON' AND ground_service_1.airport_code = airport_1.airpor...
and how can i get to the boston airport from downtown boston
{"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\",\"...
and how can i get to the boston airport from downtown boston <table_name> : city col : city_code | city_name | state_code | country_name | time_zone_code row 1 : BBNA | NASHVILLE | TN | USA | CST row 2 : BBOS | BOSTON | MA | USA | EST row 3 : BBUR | BURBANK | CA | USA | PST row 4 : BBWI | BALTIMORE | MD | USA | EST row...
col : transport_type row 1 : AIR TAXI OPERATION row 2 : LIMOUSINE row 3 : RENTAL CAR