text
stringlengths 146
1.06k
| source
dict |
---|---|
### QUESTION
Show member names that are not in the Progress Party.
### CONTEXT
CREATE TABLE party (party_id VARCHAR, Party_name VARCHAR); CREATE TABLE Member (member_name VARCHAR, party_id VARCHAR)
### ANSWER
SELECT T1.member_name FROM Member AS T1 JOIN party AS T2 ON T1.party_id = T2.party_id WHERE T2.Party_name <> "Progress Party" | {
"answer": "SELECT T1.member_name FROM Member AS T1 JOIN party AS T2 ON T1.party_id = T2.party_id WHERE T2.Party_name <> \"Progress Party\"",
"context": "CREATE TABLE party (party_id VARCHAR, Party_name VARCHAR); CREATE TABLE Member (member_name VARCHAR, party_id VARCHAR)",
"question": "Show member names that are not in the Progress Party."
} |
### QUESTION
What was the team from Austria when the Netherlands sent Brunssum/Schinnen LL Brunssum and Belgium sent Shape and Waterloo LL Brussels?
### CONTEXT
CREATE TABLE table_28562675_3 (austria VARCHAR, netherlands VARCHAR, belgium VARCHAR)
### ANSWER
SELECT austria FROM table_28562675_3 WHERE netherlands = "Brunssum/Schinnen LL Brunssum" AND belgium = "SHAPE and Waterloo LL Brussels" | {
"answer": "SELECT austria FROM table_28562675_3 WHERE netherlands = \"Brunssum/Schinnen LL Brunssum\" AND belgium = \"SHAPE and Waterloo LL Brussels\"",
"context": "CREATE TABLE table_28562675_3 (austria VARCHAR, netherlands VARCHAR, belgium VARCHAR)",
"question": "What was the team from Austria when the Netherlands sent Brunssum/Schinnen LL Brunssum and Belgium sent Shape and Waterloo LL Brussels?"
} |
### QUESTION
Please show the record formats of orchestras in ascending order of count.
### CONTEXT
CREATE TABLE orchestra (Major_Record_Format VARCHAR)
### ANSWER
SELECT Major_Record_Format FROM orchestra GROUP BY Major_Record_Format ORDER BY COUNT(*) | {
"answer": "SELECT Major_Record_Format FROM orchestra GROUP BY Major_Record_Format ORDER BY COUNT(*)",
"context": "CREATE TABLE orchestra (Major_Record_Format VARCHAR)",
"question": "Please show the record formats of orchestras in ascending order of count."
} |
### QUESTION
Tell me the highest matches for point 43 and final rank less than 7
### CONTEXT
CREATE TABLE table_name_32 (matches INTEGER, point VARCHAR, final_rank VARCHAR)
### ANSWER
SELECT MAX(matches) FROM table_name_32 WHERE point = 43 AND final_rank < 7 | {
"answer": "SELECT MAX(matches) FROM table_name_32 WHERE point = 43 AND final_rank < 7",
"context": "CREATE TABLE table_name_32 (matches INTEGER, point VARCHAR, final_rank VARCHAR)",
"question": "Tell me the highest matches for point 43 and final rank less than 7"
} |
### QUESTION
Which room has the highest rate? List the room's full name, rate, check in and check out date.
### CONTEXT
CREATE TABLE Rooms (roomName VARCHAR, RoomId VARCHAR); CREATE TABLE Reservations (Rate VARCHAR, CheckIn VARCHAR, CheckOut VARCHAR, Room VARCHAR)
### ANSWER
SELECT T2.roomName, T1.Rate, T1.CheckIn, T1.CheckOut FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId GROUP BY T1.Room ORDER BY T1.Rate DESC LIMIT 1 | {
"answer": "SELECT T2.roomName, T1.Rate, T1.CheckIn, T1.CheckOut FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId GROUP BY T1.Room ORDER BY T1.Rate DESC LIMIT 1",
"context": "CREATE TABLE Rooms (roomName VARCHAR, RoomId VARCHAR); CREATE TABLE Reservations (Rate VARCHAR, CheckIn VARCHAR, CheckOut VARCHAR, Room VARCHAR)",
"question": "Which room has the highest rate? List the room's full name, rate, check in and check out date."
} |
### QUESTION
Who was the lead with John Shuster as skip in the season of 2009–10?
### CONTEXT
CREATE TABLE table_name_83 (lead VARCHAR, skip VARCHAR, season VARCHAR)
### ANSWER
SELECT lead FROM table_name_83 WHERE skip = "john shuster" AND season = "2009–10" | {
"answer": "SELECT lead FROM table_name_83 WHERE skip = \"john shuster\" AND season = \"2009–10\"",
"context": "CREATE TABLE table_name_83 (lead VARCHAR, skip VARCHAR, season VARCHAR)",
"question": "Who was the lead with John Shuster as skip in the season of 2009–10?"
} |
### QUESTION
Who had the pole position(s) when rob guiver won and kyle ryde had the fastest lap?
### CONTEXT
CREATE TABLE table_29162856_1 (pole_position VARCHAR, winning_rider VARCHAR, fastest_lap VARCHAR)
### ANSWER
SELECT pole_position FROM table_29162856_1 WHERE winning_rider = "Rob Guiver" AND fastest_lap = "Kyle Ryde" | {
"answer": "SELECT pole_position FROM table_29162856_1 WHERE winning_rider = \"Rob Guiver\" AND fastest_lap = \"Kyle Ryde\"",
"context": "CREATE TABLE table_29162856_1 (pole_position VARCHAR, winning_rider VARCHAR, fastest_lap VARCHAR)",
"question": "Who had the pole position(s) when rob guiver won and kyle ryde had the fastest lap?"
} |
### QUESTION
How many places have yamaha as the machine, and 89.85mph as the speed?
### CONTEXT
CREATE TABLE table_name_30 (place INTEGER, machine VARCHAR, speed VARCHAR)
### ANSWER
SELECT SUM(place) FROM table_name_30 WHERE machine = "yamaha" AND speed = "89.85mph" | {
"answer": "SELECT SUM(place) FROM table_name_30 WHERE machine = \"yamaha\" AND speed = \"89.85mph\"",
"context": "CREATE TABLE table_name_30 (place INTEGER, machine VARCHAR, speed VARCHAR)",
"question": "How many places have yamaha as the machine, and 89.85mph as the speed?"
} |
### QUESTION
What is the least 2009 that has 2005 littler than 640, and 2011 of 425, and 2003 littler than 500?
### CONTEXT
CREATE TABLE table_name_81 (Id VARCHAR)
### ANSWER
SELECT MIN(2009) FROM table_name_81 WHERE 2005 < 640 AND 2011 = 425 AND 2003 < 500 | {
"answer": "SELECT MIN(2009) FROM table_name_81 WHERE 2005 < 640 AND 2011 = 425 AND 2003 < 500",
"context": "CREATE TABLE table_name_81 (Id VARCHAR)",
"question": "What is the least 2009 that has 2005 littler than 640, and 2011 of 425, and 2003 littler than 500?"
} |
### QUESTION
Show the ids for all the faculty members who have at least 2 students.
### CONTEXT
CREATE TABLE Faculty (FacID VARCHAR); CREATE TABLE Student (advisor VARCHAR)
### ANSWER
SELECT T1.FacID FROM Faculty AS T1 JOIN Student AS T2 ON T1.FacID = T2.advisor GROUP BY T1.FacID HAVING COUNT(*) >= 2 | {
"answer": "SELECT T1.FacID FROM Faculty AS T1 JOIN Student AS T2 ON T1.FacID = T2.advisor GROUP BY T1.FacID HAVING COUNT(*) >= 2",
"context": "CREATE TABLE Faculty (FacID VARCHAR); CREATE TABLE Student (advisor VARCHAR)",
"question": "Show the ids for all the faculty members who have at least 2 students."
} |
### QUESTION
What is the amoun of marginal ordinary income tax rate where married filing jointly or qualified widow is $208,851–$372,950?
### CONTEXT
CREATE TABLE table_11647327_2 (marginal_ordinary_income_tax_rate VARCHAR, married_filing_jointly_or_qualified_widow_er_ VARCHAR)
### ANSWER
SELECT COUNT(marginal_ordinary_income_tax_rate) FROM table_11647327_2 WHERE married_filing_jointly_or_qualified_widow_er_ = "$208,851–$372,950" | {
"answer": "SELECT COUNT(marginal_ordinary_income_tax_rate) FROM table_11647327_2 WHERE married_filing_jointly_or_qualified_widow_er_ = \"$208,851–$372,950\"",
"context": "CREATE TABLE table_11647327_2 (marginal_ordinary_income_tax_rate VARCHAR, married_filing_jointly_or_qualified_widow_er_ VARCHAR)",
"question": "What is the amoun of marginal ordinary income tax rate where married filing jointly or qualified widow is $208,851–$372,950?"
} |
### QUESTION
In what arena was the game against the Sharks played?
### CONTEXT
CREATE TABLE table_name_33 (arena VARCHAR, opponent VARCHAR)
### ANSWER
SELECT arena FROM table_name_33 WHERE opponent = "sharks" | {
"answer": "SELECT arena FROM table_name_33 WHERE opponent = \"sharks\"",
"context": "CREATE TABLE table_name_33 (arena VARCHAR, opponent VARCHAR)",
"question": "In what arena was the game against the Sharks played?"
} |
### QUESTION
Name the lowest rank for red chillies entertainment for 2013
### CONTEXT
CREATE TABLE table_name_99 (rank INTEGER, year VARCHAR, studio_s_ VARCHAR)
### ANSWER
SELECT MIN(rank) FROM table_name_99 WHERE year = 2013 AND studio_s_ = "red chillies entertainment" | {
"answer": "SELECT MIN(rank) FROM table_name_99 WHERE year = 2013 AND studio_s_ = \"red chillies entertainment\"",
"context": "CREATE TABLE table_name_99 (rank INTEGER, year VARCHAR, studio_s_ VARCHAR)",
"question": "Name the lowest rank for red chillies entertainment for 2013"
} |
### QUESTION
What is the lowest interview for a contestant from North Carolina with a swimsuit larger than 9.021, an average smaller than 9.513, and an evening gown larger than 9.5?
### CONTEXT
CREATE TABLE table_name_60 (interview INTEGER, evening_gown VARCHAR, state VARCHAR, swimsuit VARCHAR, average VARCHAR)
### ANSWER
SELECT MIN(interview) FROM table_name_60 WHERE swimsuit > 9.021 AND average < 9.513 AND state = "north carolina" AND evening_gown > 9.5 | {
"answer": "SELECT MIN(interview) FROM table_name_60 WHERE swimsuit > 9.021 AND average < 9.513 AND state = \"north carolina\" AND evening_gown > 9.5",
"context": "CREATE TABLE table_name_60 (interview INTEGER, evening_gown VARCHAR, state VARCHAR, swimsuit VARCHAR, average VARCHAR)",
"question": "What is the lowest interview for a contestant from North Carolina with a swimsuit larger than 9.021, an average smaller than 9.513, and an evening gown larger than 9.5?"
} |
### QUESTION
Name the total number of male rank for fiji
### CONTEXT
CREATE TABLE table_2701625_1 (male_rank VARCHAR, country VARCHAR)
### ANSWER
SELECT COUNT(male_rank) FROM table_2701625_1 WHERE country = "Fiji" | {
"answer": "SELECT COUNT(male_rank) FROM table_2701625_1 WHERE country = \"Fiji\"",
"context": "CREATE TABLE table_2701625_1 (male_rank VARCHAR, country VARCHAR)",
"question": "Name the total number of male rank for fiji"
} |
### QUESTION
What player scored 71-69-71=211?
### CONTEXT
CREATE TABLE table_name_68 (player VARCHAR, score VARCHAR)
### ANSWER
SELECT player FROM table_name_68 WHERE score = 71 - 69 - 71 = 211 | {
"answer": "SELECT player FROM table_name_68 WHERE score = 71 - 69 - 71 = 211",
"context": "CREATE TABLE table_name_68 (player VARCHAR, score VARCHAR)",
"question": "What player scored 71-69-71=211?"
} |
### QUESTION
Which season used production code "am10"?
### CONTEXT
CREATE TABLE table_23279434_1 (season__number VARCHAR, production_code VARCHAR)
### ANSWER
SELECT COUNT(season__number) FROM table_23279434_1 WHERE production_code = "AM10" | {
"answer": "SELECT COUNT(season__number) FROM table_23279434_1 WHERE production_code = \"AM10\"",
"context": "CREATE TABLE table_23279434_1 (season__number VARCHAR, production_code VARCHAR)",
"question": "Which season used production code \"am10\"?"
} |
### QUESTION
What are the first and last name of the president of the club "Bootup Baltimore"?
### CONTEXT
CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE student (fname VARCHAR, lname VARCHAR, stuid VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR, position VARCHAR)
### ANSWER
SELECT t3.fname, t3.lname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = "Bootup Baltimore" AND t2.position = "President" | {
"answer": "SELECT t3.fname, t3.lname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = \"Bootup Baltimore\" AND t2.position = \"President\"",
"context": "CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE student (fname VARCHAR, lname VARCHAR, stuid VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR, position VARCHAR)",
"question": "What are the first and last name of the president of the club \"Bootup Baltimore\"?"
} |
### QUESTION
In what Games did Patrick Etolu compete?
### CONTEXT
CREATE TABLE table_name_60 (games VARCHAR, name VARCHAR)
### ANSWER
SELECT games FROM table_name_60 WHERE name = "patrick etolu" | {
"answer": "SELECT games FROM table_name_60 WHERE name = \"patrick etolu\"",
"context": "CREATE TABLE table_name_60 (games VARCHAR, name VARCHAR)",
"question": "In what Games did Patrick Etolu compete?"
} |
### QUESTION
How many events had participants whose details had the substring 'Dr.'
### CONTEXT
CREATE TABLE participants (Participant_ID VARCHAR, participant_details VARCHAR); CREATE TABLE Participants_in_Events (Participant_ID VARCHAR)
### ANSWER
SELECT COUNT(*) FROM participants AS T1 JOIN Participants_in_Events AS T2 ON T1.Participant_ID = T2.Participant_ID WHERE T1.participant_details LIKE '%Dr.%' | {
"answer": "SELECT COUNT(*) FROM participants AS T1 JOIN Participants_in_Events AS T2 ON T1.Participant_ID = T2.Participant_ID WHERE T1.participant_details LIKE '%Dr.%'",
"context": "CREATE TABLE participants (Participant_ID VARCHAR, participant_details VARCHAR); CREATE TABLE Participants_in_Events (Participant_ID VARCHAR)",
"question": "How many events had participants whose details had the substring 'Dr.'"
} |
### QUESTION
How many totals have 0 as Gold, a bronze greater than 1, and a silver less than 1?
### CONTEXT
CREATE TABLE table_name_94 (total VARCHAR, silver VARCHAR, gold VARCHAR, bronze VARCHAR)
### ANSWER
SELECT COUNT(total) FROM table_name_94 WHERE gold = 0 AND bronze > 1 AND silver < 1 | {
"answer": "SELECT COUNT(total) FROM table_name_94 WHERE gold = 0 AND bronze > 1 AND silver < 1",
"context": "CREATE TABLE table_name_94 (total VARCHAR, silver VARCHAR, gold VARCHAR, bronze VARCHAR)",
"question": "How many totals have 0 as Gold, a bronze greater than 1, and a silver less than 1?"
} |
### QUESTION
What was the date of the game played at Fenway Park?
### CONTEXT
CREATE TABLE table_name_28 (date VARCHAR, game_site VARCHAR)
### ANSWER
SELECT date FROM table_name_28 WHERE game_site = "fenway park" | {
"answer": "SELECT date FROM table_name_28 WHERE game_site = \"fenway park\"",
"context": "CREATE TABLE table_name_28 (date VARCHAR, game_site VARCHAR)",
"question": "What was the date of the game played at Fenway Park?"
} |
### QUESTION
What is the name of the host nations if the winner was Hong Kong 207/6 (47.1 overs)?
### CONTEXT
CREATE TABLE table_22577693_1 (host_nation_s_ VARCHAR, winner VARCHAR)
### ANSWER
SELECT host_nation_s_ FROM table_22577693_1 WHERE winner = "Hong Kong 207/6 (47.1 overs)" | {
"answer": "SELECT host_nation_s_ FROM table_22577693_1 WHERE winner = \"Hong Kong 207/6 (47.1 overs)\"",
"context": "CREATE TABLE table_22577693_1 (host_nation_s_ VARCHAR, winner VARCHAR)",
"question": "What is the name of the host nations if the winner was Hong Kong 207/6 (47.1 overs)?"
} |
### QUESTION
How many different horse-powers does the Cochrane have?
### CONTEXT
CREATE TABLE table_23614702_1 (horse__power VARCHAR, warship VARCHAR)
### ANSWER
SELECT COUNT(horse__power) FROM table_23614702_1 WHERE warship = "Cochrane" | {
"answer": "SELECT COUNT(horse__power) FROM table_23614702_1 WHERE warship = \"Cochrane\"",
"context": "CREATE TABLE table_23614702_1 (horse__power VARCHAR, warship VARCHAR)",
"question": "How many different horse-powers does the Cochrane have?"
} |
### QUESTION
How many crops were damaged when the public property damage was 1,03,049.60?
### CONTEXT
CREATE TABLE table_20403667_2 (crop_damaged__in_lakh_inr__ VARCHAR, public_property_damaged__in_lakh_inr__ VARCHAR)
### ANSWER
SELECT crop_damaged__in_lakh_inr__ FROM table_20403667_2 WHERE public_property_damaged__in_lakh_inr__ = "1,03,049.60" | {
"answer": "SELECT crop_damaged__in_lakh_inr__ FROM table_20403667_2 WHERE public_property_damaged__in_lakh_inr__ = \"1,03,049.60\"",
"context": "CREATE TABLE table_20403667_2 (crop_damaged__in_lakh_inr__ VARCHAR, public_property_damaged__in_lakh_inr__ VARCHAR)",
"question": "How many crops were damaged when the public property damage was 1,03,049.60?"
} |
### QUESTION
What record was reached with a score of 7 - 2?
### CONTEXT
CREATE TABLE table_name_8 (record VARCHAR, score VARCHAR)
### ANSWER
SELECT record FROM table_name_8 WHERE score = "7 - 2" | {
"answer": "SELECT record FROM table_name_8 WHERE score = \"7 - 2\"",
"context": "CREATE TABLE table_name_8 (record VARCHAR, score VARCHAR)",
"question": "What record was reached with a score of 7 - 2?"
} |
### QUESTION
How many ranks are higher than lane 4 from Great Britain, raced by Margaretha Pedder?
### CONTEXT
CREATE TABLE table_name_83 (rank VARCHAR, name VARCHAR, lane VARCHAR, nationality VARCHAR)
### ANSWER
SELECT COUNT(rank) FROM table_name_83 WHERE lane > 4 AND nationality = "great britain" AND name = "margaretha pedder" | {
"answer": "SELECT COUNT(rank) FROM table_name_83 WHERE lane > 4 AND nationality = \"great britain\" AND name = \"margaretha pedder\"",
"context": "CREATE TABLE table_name_83 (rank VARCHAR, name VARCHAR, lane VARCHAR, nationality VARCHAR)",
"question": "How many ranks are higher than lane 4 from Great Britain, raced by Margaretha Pedder?"
} |
### QUESTION
Name the number one singles for desvarieux, jacob
### CONTEXT
CREATE TABLE table_27441210_5 (number_one_single_s_ VARCHAR, artist VARCHAR)
### ANSWER
SELECT number_one_single_s_ FROM table_27441210_5 WHERE artist = "Desvarieux, Jacob" | {
"answer": "SELECT number_one_single_s_ FROM table_27441210_5 WHERE artist = \"Desvarieux, Jacob\"",
"context": "CREATE TABLE table_27441210_5 (number_one_single_s_ VARCHAR, artist VARCHAR)",
"question": "Name the number one singles for desvarieux, jacob"
} |
### QUESTION
Find the first name and office of the professor who is in the history department and has a Ph.D. degree.
### CONTEXT
CREATE TABLE department (dept_code VARCHAR, dept_name VARCHAR); CREATE TABLE professor (prof_office VARCHAR, emp_num VARCHAR, dept_code VARCHAR, prof_high_degree VARCHAR); CREATE TABLE employee (emp_fname VARCHAR, emp_num VARCHAR)
### ANSWER
SELECT T1.emp_fname, T2.prof_office FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T3.dept_code = T2.dept_code WHERE T3.dept_name = 'History' AND T2.prof_high_degree = 'Ph.D.' | {
"answer": "SELECT T1.emp_fname, T2.prof_office FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T3.dept_code = T2.dept_code WHERE T3.dept_name = 'History' AND T2.prof_high_degree = 'Ph.D.'",
"context": "CREATE TABLE department (dept_code VARCHAR, dept_name VARCHAR); CREATE TABLE professor (prof_office VARCHAR, emp_num VARCHAR, dept_code VARCHAR, prof_high_degree VARCHAR); CREATE TABLE employee (emp_fname VARCHAR, emp_num VARCHAR)",
"question": "Find the first name and office of the professor who is in the history department and has a Ph.D. degree."
} |
### QUESTION
What is the new classification for the University of Arizona Western in the Collegiate Lacrosse League?
### CONTEXT
CREATE TABLE table_14976504_2 (new_classification VARCHAR, institution VARCHAR)
### ANSWER
SELECT new_classification FROM table_14976504_2 WHERE institution = "University of Arizona" | {
"answer": "SELECT new_classification FROM table_14976504_2 WHERE institution = \"University of Arizona\"",
"context": "CREATE TABLE table_14976504_2 (new_classification VARCHAR, institution VARCHAR)",
"question": "What is the new classification for the University of Arizona Western in the Collegiate Lacrosse League?"
} |
### QUESTION
Name the high points for l 110–112 (ot)
### CONTEXT
CREATE TABLE table_27733258_6 (high_points VARCHAR, score VARCHAR)
### ANSWER
SELECT high_points FROM table_27733258_6 WHERE score = "L 110–112 (OT)" | {
"answer": "SELECT high_points FROM table_27733258_6 WHERE score = \"L 110–112 (OT)\"",
"context": "CREATE TABLE table_27733258_6 (high_points VARCHAR, score VARCHAR)",
"question": "Name the high points for l 110–112 (ot)"
} |
### QUESTION
What was the score of the game with away team chelsea on 29 january 1983?
### CONTEXT
CREATE TABLE table_name_10 (score VARCHAR, date VARCHAR, away_team VARCHAR)
### ANSWER
SELECT score FROM table_name_10 WHERE date = "29 january 1983" AND away_team = "chelsea" | {
"answer": "SELECT score FROM table_name_10 WHERE date = \"29 january 1983\" AND away_team = \"chelsea\"",
"context": "CREATE TABLE table_name_10 (score VARCHAR, date VARCHAR, away_team VARCHAR)",
"question": "What was the score of the game with away team chelsea on 29 january 1983?"
} |
### QUESTION
What is the average tourism receipts in millions of US dollars in 2011 with less than 1.141 million of 2011 tourist arrivals and more than 1,449 tourism receipts in 2011 US dollars per arrival?
### CONTEXT
CREATE TABLE table_name_41 (tourism_receipts__2011___millions_of_us INTEGER, tourist_arrivals__2011___millions_ VARCHAR, tourism_receipts__2011___us$_per_arrival_ VARCHAR)
### ANSWER
SELECT AVG(tourism_receipts__2011___millions_of_us) AS $_ FROM table_name_41 WHERE tourist_arrivals__2011___millions_ < 1.141 AND tourism_receipts__2011___us$_per_arrival_ > 1 OFFSET 449 | {
"answer": "SELECT AVG(tourism_receipts__2011___millions_of_us) AS $_ FROM table_name_41 WHERE tourist_arrivals__2011___millions_ < 1.141 AND tourism_receipts__2011___us$_per_arrival_ > 1 OFFSET 449",
"context": "CREATE TABLE table_name_41 (tourism_receipts__2011___millions_of_us INTEGER, tourist_arrivals__2011___millions_ VARCHAR, tourism_receipts__2011___us$_per_arrival_ VARCHAR)",
"question": "What is the average tourism receipts in millions of US dollars in 2011 with less than 1.141 million of 2011 tourist arrivals and more than 1,449 tourism receipts in 2011 US dollars per arrival?"
} |
### QUESTION
What was the Loss when the opponent was the Rangers and the attendance was greater than 43,211?
### CONTEXT
CREATE TABLE table_name_57 (loss VARCHAR, opponent VARCHAR, attendance VARCHAR)
### ANSWER
SELECT loss FROM table_name_57 WHERE opponent = "rangers" AND attendance > 43 OFFSET 211 | {
"answer": "SELECT loss FROM table_name_57 WHERE opponent = \"rangers\" AND attendance > 43 OFFSET 211",
"context": "CREATE TABLE table_name_57 (loss VARCHAR, opponent VARCHAR, attendance VARCHAR)",
"question": "What was the Loss when the opponent was the Rangers and the attendance was greater than 43,211?"
} |
### QUESTION
Who won the Silver the Year Katie Curtis Unknown won the Bronze?
### CONTEXT
CREATE TABLE table_name_28 (silver VARCHAR, bronze VARCHAR)
### ANSWER
SELECT silver FROM table_name_28 WHERE bronze = "katie curtis unknown" | {
"answer": "SELECT silver FROM table_name_28 WHERE bronze = \"katie curtis unknown\"",
"context": "CREATE TABLE table_name_28 (silver VARCHAR, bronze VARCHAR)",
"question": "Who won the Silver the Year Katie Curtis Unknown won the Bronze?"
} |
### QUESTION
Which Attendance has a Result of 1-0, and a Venue of A, and an Opponent of newcastle united?
### CONTEXT
CREATE TABLE table_name_77 (attendance INTEGER, opponent VARCHAR, result VARCHAR, venue VARCHAR)
### ANSWER
SELECT MIN(attendance) FROM table_name_77 WHERE result = "1-0" AND venue = "a" AND opponent = "newcastle united" | {
"answer": "SELECT MIN(attendance) FROM table_name_77 WHERE result = \"1-0\" AND venue = \"a\" AND opponent = \"newcastle united\"",
"context": "CREATE TABLE table_name_77 (attendance INTEGER, opponent VARCHAR, result VARCHAR, venue VARCHAR)",
"question": "Which Attendance has a Result of 1-0, and a Venue of A, and an Opponent of newcastle united?"
} |
### QUESTION
What is the total number of S No(s), when the Margin is 16 runs?
### CONTEXT
CREATE TABLE table_name_88 (s_no VARCHAR, margin VARCHAR)
### ANSWER
SELECT COUNT(s_no) FROM table_name_88 WHERE margin = "16 runs" | {
"answer": "SELECT COUNT(s_no) FROM table_name_88 WHERE margin = \"16 runs\"",
"context": "CREATE TABLE table_name_88 (s_no VARCHAR, margin VARCHAR)",
"question": "What is the total number of S No(s), when the Margin is 16 runs?"
} |
### QUESTION
What was the average money for United States when Lanny Wadkins played?
### CONTEXT
CREATE TABLE table_name_94 (money___ INTEGER, country VARCHAR, player VARCHAR)
### ANSWER
SELECT AVG(money___) AS $__ FROM table_name_94 WHERE country = "united states" AND player = "lanny wadkins" | {
"answer": "SELECT AVG(money___) AS $__ FROM table_name_94 WHERE country = \"united states\" AND player = \"lanny wadkins\"",
"context": "CREATE TABLE table_name_94 (money___ INTEGER, country VARCHAR, player VARCHAR)",
"question": "What was the average money for United States when Lanny Wadkins played?"
} |
### QUESTION
Name what was published in july 1934 with a setting of mars
### CONTEXT
CREATE TABLE table_name_22 (published_in VARCHAR, setting VARCHAR, publication_date VARCHAR)
### ANSWER
SELECT published_in FROM table_name_22 WHERE setting = "mars" AND publication_date = "july 1934" | {
"answer": "SELECT published_in FROM table_name_22 WHERE setting = \"mars\" AND publication_date = \"july 1934\"",
"context": "CREATE TABLE table_name_22 (published_in VARCHAR, setting VARCHAR, publication_date VARCHAR)",
"question": "Name what was published in july 1934 with a setting of mars"
} |
### QUESTION
Name the standard yarn weight system for 9 wpi
### CONTEXT
CREATE TABLE table_20297668_1 (standard_yarn_weight_system VARCHAR, wraps_per_inch__wpi_ VARCHAR)
### ANSWER
SELECT standard_yarn_weight_system FROM table_20297668_1 WHERE wraps_per_inch__wpi_ = "9 wpi" | {
"answer": "SELECT standard_yarn_weight_system FROM table_20297668_1 WHERE wraps_per_inch__wpi_ = \"9 wpi\"",
"context": "CREATE TABLE table_20297668_1 (standard_yarn_weight_system VARCHAR, wraps_per_inch__wpi_ VARCHAR)",
"question": "Name the standard yarn weight system for 9 wpi"
} |
### QUESTION
Find the name and ID of the product whose total order quantity is the largest.
### CONTEXT
CREATE TABLE order_items (product_id VARCHAR, order_quantity INTEGER); CREATE TABLE products (product_details VARCHAR, product_id VARCHAR)
### ANSWER
SELECT t2.product_details, t2.product_id FROM order_items AS t1 JOIN products AS t2 ON t1.product_id = t2.product_id GROUP BY t1.product_id ORDER BY SUM(t1.order_quantity) LIMIT 1 | {
"answer": "SELECT t2.product_details, t2.product_id FROM order_items AS t1 JOIN products AS t2 ON t1.product_id = t2.product_id GROUP BY t1.product_id ORDER BY SUM(t1.order_quantity) LIMIT 1",
"context": "CREATE TABLE order_items (product_id VARCHAR, order_quantity INTEGER); CREATE TABLE products (product_details VARCHAR, product_id VARCHAR)",
"question": "Find the name and ID of the product whose total order quantity is the largest."
} |
### QUESTION
What is every episode number for the series number 3?
### CONTEXT
CREATE TABLE table_27208311_1 (episode_no_episode_no_refers_to_the_episodes_number_in_the_overall_series VARCHAR, _whereas_series_no_refers_to_the_episodes_number_in_this_particular_series VARCHAR, series_no VARCHAR)
### ANSWER
SELECT episode_no_episode_no_refers_to_the_episodes_number_in_the_overall_series, _whereas_series_no_refers_to_the_episodes_number_in_this_particular_series FROM table_27208311_1 WHERE series_no = 3 | {
"answer": "SELECT episode_no_episode_no_refers_to_the_episodes_number_in_the_overall_series, _whereas_series_no_refers_to_the_episodes_number_in_this_particular_series FROM table_27208311_1 WHERE series_no = 3",
"context": "CREATE TABLE table_27208311_1 (episode_no_episode_no_refers_to_the_episodes_number_in_the_overall_series VARCHAR, _whereas_series_no_refers_to_the_episodes_number_in_this_particular_series VARCHAR, series_no VARCHAR)",
"question": "What is every episode number for the series number 3?"
} |
### QUESTION
Name the order number for 1960s
### CONTEXT
CREATE TABLE table_19508635_1 (order__number VARCHAR, theme VARCHAR)
### ANSWER
SELECT order__number FROM table_19508635_1 WHERE theme = "1960s" | {
"answer": "SELECT order__number FROM table_19508635_1 WHERE theme = \"1960s\"",
"context": "CREATE TABLE table_19508635_1 (order__number VARCHAR, theme VARCHAR)",
"question": "Name the order number for 1960s"
} |
### QUESTION
Which player scored 71?
### CONTEXT
CREATE TABLE table_name_4 (player VARCHAR, score VARCHAR)
### ANSWER
SELECT player FROM table_name_4 WHERE score = 71 | {
"answer": "SELECT player FROM table_name_4 WHERE score = 71",
"context": "CREATE TABLE table_name_4 (player VARCHAR, score VARCHAR)",
"question": "Which player scored 71?"
} |
### QUESTION
What is the 1999-2000 team, when the Height (cm) is less than 187, and when the Birthplace is Cloquet, Minnesota?
### CONTEXT
CREATE TABLE table_name_93 (height__cm_ VARCHAR, birthplace VARCHAR)
### ANSWER
SELECT 1999 AS _2000_team FROM table_name_93 WHERE height__cm_ < 187 AND birthplace = "cloquet, minnesota" | {
"answer": "SELECT 1999 AS _2000_team FROM table_name_93 WHERE height__cm_ < 187 AND birthplace = \"cloquet, minnesota\"",
"context": "CREATE TABLE table_name_93 (height__cm_ VARCHAR, birthplace VARCHAR)",
"question": "What is the 1999-2000 team, when the Height (cm) is less than 187, and when the Birthplace is Cloquet, Minnesota?"
} |
### QUESTION
What position did Co-driver Jackie Oliver finish in the 24 hours of Le Mans?
### CONTEXT
CREATE TABLE table_name_39 (pos VARCHAR, race VARCHAR, co_driver VARCHAR)
### ANSWER
SELECT pos FROM table_name_39 WHERE race = "24 hours of le mans" AND co_driver = "jackie oliver" | {
"answer": "SELECT pos FROM table_name_39 WHERE race = \"24 hours of le mans\" AND co_driver = \"jackie oliver\"",
"context": "CREATE TABLE table_name_39 (pos VARCHAR, race VARCHAR, co_driver VARCHAR)",
"question": "What position did Co-driver Jackie Oliver finish in the 24 hours of Le Mans?"
} |
### QUESTION
How many points does mia martini have?
### CONTEXT
CREATE TABLE table_name_1 (points VARCHAR, artist VARCHAR)
### ANSWER
SELECT COUNT(points) FROM table_name_1 WHERE artist = "mia martini" | {
"answer": "SELECT COUNT(points) FROM table_name_1 WHERE artist = \"mia martini\"",
"context": "CREATE TABLE table_name_1 (points VARCHAR, artist VARCHAR)",
"question": "How many points does mia martini have?"
} |
### QUESTION
Retrieve the open and close dates of all the policies associated with the customer whose name contains "Diana"
### CONTEXT
CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE customers_policies (date_opened VARCHAR, date_closed VARCHAR, customer_id VARCHAR)
### ANSWER
SELECT t2.date_opened, t2.date_closed FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id WHERE t1.customer_name LIKE "%Diana%" | {
"answer": "SELECT t2.date_opened, t2.date_closed FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id WHERE t1.customer_name LIKE \"%Diana%\"",
"context": "CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE customers_policies (date_opened VARCHAR, date_closed VARCHAR, customer_id VARCHAR)",
"question": "Retrieve the open and close dates of all the policies associated with the customer whose name contains \"Diana\""
} |
### QUESTION
Which services type had both successful and failure event details?
### CONTEXT
CREATE TABLE EVENTS (service_id VARCHAR, event_details VARCHAR); CREATE TABLE services (service_type_code VARCHAR, service_id VARCHAR)
### ANSWER
SELECT T1.service_type_code FROM services AS T1 JOIN EVENTS AS T2 ON T1.service_id = T2.service_id WHERE T2.event_details = 'Success' INTERSECT SELECT T1.service_type_code FROM services AS T1 JOIN EVENTS AS T2 ON T1.service_id = T2.service_id WHERE T2.event_details = 'Fail' | {
"answer": "SELECT T1.service_type_code FROM services AS T1 JOIN EVENTS AS T2 ON T1.service_id = T2.service_id WHERE T2.event_details = 'Success' INTERSECT SELECT T1.service_type_code FROM services AS T1 JOIN EVENTS AS T2 ON T1.service_id = T2.service_id WHERE T2.event_details = 'Fail'",
"context": "CREATE TABLE EVENTS (service_id VARCHAR, event_details VARCHAR); CREATE TABLE services (service_type_code VARCHAR, service_id VARCHAR)",
"question": "Which services type had both successful and failure event details?"
} |
### QUESTION
Which Ulster player has fewer than 49 caps and plays the wing position?
### CONTEXT
CREATE TABLE table_name_4 (player VARCHAR, club_province VARCHAR, caps VARCHAR, position VARCHAR)
### ANSWER
SELECT player FROM table_name_4 WHERE caps < 49 AND position = "wing" AND club_province = "ulster" | {
"answer": "SELECT player FROM table_name_4 WHERE caps < 49 AND position = \"wing\" AND club_province = \"ulster\"",
"context": "CREATE TABLE table_name_4 (player VARCHAR, club_province VARCHAR, caps VARCHAR, position VARCHAR)",
"question": "Which Ulster player has fewer than 49 caps and plays the wing position?"
} |
### QUESTION
What is the price of the internet provider that has an upstream rate of 256 kbit and a downstream rate of 512 kbit?
### CONTEXT
CREATE TABLE table_name_24 (price VARCHAR, upstream VARCHAR, downstream VARCHAR)
### ANSWER
SELECT price FROM table_name_24 WHERE upstream = "256 kbit" AND downstream = "512 kbit" | {
"answer": "SELECT price FROM table_name_24 WHERE upstream = \"256 kbit\" AND downstream = \"512 kbit\"",
"context": "CREATE TABLE table_name_24 (price VARCHAR, upstream VARCHAR, downstream VARCHAR)",
"question": "What is the price of the internet provider that has an upstream rate of 256 kbit and a downstream rate of 512 kbit?"
} |
### QUESTION
Find the id of users who are followed by Mary or Susan.
### CONTEXT
CREATE TABLE follows (f1 VARCHAR, f2 VARCHAR); CREATE TABLE user_profiles (uid VARCHAR, name VARCHAR)
### ANSWER
SELECT T2.f1 FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f2 WHERE T1.name = "Mary" OR T1.name = "Susan" | {
"answer": "SELECT T2.f1 FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f2 WHERE T1.name = \"Mary\" OR T1.name = \"Susan\"",
"context": "CREATE TABLE follows (f1 VARCHAR, f2 VARCHAR); CREATE TABLE user_profiles (uid VARCHAR, name VARCHAR)",
"question": "Find the id of users who are followed by Mary or Susan."
} |
### QUESTION
Which Points difference has Played of 32, and Points for of 840?
### CONTEXT
CREATE TABLE table_name_23 (points_difference VARCHAR, played VARCHAR, points_for VARCHAR)
### ANSWER
SELECT points_difference FROM table_name_23 WHERE played = "32" AND points_for = "840" | {
"answer": "SELECT points_difference FROM table_name_23 WHERE played = \"32\" AND points_for = \"840\"",
"context": "CREATE TABLE table_name_23 (points_difference VARCHAR, played VARCHAR, points_for VARCHAR)",
"question": "Which Points difference has Played of 32, and Points for of 840?"
} |
### QUESTION
Tell me the most Att with a long of 27 with yards longer than 27
### CONTEXT
CREATE TABLE table_name_24 (att INTEGER, long VARCHAR, yards VARCHAR)
### ANSWER
SELECT MAX(att) FROM table_name_24 WHERE long = 27 AND yards > 27 | {
"answer": "SELECT MAX(att) FROM table_name_24 WHERE long = 27 AND yards > 27",
"context": "CREATE TABLE table_name_24 (att INTEGER, long VARCHAR, yards VARCHAR)",
"question": "Tell me the most Att with a long of 27 with yards longer than 27"
} |
### QUESTION
What state was maria cantwell born in after 1955?
### CONTEXT
CREATE TABLE table_name_50 (state VARCHAR, born VARCHAR, name VARCHAR)
### ANSWER
SELECT state FROM table_name_50 WHERE born > 1955 AND name = "maria cantwell" | {
"answer": "SELECT state FROM table_name_50 WHERE born > 1955 AND name = \"maria cantwell\"",
"context": "CREATE TABLE table_name_50 (state VARCHAR, born VARCHAR, name VARCHAR)",
"question": "What state was maria cantwell born in after 1955?"
} |
### QUESTION
what is the maximum ties played where player is josip palada category:articles with hcards
### CONTEXT
CREATE TABLE table_10294071_1 (ties_played INTEGER, player VARCHAR)
### ANSWER
SELECT MAX(ties_played) FROM table_10294071_1 WHERE player = "Josip Palada Category:Articles with hCards" | {
"answer": "SELECT MAX(ties_played) FROM table_10294071_1 WHERE player = \"Josip Palada Category:Articles with hCards\"",
"context": "CREATE TABLE table_10294071_1 (ties_played INTEGER, player VARCHAR)",
"question": "what is the maximum ties played where player is josip palada category:articles with hcards"
} |
### QUESTION
What is Record, when Location Attendance, is Madison Square Garden 19,009?
### CONTEXT
CREATE TABLE table_name_32 (record VARCHAR, location_attendance VARCHAR)
### ANSWER
SELECT record FROM table_name_32 WHERE location_attendance = "madison square garden 19,009" | {
"answer": "SELECT record FROM table_name_32 WHERE location_attendance = \"madison square garden 19,009\"",
"context": "CREATE TABLE table_name_32 (record VARCHAR, location_attendance VARCHAR)",
"question": "What is Record, when Location Attendance, is Madison Square Garden 19,009?"
} |
### QUESTION
Which Points has a Team of são paulo athletic, and a Position larger than 5?
### CONTEXT
CREATE TABLE table_name_15 (points INTEGER, team VARCHAR, position VARCHAR)
### ANSWER
SELECT SUM(points) FROM table_name_15 WHERE team = "são paulo athletic" AND position > 5 | {
"answer": "SELECT SUM(points) FROM table_name_15 WHERE team = \"são paulo athletic\" AND position > 5",
"context": "CREATE TABLE table_name_15 (points INTEGER, team VARCHAR, position VARCHAR)",
"question": "Which Points has a Team of são paulo athletic, and a Position larger than 5?"
} |
### QUESTION
What is the name of the stone found in Andhra Pradesh, India?
### CONTEXT
CREATE TABLE table_name_13 (name_of_the_stone__sila_ VARCHAR, name_of_the_state_where_found_in_india VARCHAR)
### ANSWER
SELECT name_of_the_stone__sila_ FROM table_name_13 WHERE name_of_the_state_where_found_in_india = "andhra pradesh" | {
"answer": "SELECT name_of_the_stone__sila_ FROM table_name_13 WHERE name_of_the_state_where_found_in_india = \"andhra pradesh\"",
"context": "CREATE TABLE table_name_13 (name_of_the_stone__sila_ VARCHAR, name_of_the_state_where_found_in_india VARCHAR)",
"question": "What is the name of the stone found in Andhra Pradesh, India?"
} |
### QUESTION
What was the lowest city population for the district of rajanpur district with a area of 6 km squared and a serial number less than 29?
### CONTEXT
CREATE TABLE table_name_15 (city_population__2009_ INTEGER, serial_no VARCHAR, city_area_km_2__ VARCHAR, district VARCHAR)
### ANSWER
SELECT MIN(city_population__2009_) FROM table_name_15 WHERE city_area_km_2__ = 6 AND district = "rajanpur district" AND serial_no < 29 | {
"answer": "SELECT MIN(city_population__2009_) FROM table_name_15 WHERE city_area_km_2__ = 6 AND district = \"rajanpur district\" AND serial_no < 29",
"context": "CREATE TABLE table_name_15 (city_population__2009_ INTEGER, serial_no VARCHAR, city_area_km_2__ VARCHAR, district VARCHAR)",
"question": "What was the lowest city population for the district of rajanpur district with a area of 6 km squared and a serial number less than 29?"
} |
### QUESTION
Name the highest laps for maserati and +6 laps for grid more than 11
### CONTEXT
CREATE TABLE table_name_33 (laps INTEGER, grid VARCHAR, constructor VARCHAR, time_retired VARCHAR)
### ANSWER
SELECT MAX(laps) FROM table_name_33 WHERE constructor = "maserati" AND time_retired = "+6 laps" AND grid > 11 | {
"answer": "SELECT MAX(laps) FROM table_name_33 WHERE constructor = \"maserati\" AND time_retired = \"+6 laps\" AND grid > 11",
"context": "CREATE TABLE table_name_33 (laps INTEGER, grid VARCHAR, constructor VARCHAR, time_retired VARCHAR)",
"question": "Name the highest laps for maserati and +6 laps for grid more than 11"
} |
### QUESTION
What was the number of season number entries that had US Viewers of 12.30 million?
### CONTEXT
CREATE TABLE table_21781578_2 (season_no VARCHAR, us_viewers__millions_ VARCHAR)
### ANSWER
SELECT COUNT(season_no) FROM table_21781578_2 WHERE us_viewers__millions_ = "12.30" | {
"answer": "SELECT COUNT(season_no) FROM table_21781578_2 WHERE us_viewers__millions_ = \"12.30\"",
"context": "CREATE TABLE table_21781578_2 (season_no VARCHAR, us_viewers__millions_ VARCHAR)",
"question": "What was the number of season number entries that had US Viewers of 12.30 million?"
} |
### QUESTION
What is the chassis for Augusto Scalbi on Team RP Motorsport?
### CONTEXT
CREATE TABLE table_name_34 (chassis VARCHAR, team VARCHAR, driver VARCHAR)
### ANSWER
SELECT chassis FROM table_name_34 WHERE team = "rp motorsport" AND driver = "augusto scalbi" | {
"answer": "SELECT chassis FROM table_name_34 WHERE team = \"rp motorsport\" AND driver = \"augusto scalbi\"",
"context": "CREATE TABLE table_name_34 (chassis VARCHAR, team VARCHAR, driver VARCHAR)",
"question": "What is the chassis for Augusto Scalbi on Team RP Motorsport?"
} |
### QUESTION
What's the highest swimsuit for an average less than 8.073, evening gown less than 8.31, and an interview over 8.23 in georgia?
### CONTEXT
CREATE TABLE table_name_13 (swimsuit INTEGER, state VARCHAR, interview VARCHAR, average VARCHAR, evening_gown VARCHAR)
### ANSWER
SELECT MAX(swimsuit) FROM table_name_13 WHERE average < 8.073 AND evening_gown < 8.31 AND interview > 8.23 AND state = "georgia" | {
"answer": "SELECT MAX(swimsuit) FROM table_name_13 WHERE average < 8.073 AND evening_gown < 8.31 AND interview > 8.23 AND state = \"georgia\"",
"context": "CREATE TABLE table_name_13 (swimsuit INTEGER, state VARCHAR, interview VARCHAR, average VARCHAR, evening_gown VARCHAR)",
"question": "What's the highest swimsuit for an average less than 8.073, evening gown less than 8.31, and an interview over 8.23 in georgia?"
} |
### QUESTION
Socket of fcbga1088, and a Voltage of 1v, and a Part number(s) of nu80579ez600cnu80579ez600ct is what mult?
### CONTEXT
CREATE TABLE table_name_3 (mult VARCHAR, part_number_s_ VARCHAR, socket VARCHAR, voltage VARCHAR)
### ANSWER
SELECT mult FROM table_name_3 WHERE socket = "fcbga1088" AND voltage = "1v" AND part_number_s_ = "nu80579ez600cnu80579ez600ct" | {
"answer": "SELECT mult FROM table_name_3 WHERE socket = \"fcbga1088\" AND voltage = \"1v\" AND part_number_s_ = \"nu80579ez600cnu80579ez600ct\"",
"context": "CREATE TABLE table_name_3 (mult VARCHAR, part_number_s_ VARCHAR, socket VARCHAR, voltage VARCHAR)",
"question": "Socket of fcbga1088, and a Voltage of 1v, and a Part number(s) of nu80579ez600cnu80579ez600ct is what mult?"
} |
### QUESTION
How many pints does the Cambrian Welfare RFC have?
### CONTEXT
CREATE TABLE table_name_50 (points_for VARCHAR, club VARCHAR)
### ANSWER
SELECT points_for FROM table_name_50 WHERE club = "cambrian welfare rfc" | {
"answer": "SELECT points_for FROM table_name_50 WHERE club = \"cambrian welfare rfc\"",
"context": "CREATE TABLE table_name_50 (points_for VARCHAR, club VARCHAR)",
"question": "How many pints does the Cambrian Welfare RFC have?"
} |
### QUESTION
Who was the runner-up for the mazda senior tournament players championship tournament when the margin of victory was 2 strokes?
### CONTEXT
CREATE TABLE table_name_86 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)
### ANSWER
SELECT runner_s__up FROM table_name_86 WHERE margin_of_victory = "2 strokes" AND tournament = "mazda senior tournament players championship" | {
"answer": "SELECT runner_s__up FROM table_name_86 WHERE margin_of_victory = \"2 strokes\" AND tournament = \"mazda senior tournament players championship\"",
"context": "CREATE TABLE table_name_86 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)",
"question": "Who was the runner-up for the mazda senior tournament players championship tournament when the margin of victory was 2 strokes?"
} |
### QUESTION
get the details of employees who manage a department.
### CONTEXT
CREATE TABLE departments (department_id VARCHAR, manager_id VARCHAR); CREATE TABLE employees (department_id VARCHAR, employee_id VARCHAR)
### ANSWER
SELECT DISTINCT * FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id WHERE T1.employee_id = T2.manager_id | {
"answer": "SELECT DISTINCT * FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id WHERE T1.employee_id = T2.manager_id",
"context": "CREATE TABLE departments (department_id VARCHAR, manager_id VARCHAR); CREATE TABLE employees (department_id VARCHAR, employee_id VARCHAR)",
"question": "get the details of employees who manage a department."
} |
### QUESTION
What is the amount of US open runner-up score?
### CONTEXT
CREATE TABLE table_22858557_1 (score_in_final VARCHAR, championship VARCHAR, outcome VARCHAR)
### ANSWER
SELECT COUNT(score_in_final) FROM table_22858557_1 WHERE championship = "US Open" AND outcome = "Runner-up" | {
"answer": "SELECT COUNT(score_in_final) FROM table_22858557_1 WHERE championship = \"US Open\" AND outcome = \"Runner-up\"",
"context": "CREATE TABLE table_22858557_1 (score_in_final VARCHAR, championship VARCHAR, outcome VARCHAR)",
"question": "What is the amount of US open runner-up score?"
} |
### QUESTION
What is the type when Rangers are the moving from?
### CONTEXT
CREATE TABLE table_name_40 (type VARCHAR, moving_from VARCHAR)
### ANSWER
SELECT type FROM table_name_40 WHERE moving_from = "rangers" | {
"answer": "SELECT type FROM table_name_40 WHERE moving_from = \"rangers\"",
"context": "CREATE TABLE table_name_40 (type VARCHAR, moving_from VARCHAR)",
"question": "What is the type when Rangers are the moving from?"
} |
### QUESTION
What Average Pick # has an Overall of 296?
### CONTEXT
CREATE TABLE table_name_8 (pick__number INTEGER, overall VARCHAR)
### ANSWER
SELECT AVG(pick__number) FROM table_name_8 WHERE overall = 296 | {
"answer": "SELECT AVG(pick__number) FROM table_name_8 WHERE overall = 296",
"context": "CREATE TABLE table_name_8 (pick__number INTEGER, overall VARCHAR)",
"question": "What Average Pick # has an Overall of 296?"
} |
### QUESTION
What is the highest number of games played for teams with 3 draws, 5 losses, and under 39 points?
### CONTEXT
CREATE TABLE table_name_64 (games_played INTEGER, points VARCHAR, draws VARCHAR, loses VARCHAR)
### ANSWER
SELECT MAX(games_played) FROM table_name_64 WHERE draws = 3 AND loses = 5 AND points < 39 | {
"answer": "SELECT MAX(games_played) FROM table_name_64 WHERE draws = 3 AND loses = 5 AND points < 39",
"context": "CREATE TABLE table_name_64 (games_played INTEGER, points VARCHAR, draws VARCHAR, loses VARCHAR)",
"question": "What is the highest number of games played for teams with 3 draws, 5 losses, and under 39 points?"
} |
### QUESTION
What was the tier versus Annalisa bona?
### CONTEXT
CREATE TABLE table_name_59 (tier VARCHAR, opponent_in_the_final VARCHAR)
### ANSWER
SELECT tier FROM table_name_59 WHERE opponent_in_the_final = "annalisa bona" | {
"answer": "SELECT tier FROM table_name_59 WHERE opponent_in_the_final = \"annalisa bona\"",
"context": "CREATE TABLE table_name_59 (tier VARCHAR, opponent_in_the_final VARCHAR)",
"question": "What was the tier versus Annalisa bona?"
} |
### QUESTION
what's the original air date where written by is iain morris & damon beesley
### CONTEXT
CREATE TABLE table_11589522_3 (original_air_date VARCHAR, written_by VARCHAR)
### ANSWER
SELECT original_air_date FROM table_11589522_3 WHERE written_by = "Iain Morris & Damon Beesley" | {
"answer": "SELECT original_air_date FROM table_11589522_3 WHERE written_by = \"Iain Morris & Damon Beesley\"",
"context": "CREATE TABLE table_11589522_3 (original_air_date VARCHAR, written_by VARCHAR)",
"question": " what's the original air date where written by is iain morris & damon beesley"
} |
### QUESTION
What's the sum of ERP W with a Frequency MHz that larger than 97.7?
### CONTEXT
CREATE TABLE table_name_2 (erp_w VARCHAR, frequency_mhz INTEGER)
### ANSWER
SELECT COUNT(erp_w) FROM table_name_2 WHERE frequency_mhz > 97.7 | {
"answer": "SELECT COUNT(erp_w) FROM table_name_2 WHERE frequency_mhz > 97.7",
"context": "CREATE TABLE table_name_2 (erp_w VARCHAR, frequency_mhz INTEGER)",
"question": "What's the sum of ERP W with a Frequency MHz that larger than 97.7?"
} |
### QUESTION
Which Land area (km²) has a Population density (per km²) larger than 112.6, and a Population (2006) larger than 785, and a Name of pinehouse?
### CONTEXT
CREATE TABLE table_name_12 (land_area__km²_ INTEGER, name VARCHAR, population_density__per_km²_ VARCHAR, population__2006_ VARCHAR)
### ANSWER
SELECT MAX(land_area__km²_) FROM table_name_12 WHERE population_density__per_km²_ > 112.6 AND population__2006_ > 785 AND name = "pinehouse" | {
"answer": "SELECT MAX(land_area__km²_) FROM table_name_12 WHERE population_density__per_km²_ > 112.6 AND population__2006_ > 785 AND name = \"pinehouse\"",
"context": "CREATE TABLE table_name_12 (land_area__km²_ INTEGER, name VARCHAR, population_density__per_km²_ VARCHAR, population__2006_ VARCHAR)",
"question": "Which Land area (km²) has a Population density (per km²) larger than 112.6, and a Population (2006) larger than 785, and a Name of pinehouse?"
} |
### QUESTION
Find all members of "Bootup Baltimore" whose major is "600". Show the first name and last name.
### CONTEXT
CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE student (fname VARCHAR, lname VARCHAR, stuid VARCHAR, major VARCHAR)
### ANSWER
SELECT t3.fname, t3.lname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = "Bootup Baltimore" AND t3.major = "600" | {
"answer": "SELECT t3.fname, t3.lname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = \"Bootup Baltimore\" AND t3.major = \"600\"",
"context": "CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE student (fname VARCHAR, lname VARCHAR, stuid VARCHAR, major VARCHAR)",
"question": "Find all members of \"Bootup Baltimore\" whose major is \"600\". Show the first name and last name."
} |
### QUESTION
What is the African Spoonbill when the Hadeda Ibis is the Brown Snake Eagle?
### CONTEXT
CREATE TABLE table_20042805_2 (african_spoonbill VARCHAR, hadeda_ibis VARCHAR)
### ANSWER
SELECT african_spoonbill FROM table_20042805_2 WHERE hadeda_ibis = "Brown Snake Eagle" | {
"answer": "SELECT african_spoonbill FROM table_20042805_2 WHERE hadeda_ibis = \"Brown Snake Eagle\"",
"context": "CREATE TABLE table_20042805_2 (african_spoonbill VARCHAR, hadeda_ibis VARCHAR)",
"question": "What is the African Spoonbill when the Hadeda Ibis is the Brown Snake Eagle?"
} |
### QUESTION
What is the average total with a Rank larger than 11, a Nation of switzerland, and a Silver smaller than 0?
### CONTEXT
CREATE TABLE table_name_85 (total INTEGER, silver VARCHAR, rank VARCHAR, nation VARCHAR)
### ANSWER
SELECT AVG(total) FROM table_name_85 WHERE rank > 11 AND nation = "switzerland" AND silver < 0 | {
"answer": "SELECT AVG(total) FROM table_name_85 WHERE rank > 11 AND nation = \"switzerland\" AND silver < 0",
"context": "CREATE TABLE table_name_85 (total INTEGER, silver VARCHAR, rank VARCHAR, nation VARCHAR)",
"question": "What is the average total with a Rank larger than 11, a Nation of switzerland, and a Silver smaller than 0?"
} |
### QUESTION
What is total population of Saint-Agapit (code 33045)?
### CONTEXT
CREATE TABLE table_name_99 (region INTEGER, name VARCHAR, code VARCHAR)
### ANSWER
SELECT SUM(region) FROM table_name_99 WHERE name = "saint-agapit" AND code < 33045 | {
"answer": "SELECT SUM(region) FROM table_name_99 WHERE name = \"saint-agapit\" AND code < 33045",
"context": "CREATE TABLE table_name_99 (region INTEGER, name VARCHAR, code VARCHAR)",
"question": "What is total population of Saint-Agapit (code 33045)?"
} |
### QUESTION
What is the sum of Bronze when the rank is more than 11 and gold is less than 0?
### CONTEXT
CREATE TABLE table_name_47 (bronze INTEGER, rank VARCHAR, gold VARCHAR)
### ANSWER
SELECT SUM(bronze) FROM table_name_47 WHERE rank > 11 AND gold < 0 | {
"answer": "SELECT SUM(bronze) FROM table_name_47 WHERE rank > 11 AND gold < 0",
"context": "CREATE TABLE table_name_47 (bronze INTEGER, rank VARCHAR, gold VARCHAR)",
"question": "What is the sum of Bronze when the rank is more than 11 and gold is less than 0?"
} |
### QUESTION
What's the service number of the Pune Duronto train that departures at 21:35?
### CONTEXT
CREATE TABLE table_23477312_1 (service VARCHAR, train_name VARCHAR, departure VARCHAR)
### ANSWER
SELECT service FROM table_23477312_1 WHERE train_name = "Pune Duronto" AND departure = "21:35" | {
"answer": "SELECT service FROM table_23477312_1 WHERE train_name = \"Pune Duronto\" AND departure = \"21:35\"",
"context": "CREATE TABLE table_23477312_1 (service VARCHAR, train_name VARCHAR, departure VARCHAR)",
"question": "What's the service number of the Pune Duronto train that departures at 21:35?"
} |
### QUESTION
Candiates Charles Fisher (DR) 65.1% W. Jones (F) 34.9% had what result?
### CONTEXT
CREATE TABLE table_2668336_17 (result VARCHAR, candidates VARCHAR)
### ANSWER
SELECT result FROM table_2668336_17 WHERE candidates = "Charles Fisher (DR) 65.1% W. Jones (F) 34.9%" | {
"answer": "SELECT result FROM table_2668336_17 WHERE candidates = \"Charles Fisher (DR) 65.1% W. Jones (F) 34.9%\"",
"context": "CREATE TABLE table_2668336_17 (result VARCHAR, candidates VARCHAR)",
"question": "Candiates Charles Fisher (DR) 65.1% W. Jones (F) 34.9% had what result?"
} |
### QUESTION
What is the lowest rank of Gatwick Airport?
### CONTEXT
CREATE TABLE table_18118221_1 (rank INTEGER, railway_station VARCHAR)
### ANSWER
SELECT MIN(rank) FROM table_18118221_1 WHERE railway_station = "Gatwick Airport" | {
"answer": "SELECT MIN(rank) FROM table_18118221_1 WHERE railway_station = \"Gatwick Airport\"",
"context": "CREATE TABLE table_18118221_1 (rank INTEGER, railway_station VARCHAR)",
"question": "What is the lowest rank of Gatwick Airport? "
} |
### QUESTION
What athlete has less than 7 gold and 14 total medals?
### CONTEXT
CREATE TABLE table_name_87 (athlete VARCHAR, gold VARCHAR, total VARCHAR)
### ANSWER
SELECT athlete FROM table_name_87 WHERE gold < 7 AND total = 14 | {
"answer": "SELECT athlete FROM table_name_87 WHERE gold < 7 AND total = 14",
"context": "CREATE TABLE table_name_87 (athlete VARCHAR, gold VARCHAR, total VARCHAR)",
"question": "What athlete has less than 7 gold and 14 total medals?"
} |
### QUESTION
Which Year has a Winning score of –4 (69-72-70-69=280)?
### CONTEXT
CREATE TABLE table_name_42 (year INTEGER, winning_score VARCHAR)
### ANSWER
SELECT MIN(year) FROM table_name_42 WHERE winning_score = –4(69 - 72 - 70 - 69 = 280) | {
"answer": "SELECT MIN(year) FROM table_name_42 WHERE winning_score = –4(69 - 72 - 70 - 69 = 280)",
"context": "CREATE TABLE table_name_42 (year INTEGER, winning_score VARCHAR)",
"question": "Which Year has a Winning score of –4 (69-72-70-69=280)?"
} |
### QUESTION
Which Label-Nr has a Year smaller than 1968, and a Label of world pacific, and an album of chile con soul?
### CONTEXT
CREATE TABLE table_name_78 (label VARCHAR, Nr VARCHAR, from_album VARCHAR, year VARCHAR)
### ANSWER
SELECT label - Nr FROM table_name_78 WHERE year < 1968 AND label = "world pacific" AND from_album = "chile con soul" | {
"answer": "SELECT label - Nr FROM table_name_78 WHERE year < 1968 AND label = \"world pacific\" AND from_album = \"chile con soul\"",
"context": "CREATE TABLE table_name_78 (label VARCHAR, Nr VARCHAR, from_album VARCHAR, year VARCHAR)",
"question": "Which Label-Nr has a Year smaller than 1968, and a Label of world pacific, and an album of chile con soul?"
} |
### QUESTION
For which network was Chris Walby the color commentator after 1990?
### CONTEXT
CREATE TABLE table_name_83 (network VARCHAR, year VARCHAR, colour_commentator_s_ VARCHAR)
### ANSWER
SELECT network FROM table_name_83 WHERE year > 1990 AND colour_commentator_s_ = "chris walby" | {
"answer": "SELECT network FROM table_name_83 WHERE year > 1990 AND colour_commentator_s_ = \"chris walby\"",
"context": "CREATE TABLE table_name_83 (network VARCHAR, year VARCHAR, colour_commentator_s_ VARCHAR)",
"question": "For which network was Chris Walby the color commentator after 1990?"
} |
### QUESTION
What percentage of the population is below 50% of the median income in the region where 10.4% of the population earns below 40% of the median income?
### CONTEXT
CREATE TABLE table_25042332_16 (below_50_percentage_of_median_income VARCHAR, below_40_percentage_of_median_income VARCHAR)
### ANSWER
SELECT COUNT(below_50_percentage_of_median_income) FROM table_25042332_16 WHERE below_40_percentage_of_median_income = "10.4%" | {
"answer": "SELECT COUNT(below_50_percentage_of_median_income) FROM table_25042332_16 WHERE below_40_percentage_of_median_income = \"10.4%\"",
"context": "CREATE TABLE table_25042332_16 (below_50_percentage_of_median_income VARCHAR, below_40_percentage_of_median_income VARCHAR)",
"question": "What percentage of the population is below 50% of the median income in the region where 10.4% of the population earns below 40% of the median income?"
} |
### QUESTION
When roxanne and daniel are the couple what is the highest rank?
### CONTEXT
CREATE TABLE table_19744915_18 (rank INTEGER, couple VARCHAR)
### ANSWER
SELECT MAX(rank) FROM table_19744915_18 WHERE couple = "Roxanne and Daniel" | {
"answer": "SELECT MAX(rank) FROM table_19744915_18 WHERE couple = \"Roxanne and Daniel\"",
"context": "CREATE TABLE table_19744915_18 (rank INTEGER, couple VARCHAR)",
"question": "When roxanne and daniel are the couple what is the highest rank?"
} |
### QUESTION
What is the total number of unique official languages spoken in the countries that are founded before 1930?
### CONTEXT
CREATE TABLE country (Code VARCHAR); CREATE TABLE countrylanguage (Language VARCHAR, CountryCode VARCHAR, IsOfficial VARCHAR)
### ANSWER
SELECT COUNT(DISTINCT T2.Language) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE IndepYear < 1930 AND T2.IsOfficial = "T" | {
"answer": "SELECT COUNT(DISTINCT T2.Language) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE IndepYear < 1930 AND T2.IsOfficial = \"T\"",
"context": "CREATE TABLE country (Code VARCHAR); CREATE TABLE countrylanguage (Language VARCHAR, CountryCode VARCHAR, IsOfficial VARCHAR)",
"question": "What is the total number of unique official languages spoken in the countries that are founded before 1930?"
} |
### QUESTION
Find courses that ran in Fall 2009 and in Spring 2010.
### CONTEXT
CREATE TABLE SECTION (course_id VARCHAR, semester VARCHAR, YEAR VARCHAR)
### ANSWER
SELECT course_id FROM SECTION WHERE semester = 'Fall' AND YEAR = 2009 INTERSECT SELECT course_id FROM SECTION WHERE semester = 'Spring' AND YEAR = 2010 | {
"answer": "SELECT course_id FROM SECTION WHERE semester = 'Fall' AND YEAR = 2009 INTERSECT SELECT course_id FROM SECTION WHERE semester = 'Spring' AND YEAR = 2010",
"context": "CREATE TABLE SECTION (course_id VARCHAR, semester VARCHAR, YEAR VARCHAR)",
"question": "Find courses that ran in Fall 2009 and in Spring 2010."
} |
### QUESTION
Find names of the document without any images.
### CONTEXT
CREATE TABLE document_sections_images (section_id VARCHAR); CREATE TABLE documents (document_name VARCHAR); CREATE TABLE documents (document_name VARCHAR, document_code VARCHAR); CREATE TABLE document_sections (document_code VARCHAR, section_id VARCHAR)
### ANSWER
SELECT document_name FROM documents EXCEPT SELECT t1.document_name FROM documents AS t1 JOIN document_sections AS t2 ON t1.document_code = t2.document_code JOIN document_sections_images AS t3 ON t2.section_id = t3.section_id | {
"answer": "SELECT document_name FROM documents EXCEPT SELECT t1.document_name FROM documents AS t1 JOIN document_sections AS t2 ON t1.document_code = t2.document_code JOIN document_sections_images AS t3 ON t2.section_id = t3.section_id",
"context": "CREATE TABLE document_sections_images (section_id VARCHAR); CREATE TABLE documents (document_name VARCHAR); CREATE TABLE documents (document_name VARCHAR, document_code VARCHAR); CREATE TABLE document_sections (document_code VARCHAR, section_id VARCHAR)",
"question": "Find names of the document without any images."
} |
### QUESTION
What is the segment A on episode 237?
### CONTEXT
CREATE TABLE table_15187735_19 (segment_a VARCHAR, episode VARCHAR)
### ANSWER
SELECT segment_a FROM table_15187735_19 WHERE episode = 237 | {
"answer": "SELECT segment_a FROM table_15187735_19 WHERE episode = 237",
"context": "CREATE TABLE table_15187735_19 (segment_a VARCHAR, episode VARCHAR)",
"question": "What is the segment A on episode 237?"
} |
### QUESTION
What is the highest Bronze with the Event 1972 Heidelberg and Total less than 5?
### CONTEXT
CREATE TABLE table_name_27 (bronze INTEGER, event VARCHAR, total VARCHAR)
### ANSWER
SELECT MAX(bronze) FROM table_name_27 WHERE event = "1972 heidelberg" AND total < 5 | {
"answer": "SELECT MAX(bronze) FROM table_name_27 WHERE event = \"1972 heidelberg\" AND total < 5",
"context": "CREATE TABLE table_name_27 (bronze INTEGER, event VARCHAR, total VARCHAR)",
"question": "What is the highest Bronze with the Event 1972 Heidelberg and Total less than 5?"
} |
### QUESTION
A competition of test taking place on 23 Apr 1988 had what as a score?
### CONTEXT
CREATE TABLE table_name_51 (score VARCHAR, competition VARCHAR, date VARCHAR)
### ANSWER
SELECT score FROM table_name_51 WHERE competition = "test" AND date = "23 apr 1988" | {
"answer": "SELECT score FROM table_name_51 WHERE competition = \"test\" AND date = \"23 apr 1988\"",
"context": "CREATE TABLE table_name_51 (score VARCHAR, competition VARCHAR, date VARCHAR)",
"question": "A competition of test taking place on 23 Apr 1988 had what as a score?"
} |
### QUESTION
What Lap-by-lap has Chris Myers as the Pre-Race Host, a Year larger than 2008, and 9.9/22 as its Ratings?
### CONTEXT
CREATE TABLE table_name_48 (lap_by_lap VARCHAR, ratings VARCHAR, year VARCHAR, pre_race_host VARCHAR)
### ANSWER
SELECT lap_by_lap FROM table_name_48 WHERE year > 2008 AND pre_race_host = "chris myers" AND ratings = "9.9/22" | {
"answer": "SELECT lap_by_lap FROM table_name_48 WHERE year > 2008 AND pre_race_host = \"chris myers\" AND ratings = \"9.9/22\"",
"context": "CREATE TABLE table_name_48 (lap_by_lap VARCHAR, ratings VARCHAR, year VARCHAR, pre_race_host VARCHAR)",
"question": "What Lap-by-lap has Chris Myers as the Pre-Race Host, a Year larger than 2008, and 9.9/22 as its Ratings?"
} |
### QUESTION
Who were the champions in years where michigan technological university was in third place?
### CONTEXT
CREATE TABLE table_2331549_1 (champion VARCHAR, third_place VARCHAR)
### ANSWER
SELECT champion FROM table_2331549_1 WHERE third_place = "Michigan Technological University" | {
"answer": "SELECT champion FROM table_2331549_1 WHERE third_place = \"Michigan Technological University\"",
"context": "CREATE TABLE table_2331549_1 (champion VARCHAR, third_place VARCHAR)",
"question": "Who were the champions in years where michigan technological university was in third place?"
} |
### QUESTION
What is the main span feet from opening year of 1936 in the United States with a rank greater than 47 and 421 main span metres?
### CONTEXT
CREATE TABLE table_name_43 (main_span_feet VARCHAR, main_span_metres VARCHAR, rank VARCHAR, year_opened VARCHAR, country VARCHAR)
### ANSWER
SELECT main_span_feet FROM table_name_43 WHERE year_opened = 1936 AND country = "united states" AND rank > 47 AND main_span_metres = "421" | {
"answer": "SELECT main_span_feet FROM table_name_43 WHERE year_opened = 1936 AND country = \"united states\" AND rank > 47 AND main_span_metres = \"421\"",
"context": "CREATE TABLE table_name_43 (main_span_feet VARCHAR, main_span_metres VARCHAR, rank VARCHAR, year_opened VARCHAR, country VARCHAR)",
"question": "What is the main span feet from opening year of 1936 in the United States with a rank greater than 47 and 421 main span metres?"
} |
### QUESTION
Name the number of candidates for # of seats won being 43
### CONTEXT
CREATE TABLE table_19283982_4 (_number_of_candidates VARCHAR, _number_of_seats_won VARCHAR)
### ANSWER
SELECT _number_of_candidates FROM table_19283982_4 WHERE _number_of_seats_won = 43 | {
"answer": "SELECT _number_of_candidates FROM table_19283982_4 WHERE _number_of_seats_won = 43",
"context": "CREATE TABLE table_19283982_4 (_number_of_candidates VARCHAR, _number_of_seats_won VARCHAR)",
"question": "Name the number of candidates for # of seats won being 43"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.