spiderology / testsets /order_by /markup_order_by.csv
k8-dmi3eva's picture
[NEW]: Upload test-sets
cdc1cad verified
db_id,question,query,simple_question,simple_query,source
department_store,"Show, please, the order id, customer id for orders that was rescheduled, ordered by their order dates.","SELECT order_id , customer_id FROM customer_orders WHERE order_status_code = ""Перенесён в другой филиал"" ORDER BY order_date","Show, please, the order id, customer id for orders that was rescheduled.","SELECT order_id , customer_id FROM customer_orders WHERE order_status_code = ""Перенесён в другой филиал""",addition
riding_club,Sort out the ranks of the men. Bring each one out once.,SELECT DISTINCT(Rank) FROM player WHERE Gender = 'M' ORDER BY Rank,Ranks of the men. Bring each one out once.,SELECT DISTINCT(Rank) FROM player WHERE Gender = 'M',addition
riding_club,Sort out the distinct ranks of the men.,SELECT DISTINCT(Rank) FROM player WHERE Gender = 'M' ORDER BY Rank,Distinct ranks of the men.,SELECT DISTINCT(Rank) FROM player WHERE Gender = 'M',addition
battle_death,List the name and tonnage ordered by in descending alphaetical order for the names.,"SELECT name , tonnage FROM ship ORDER BY name DESC;",List the name and tonnage.,"SELECT name , tonnage FROM ship",spider-dev
concert_singer,"Show name, country, age for all singers ordered by age from the oldest to the youngest.","SELECT name , country , age FROM singer ORDER BY age DESC;","Show name, country, age for all singers.","SELECT name , country , age FROM singer",spider-dev
concert_singer,"What are the names, countries, and ages for every singer in descending order of age?","SELECT name , country , age FROM singer ORDER BY age DESC;","What are the names, countries, and ages for every singer?","SELECT name , country , age FROM singer",spider-dev
course_teach,List the names of teachers in ascending order of age.,SELECT Name FROM teacher ORDER BY Age ASC;,List the names of teachers.,SELECT Name FROM teacher;,spider-dev
course_teach,What are the names of the teachers ordered by ascending age?,SELECT Name FROM teacher ORDER BY Age ASC;,What are the names of the teachers?,SELECT Name FROM teacher,spider-dev
course_teach,Show names of teachers and the courses they are arranged to teach in ascending alphabetical order of the teacher's name.,"SELECT T3.Name , T2.Course FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID ORDER BY T3.Name;",Show names of teachers and the courses they are arranged to teach in ascending alphabetical,"SELECT T3.Name , T2.Course FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID ",spider-dev
course_teach,What are the names of the teachers and the courses they teach in ascending alphabetical order by the name of the teacher?,"SELECT T3.Name , T2.Course FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID ORDER BY T3.Name;",What are the names of the teachers and the courses they teach?,"SELECT T3.Name , T2.Course FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID",spider-dev
employee_hire_evaluation,Sort employee names by their age in ascending order.,SELECT name FROM employee ORDER BY age;,Employee names.,SELECT name FROM employee,spider-dev
employee_hire_evaluation,List the names of employees and sort in ascending order of age.,SELECT name FROM employee ORDER BY age;,List the names of employees.,SELECT name FROM employee,spider-dev
employee_hire_evaluation,"Return the name, location and district of all shops in descending order of number of products.","SELECT name , LOCATION , district FROM shop ORDER BY number_products DESC;","Return the name, location and district of all shops.","SELECT name , LOCATION , district FROM shop",spider-dev
employee_hire_evaluation,"Sort all the shops by number products in descending order, and return the name, location and district of each shop.","SELECT name , LOCATION , district FROM shop ORDER BY number_products DESC;","All the shops. Return the name, location and district of each shop.","SELECT name , LOCATION , district FROM shop",spider-dev
museum_visit,"Find the names of the visitors whose membership level is higher than 4, and order the results by the level from high to low.",SELECT name FROM visitor WHERE Level_of_membership > 4 ORDER BY Level_of_membership DESC;,Find the names of the visitors whose membership level is higher than 4.,SELECT name FROM visitor WHERE Level_of_membership > 4,spider-dev
museum_visit,"Find the name and membership level of the visitors whose membership level is higher than 4, and sort by their age from old to young.","SELECT name , Level_of_membership FROM visitor WHERE Level_of_membership > 4 ORDER BY age DESC;",Find the name and membership level of the visitors whose membership level is higher than 4.,"SELECT name , Level_of_membership FROM visitor WHERE Level_of_membership > 4",spider-dev
orchestra,List the names of conductors in ascending order of age.,SELECT Name FROM conductor ORDER BY Age ASC;,List the names of conductors.,SELECT Name FROM conductor,spider-dev
orchestra,"What are the names of conductors, ordered by age?",SELECT Name FROM conductor ORDER BY Age ASC;,What are the names of conductors?,SELECT Name FROM conductor,spider-dev
orchestra,What are the record companies of orchestras in descending order of years in which they were founded?,SELECT Record_Company FROM orchestra ORDER BY Year_of_Founded DESC;,What are the record companies of orchestras?,SELECT Record_Company FROM orchestra,spider-dev
orchestra,"Return the record companies of orchestras, sorted descending by the years in which they were founded.",SELECT Record_Company FROM orchestra ORDER BY Year_of_Founded DESC;,Return the record companies of orchestras.,SELECT Record_Company FROM orchestra,spider-dev
orchestra,List names of conductors in descending order of years of work.,SELECT Name FROM conductor ORDER BY Year_of_Work DESC;,List names of conductors.,SELECT Name FROM conductor,spider-dev
orchestra,"What are the names of conductors, sorted descending by the number of years they have worked?",SELECT Name FROM conductor ORDER BY Year_of_Work DESC;,What are the names of conductors?,SELECT Name FROM conductor,spider-dev
poker_player,List the earnings of poker players in descending order.,SELECT Earnings FROM poker_player ORDER BY Earnings DESC;,List the earnings of poker players.,SELECT Earnings FROM poker_player,spider-dev
poker_player,"What are the earnings of poker players, ordered descending by value?",SELECT Earnings FROM poker_player ORDER BY Earnings DESC;,What are the earnings of poker players?,SELECT Earnings FROM poker_player,spider-dev
poker_player,List the names of poker players ordered by the final tables made in ascending order.,SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Final_Table_Made;,List the names of poker players.,SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID,spider-dev
poker_player,"What are the names of poker players, ordered ascending by the number of final tables they have made?",SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Final_Table_Made;,What are the names of poker players?,SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID,spider-dev
poker_player,What are the names of poker players in descending order of earnings?,SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Earnings DESC;,What are the names of poker players?,SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID,spider-dev
poker_player,Return the names of poker players sorted by their earnings descending.,SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Earnings DESC;,Return the names of poker players.,SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID,spider-dev
poker_player,List the names and birth dates of people in ascending alphabetical order of name.,"SELECT Name , Birth_Date FROM people ORDER BY Name ASC;",List the names and birth dates of people.,"SELECT Name , Birth_Date FROM people",spider-dev
poker_player,"What are the names and birth dates of people, ordered by their names in alphabetical order?","SELECT Name , Birth_Date FROM people ORDER BY Name ASC;",What are the names and birth dates of people?,"SELECT Name , Birth_Date FROM people",spider-dev
singer,List the name of singers in ascending order of net worth.,SELECT Name FROM singer ORDER BY Net_Worth_Millions ASC;,List the name of singers.,SELECT Name FROM singer,spider-dev
singer,What are the names of singers ordered by ascending net worth?,SELECT Name FROM singer ORDER BY Net_Worth_Millions ASC;,What are the names of singers?,SELECT Name FROM singer,spider-dev
student_transcripts_tracking,List the section_name in reversed lexicographical order.,SELECT section_name FROM Sections ORDER BY section_name DESC;,List the section_name.,SELECT section_name FROM Sections,spider-dev
student_transcripts_tracking,What are the names of the sections in reverse alphabetical order?,SELECT section_name FROM Sections ORDER BY section_name DESC;,What are the names of the sections?,SELECT section_name FROM Sections,spider-dev
student_transcripts_tracking,List all the student details in reversed lexicographical order.,SELECT other_student_details FROM Students ORDER BY other_student_details DESC;,List all the student details.,SELECT other_student_details FROM Students,spider-dev
student_transcripts_tracking,What other details can you tell me about students in reverse alphabetical order?,SELECT other_student_details FROM Students ORDER BY other_student_details DESC;,What other details can you tell me about students?,SELECT other_student_details FROM Students,spider-dev
tvshow,List the title of all cartoons in alphabetical order.,SELECT Title FROM Cartoon ORDER BY title;,List the title of all cartoons.,SELECT Title FROM Cartoon,spider-dev
tvshow,What are the titles of the cartoons sorted alphabetically?,SELECT Title FROM Cartoon ORDER BY title;,What are the titles of the cartoons?,SELECT Title FROM Cartoon,spider-dev
tvshow,list all cartoon titles and their directors ordered by their air date,"SELECT title , Directed_by FROM Cartoon ORDER BY Original_air_date;",list all cartoon titles and their directors,"SELECT title , Directed_by FROM Cartoon",spider-dev
tvshow,What is the name and directors of all the cartoons that are ordered by air date?,"SELECT title , Directed_by FROM Cartoon ORDER BY Original_air_date;",What is the name and directors of all the cartoons?,"SELECT title , Directed_by FROM Cartoon",spider-dev
tvshow,List the Episode of all TV series sorted by rating.,SELECT Episode FROM TV_series ORDER BY rating;,List the Episode of all TV series.,SELECT Episode FROM TV_series,spider-dev
tvshow,What are all of the episodes ordered by ratings?,SELECT Episode FROM TV_series ORDER BY rating;,What are all of the episodes?,SELECT Episode FROM TV_series,spider-dev
voter_1,"List the contestant numbers and names, ordered by contestant name descending.","SELECT contestant_number , contestant_name FROM contestants ORDER BY contestant_name DESC;",List the contestant numbers and names.,"SELECT contestant_number , contestant_name FROM contestants",spider-dev
wta_1,List the first and last name of all players in the order of birth date.,"SELECT first_name , last_name FROM players ORDER BY birth_date;",List the first and last name of all players.,"SELECT first_name , last_name FROM players",spider-dev
wta_1,"What are the full names of all players, sorted by birth date?","SELECT first_name , last_name FROM players ORDER BY birth_date;",What are the full names of all players?,"SELECT first_name , last_name FROM players",spider-dev
wta_1,List the first and last name of all players who are left / L hand in the order of birth date.,"SELECT first_name , last_name FROM players WHERE hand = 'L' ORDER BY birth_date;",List the first and last name of all players who are left / L hand.,"SELECT first_name , last_name FROM players WHERE hand = 'L' ",spider-dev
wta_1,"What are the full names of all left handed players, in order of birth date?","SELECT first_name , last_name FROM players WHERE hand = 'L' ORDER BY birth_date;",What are the full names of all left handed players?,"SELECT first_name , last_name FROM players WHERE hand = 'L' ",spider-dev
body_builder,List the total scores of body builders in ascending order.,SELECT Total FROM body_builder ORDER BY Total ASC;,List the total scores of body builders,SELECT Total FROM body_builder,spider-train
body_builder,List the snatch score and clean jerk score of body builders in ascending order of snatch score.,"SELECT Snatch , Clean_Jerk FROM body_builder ORDER BY Snatch ASC;",List the snatch score and clean jerk score of body builders,"SELECT Snatch , Clean_Jerk FROM body_builder",spider-train
body_builder,What are the birthdays of people in ascending order of height?,SELECT Birth_Date FROM People ORDER BY Height ASC;,What are the birthdays of people?,SELECT Birth_Date FROM People,spider-train
body_builder,What are the names of body builders in descending order of total scores?,SELECT T2.Name FROM body_builder AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID ORDER BY T1.Total DESC;,What are the names of body builders?,SELECT T2.Name FROM body_builder AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID,spider-train
body_builder,List the height and weight of people in descending order of height.,"SELECT Height , Weight FROM people ORDER BY Height DESC;",List the height and weight of people.,"SELECT Height , Weight FROM people",spider-train
book_2,List the writers of the books in ascending alphabetical order.,SELECT Writer FROM book ORDER BY Writer ASC;,List the writers of the books.,SELECT Writer FROM book,spider-train
book_2,List the titles of the books in ascending order of issues.,SELECT Title FROM book ORDER BY Issues ASC;,List the titles of the books.,SELECT Title FROM book,spider-train
book_2,What are the dates of publications in descending order of price?,SELECT Publication_Date FROM publication ORDER BY Price DESC;,What are the dates of publications?,SELECT Publication_Date FROM publication,spider-train
book_2,Show the titles of books in descending order of publication price.,SELECT T1.Title FROM book AS T1 JOIN publication AS T2 ON T1.Book_ID = T2.Book_ID ORDER BY T2.Price DESC;,Show the titles of books.,SELECT T1.Title FROM book AS T1 JOIN publication AS T2 ON T1.Book_ID = T2.Book_ID,spider-train
program_share,What is the list of program origins ordered alphabetically?,SELECT origin FROM program ORDER BY origin;,What is the list of program origins?,SELECT origin FROM program,spider-train
protein_institute,"Show the name, street address, and number of floors for all buildings ordered by the number of floors.","SELECT name , street_address , floors FROM building ORDER BY floors;","Show the name, street address, and number of floors for all buildings.","SELECT name , street_address , floors FROM building",spider-train
race_track,"Show names and seatings, ordered by seating for all tracks opened after 2000.","SELECT name , seating FROM track WHERE year_opened > 2000 ORDER BY seating;",Show names and seatings for all tracks opened after 2000.,"SELECT name , seating FROM track WHERE year_opened > 2000",spider-train
race_track,"What are the names and seatings for all tracks opened after 2000, ordered by seating?","SELECT name , seating FROM track WHERE year_opened > 2000 ORDER BY seating;",What are the names and seatings for all tracks opened after 2000?,"SELECT name , seating FROM track WHERE year_opened > 2000",spider-train
railway,List the builders of railways in ascending alphabetical order.,SELECT Builder FROM railway ORDER BY Builder ASC;,List the builders of railways.,SELECT Builder FROM railway,spider-train
railway,What are the names of managers in ascending order of level?,SELECT Name FROM manager ORDER BY LEVEL ASC;,What are the names of managers?,SELECT Name FROM manager,spider-train
railway,Show the working years of managers in descending order of their level.,SELECT Working_year_starts FROM manager ORDER BY LEVEL DESC;,Show the working years of managers.,SELECT Working_year_starts FROM manager,spider-train
ship_mission,List the name of ships in ascending order of tonnage.,SELECT Name FROM ship ORDER BY Tonnage ASC;,List the name of ships.,SELECT Name FROM ship,spider-train
ship_mission,what are the names of the ships ordered by ascending tonnage?,SELECT Name FROM ship ORDER BY Tonnage ASC;,what are the names of the ships?,SELECT Name FROM ship,spider-train
shop_membership,"Show name, address road, and city for all branches sorted by open year.","SELECT name , address_road , city FROM branch ORDER BY open_year;","Show name, address road, and city for all branches.","SELECT name , address_road , city FROM branch",spider-train
shop_membership,"What are the names, address roads, and cities of the branches ordered by opening year?","SELECT name , address_road , city FROM branch ORDER BY open_year;","What are the names, address roads, and cities of the branches?","SELECT name , address_road , city FROM branch",spider-train
shop_membership,"Show card number, name, and hometown for all members in a descending order of level.","SELECT card_number , name , hometown FROM member ORDER BY LEVEL DESC;","Show card number, name, and hometown for all members.","SELECT card_number , name , hometown FROM member",spider-train
shop_membership,"What are the card numbers, names, and hometowns of every member ordered by descending level?","SELECT card_number , name , hometown FROM member ORDER BY LEVEL DESC;","What are the card numbers, names, and hometowns of every member?","SELECT card_number , name , hometown FROM member",spider-train
shop_membership,Show all member names and registered branch names sorted by register year.,"SELECT T3.name , T2.name FROM membership_register_branch AS T1 JOIN branch AS T2 ON T1.branch_id = T2.branch_id JOIN member AS T3 ON T1.member_id = T3.member_id ORDER BY T1.register_year;",Show all member names and registered branch names.,"SELECT T3.name , T2.name FROM membership_register_branch AS T1 JOIN branch AS T2 ON T1.branch_id = T2.branch_id JOIN member AS T3 ON T1.member_id = T3.member_id",spider-train
shop_membership,What are the names of the members and branches at which they are registered sorted by year of registration?,"SELECT T3.name , T2.name FROM membership_register_branch AS T1 JOIN branch AS T2 ON T1.branch_id = T2.branch_id JOIN member AS T3 ON T1.member_id = T3.member_id ORDER BY T1.register_year;",What are the names of the members and branches at which they are registered,"SELECT T3.name , T2.name FROM membership_register_branch AS T1 JOIN branch AS T2 ON T1.branch_id = T2.branch_id JOIN member AS T3 ON T1.member_id = T3.member_id",spider-train
solvency_ii,List the name of products in ascending order of price.,SELECT Product_Name FROM Products ORDER BY Product_Price ASC;,List the name of products.,SELECT Product_Name FROM Products,spider-train
student_assessment,List the first names of people in alphabetical order?,SELECT first_name FROM people ORDER BY first_name;,List the first names of people?,SELECT first_name FROM people,spider-train
student_assessment,What are the first names of the people in alphabetical order?,SELECT first_name FROM people ORDER BY first_name;,What are the first names of the people?,SELECT first_name FROM people,spider-train
swimming,List all the event names by year from the most recent to the oldest.,SELECT name FROM event ORDER BY YEAR DESC;,List all the event names.,SELECT name FROM event,spider-train
swimming,"Find the names of all swimmers, sorted by their 100 meter scores in ascending order.",SELECT name FROM swimmer ORDER BY meter_100;,Find the names of all swimmers.,SELECT name FROM swimmer,spider-train
theme_gallery,"Show all artist name, age, and country ordered by the yeared they joined.","SELECT name , age , country FROM artist ORDER BY Year_Join;","Show all artist name, age, and country.","SELECT name , age , country FROM artist",spider-train
theme_gallery,"What are the names, ages, and countries of artists, sorted by the year they joined?","SELECT name , age , country FROM artist ORDER BY Year_Join;","What are the names, ages, and countries of artists?","SELECT name , age , country FROM artist",spider-train
theme_gallery,Show theme and year for all exhibitions in an descending order of ticket price.,"SELECT theme , YEAR FROM exhibition ORDER BY ticket_price DESC;",Show theme and year for all exhibitions.,"SELECT theme , YEAR FROM exhibition",spider-train
theme_gallery,"What are the themes and years for exhibitions, sorted by ticket price descending?","SELECT theme , YEAR FROM exhibition ORDER BY ticket_price DESC;",What are the themes and years for exhibitions?,"SELECT theme , YEAR FROM exhibition",spider-train
tracking_orders,Sort all the distinct products in alphabetical order.,SELECT DISTINCT product_name FROM products ORDER BY product_name;,All the distinct products.,SELECT DISTINCT product_name FROM products,spider-train
tracking_orders,List the ids of all distinct orders ordered by placed date.,SELECT DISTINCT order_id FROM orders ORDER BY date_order_placed;,List the ids of all distinct orders.,SELECT DISTINCT order_id FROM orders,spider-train
tracking_orders,"What are ids of the all distinct orders, sorted by placement date?",SELECT DISTINCT order_id FROM orders ORDER BY date_order_placed;,What are ids of the all distinct orders?,SELECT DISTINCT order_id FROM orders,spider-train
tracking_software_problems,List the names of all the distinct product names in alphabetical order?,SELECT DISTINCT product_name FROM product ORDER BY product_name;,List the names of all the distinct product names?,SELECT DISTINCT product_name FROM product,spider-train
tracking_software_problems,Sort all the distinct product names in alphabetical order.,SELECT DISTINCT product_name FROM product ORDER BY product_name;,Sort all the distinct product names.,SELECT DISTINCT product_name FROM product,spider-train
tracking_software_problems,List all the distinct product names ordered by product id?,SELECT DISTINCT product_name FROM product ORDER BY product_id;,List all the distinct product names?,SELECT DISTINCT product_name FROM product,spider-train
tracking_software_problems,What is the list of distinct product names sorted by product id?,SELECT DISTINCT product_name FROM product ORDER BY product_id;,What is the list of distinct product names?,SELECT DISTINCT product_name FROM product,spider-train
train_station,Show the name and service for all trains in order by time.,"SELECT name , service FROM train ORDER BY TIME;",Show the name and service for all trains.,"SELECT name , service FROM train",spider-train
train_station,Show all train names and times in stations in London in descending order by train time.,"SELECT T3.name , T3.time FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id JOIN train AS T3 ON T3.train_id = T1.train_id WHERE T2.location = 'London' ORDER BY T3.time DESC;",Show all train names and times in stations in London.,"SELECT T3.name , T3.time FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id JOIN train AS T3 ON T3.train_id = T1.train_id WHERE T2.location = 'London' ",spider-train
train_station,List the names and locations of all stations ordered by their yearly entry exit and interchange amounts.,"SELECT name , LOCATION FROM station ORDER BY Annual_entry_exit , Annual_interchanges;",List the names and locations of all stations.,"SELECT name , LOCATION FROM station",spider-train
twitter_1,"List the name and number of followers for each user, and sort the results by the number of followers in descending order.","SELECT name , followers FROM user_profiles ORDER BY followers DESC;","List the name and number of followers for each user,.","SELECT name , followers FROM user_profiles",spider-train
twitter_1,List the text of all tweets in the order of date.,SELECT text FROM tweets ORDER BY createdate;,List the text of all tweets.,SELECT text FROM tweets,spider-train
wedding,List all church names in descending order of opening date.,SELECT name FROM church ORDER BY open_date DESC;,List all church names.,SELECT name FROM church,spider-train
wine_1,List the names of all distinct wines in alphabetical order.,SELECT DISTINCT Name FROM WINE ORDER BY Name;,List the names of all distinct wines.,SELECT DISTINCT Name FROM WINE,spider-train
wine_1,"What are the names of wines, sorted in alphabetical order?",SELECT DISTINCT Name FROM WINE ORDER BY Name;,What are the names of wines?,SELECT DISTINCT Name FROM WINE,spider-train
wine_1,List the names of all distinct wines ordered by price.,SELECT DISTINCT Name FROM WINE ORDER BY price;,List the names of all distinct wines.,SELECT DISTINCT Name FROM WINE,spider-train
wine_1,"What are the names of wines, sorted by price ascending?",SELECT DISTINCT Name FROM WINE ORDER BY price;,What are the names of wines?,SELECT DISTINCT Name FROM WINE,spider-train
wine_1,"List the grape, winery and year of the wines whose price is bigger than 100 ordered by year.","SELECT Grape , Winery , YEAR FROM WINE WHERE Price > 100 ORDER BY YEAR;","List the grape, winery and year of the wines whose price is bigger than 100.","SELECT Grape , Winery , YEAR FROM WINE WHERE Price > 100",spider-train
wine_1,"What are the grapes, wineries and years for wines with price higher than 100, sorted by year?","SELECT Grape , Winery , YEAR FROM WINE WHERE Price > 100 ORDER BY YEAR;","What are the grapes, wineries and years for wines with price higher than 100?","SELECT Grape , Winery , YEAR FROM WINE WHERE Price > 100",spider-train
wine_1,"List the grape, appelation and name of wines whose score is higher than 93 ordered by Name.","SELECT Grape , Appelation , Name FROM WINE WHERE Score > 93 ORDER BY Name;","List the grape, appelation and name of wines whose score is higher than 93.","SELECT Grape , Appelation , Name FROM WINE WHERE Score > 93",spider-train
wine_1,"What are the grapes, appelations, and wines with scores above 93, sorted by Name?","SELECT Grape , Appelation , Name FROM WINE WHERE Score > 93 ORDER BY Name;","What are the grapes, appelations, and wines with scores above 93?","SELECT Grape , Appelation , Name FROM WINE WHERE Score > 93",spider-train
workshop_paper,List the authors of submissions in ascending order of scores.,SELECT Author FROM submission ORDER BY Scores ASC;,List the authors of submissions.,SELECT Author FROM submission,spider-train
workshop_paper,Find the author for each submission and list them in ascending order of submission score.,SELECT Author FROM submission ORDER BY Scores ASC;,Find the author for each submission and list them.,SELECT Author FROM submission,spider-train
workshop_paper,Show the date and venue of each workshop in ascending alphabetical order of the venue.,"SELECT Date , Venue FROM workshop ORDER BY Venue;",Show the date and venue of each workshop.,"SELECT Date , Venue FROM workshop",spider-train
workshop_paper,Sort the each workshop in alphabetical order of the venue. Return the date and venue of each workshop.,"SELECT Date , Venue FROM workshop ORDER BY Venue;",Sort the each workshop in alphabetical. Return the date and venue of each workshop.,"SELECT Date , Venue FROM workshop",spider-train
wrestler,List the names of wrestlers in descending order of days held.,SELECT Name FROM wrestler ORDER BY Days_held DESC;,List the names of wrestlers.,SELECT Name FROM wrestler,spider-train
wrestler,"What are the names of the wrestlers, ordered descending by days held?",SELECT Name FROM wrestler ORDER BY Days_held DESC;,What are the names of the wrestlers?,SELECT Name FROM wrestler,spider-train
wrestler,List the names of wrestlers and the teams in elimination in descending order of days held.,"SELECT T2.Name , T1.Team FROM elimination AS T1 JOIN wrestler AS T2 ON T1.Wrestler_ID = T2.Wrestler_ID ORDER BY T2.Days_held DESC;",List the names of wrestlers and the teams in elimination.,"SELECT T2.Name , T1.Team FROM elimination AS T1 JOIN wrestler AS T2 ON T1.Wrestler_ID = T2.Wrestler_ID",spider-train
wrestler,"What are the names of wrestlers and their teams in elimination, ordered descending by days held?","SELECT T2.Name , T1.Team FROM elimination AS T1 JOIN wrestler AS T2 ON T1.Wrestler_ID = T2.Wrestler_ID ORDER BY T2.Days_held DESC;",What are the names of wrestlers and their teams in elimination?,"SELECT T2.Name , T1.Team FROM elimination AS T1 JOIN wrestler AS T2 ON T1.Wrestler_ID = T2.Wrestler_ID",spider-train