qid stringlengths 6 9 | source stringlengths 7 216 | target stringlengths 6 409 |
|---|---|---|
atis_2723 | requesting flight information for flight from boston to baltimore on tuesday | ( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 baltimore : ci ) ( day $0 tuesday : da ) ) ) |
atis_151 | are there any other flights from boston to pittsburgh wednesday next week later than 5pm | ( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ( day $0 wednesday : da ) ) ) |
atis_2292 | list the takeoffs and landings at general mitchell international | ( lambda $0 e ( and ( flight $0 ) ( or ( from $0 mke : ap ) ( to $0 mke : ap ) ) ) ) |
atis_714 | from las vegas to phoenix departing in the morning | ( lambda $0 e ( and ( during_day $0 morning : pd ) ( from $0 las_vegas : ci ) ( to $0 phoenix : ci ) ) ) |
atis_544 | first class from detroit to st. petersburg | ( lambda $0 e ( and ( class_type $0 first : cl ) ( from $0 detroit : ci ) ( to $0 st_petersburg : ci ) ) ) |
atis_4735 | what is the seating capacity of the 733 | ( capacity 733 : ac ) |
atis_2745 | san francisco to denver tuesday | ( lambda $0 e ( and ( from $0 san_francisco : ci ) ( to $0 denver : ci ) ( day $0 tuesday : da ) ) ) |
atis_3337 | show me the delta flights from san francisco to boston | ( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ) ) |
atis_423 | does flight dl 323 / dl 229 from boston to denver stop in philadelphia | ( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( flight_number $0 323 : fn ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( stop $0 philadelphia : ci ) ) ) |
atis_3219 | show me flights to san francisco arriving before 1 | ( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 100 : ti ) ( to $0 san_francisco : ci ) ) ) |
atis_659 | flights from nashville to orlando daily | ( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( from $0 nashville : ci ) ( to $0 orlando : ci ) ) ) |
atis_797 | give me the continental flights from chicago to seattle on friday | ( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( from $0 chicago : ci ) ( to $0 seattle : ci ) ( day $0 friday : da ) ) ) |
atis_755 | give me a list of airlines in pittsburgh | ( lambda $0 e ( and ( airline $0 ) ( services $0 pittsburgh : ci ) ) ) |
atis_2008 | list all flights arriving or leaving denver between 8 and 9pm | ( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( > ( arrival_time $0 ) 2000 : ti ) ( < ( arrival_time $0 ) 2100 : ti ) ( or ( to $0 denver : ci ) ( from $0 denver : ci ) ) ) ) |
atis_99 | and from milwaukee to atlanta before 10am daily | ( lambda $0 e ( and ( daily $0 ) ( < ( departure_time $0 ) 1000 : ti ) ( from $0 milwaukee : ci ) ( to $0 atlanta : ci ) ) ) |
atis_2496 | please find a flight on delta from philadelphia to san francisco and give me the flight numbers | ( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 dl : al ) ( from $1 philadelphia : ci ) ( to $1 san_francisco : ci ) ( = ( flight_number $1 ) $0 ) ) ) ) |
atis_1871 | is it possible for me to fly from baltimore to san francisco | ( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ) ) |
atis_2046 | list all flights going from boston to atlanta before 7 o'clock am on thursday | ( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 700 : ti ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ( day $0 thursday : da ) ) ) |
atis_4851 | what types of aircraft does delta fly | ( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 dl : al ) ( = ( aircraft_code $1 ) $0 ) ) ) ) |
atis_2163 | list flights from las vegas to phoenix | ( lambda $0 e ( and ( flight $0 ) ( from $0 las_vegas : ci ) ( to $0 phoenix : ci ) ) ) |
atis_2893 | show me all flights from atlanta to washington with prices | ( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 washington : ci ) ( = ( fare $0 ) $1 ) ) ) ) |
atis_537 | find travel arrangements for a round trip flight from dallas to pittsburgh after 8pm | ( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( > ( departure_time $0 ) 2000 : ti ) ( from $0 dallas : ci ) ( to $0 pittsburgh : ci ) ) ) |
atis_1701 | i'd like to buy a coach class ticket for a flight from denver to atlanta | ( lambda $0 e ( and ( flight $0 ) ( class_type $0 coach : cl ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ) ) |
atis_2897 | show me all flights from baltimore to san francisco | ( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ) ) |
atis_2222 | list seating capacities of delta flights from seattle to salt lake city | ( lambda $0 e ( and ( exists $1 ( and ( flight $1 ) ( airline $1 dl : al ) ( from $1 seattle : ci ) ( to $1 salt_lake_city : ci ) ( = ( capacity $1 ) $0 ) ) ) ) ) |
atis_2135 | list flights between denver and pittsburgh | ( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) ) |
atis_2599 | please list only united airlines flights between denver and boston | ( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 denver : ci ) ( to $0 boston : ci ) ) ) |
atis_705 | friday's flights between newark and tampa | ( lambda $0 e ( and ( flight $0 ) ( from $0 newark : ci ) ( to $0 tampa : ci ) ( day $0 friday : da ) ) ) |
atis_3468 | show me the flights from miami to denver | ( lambda $0 e ( and ( flight $0 ) ( from $0 miami : ci ) ( to $0 denver : ci ) ) ) |
atis_4373 | what ground transportation is available in newark | ( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 newark : ci ) ) ) |
atis_1033 | how much is an economy ticket from washington to san francisco on september thirtieth | ( lambda $0 e ( exists $1 ( and ( economy $1 ) ( from $1 washington : ci ) ( to $1 san_francisco : ci ) ( day_number $1 30 : dn ) ( month $1 september : mn ) ( = ( fare $1 ) $0 ) ) ) ) |
atis_4859 | what would be cost of a round trip from pittsburgh to san francisco | ( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( from $1 pittsburgh : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) ) |
atis_4931 | what's the name of the denver airport | den : ap |
atis_3264 | show me round trip fares from denver to philadelphia | ( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( from $1 denver : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) ) |
atis_1653 | i'd like a return flight from baltimore to boston | ( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 boston : ci ) ) ) |
atis_2607 | please list the earliest lunch flight from columbus to phoenix | ( argmin $0 ( and ( flight $0 ) ( meal $0 lunch : me ) ( from $0 columbus : ci ) ( to $0 phoenix : ci ) ) ( departure_time $0 ) ) |
atis_2732 | round trip fares from denver to philadelphia less than 1000 dollars | ( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( < ( fare $1 ) 1000 : do ) ( from $1 denver : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) ) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.