question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What torque does a 1905 cc capacity have? | CREATE TABLE table_name_63 (torque VARCHAR, capacity VARCHAR) | SELECT torque FROM table_name_63 WHERE capacity = "1905 cc" | ### Context: CREATE TABLE table_name_63 (torque VARCHAR, capacity VARCHAR) ### Question: What torque does a 1905 cc capacity have? ### Answer: SELECT torque FROM table_name_63 WHERE capacity = "1905 cc" |
What torque does 1.9 diesel with 1905 cc have? | CREATE TABLE table_name_30 (torque VARCHAR, name VARCHAR, capacity VARCHAR) | SELECT torque FROM table_name_30 WHERE name = "1.9 diesel" AND capacity = "1905 cc" | ### Context: CREATE TABLE table_name_30 (torque VARCHAR, name VARCHAR, capacity VARCHAR) ### Question: What torque does 1.9 diesel with 1905 cc have? ### Answer: SELECT torque FROM table_name_30 WHERE name = "1.9 diesel" AND capacity = "1905 cc" |
What torque does daewoo have? | CREATE TABLE table_name_18 (torque VARCHAR, type VARCHAR) | SELECT torque FROM table_name_18 WHERE type = "daewoo" | ### Context: CREATE TABLE table_name_18 (torque VARCHAR, type VARCHAR) ### Question: What torque does daewoo have? ### Answer: SELECT torque FROM table_name_18 WHERE type = "daewoo" |
Score of 3–4, and a Attendance larger than 34,609 happened on what date? | CREATE TABLE table_name_39 (date VARCHAR, score VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_39 WHERE score = "3–4" AND attendance > 34 OFFSET 609 | ### Context: CREATE TABLE table_name_39 (date VARCHAR, score VARCHAR, attendance VARCHAR) ### Question: Score of 3–4, and a Attendance larger than 34,609 happened on what date? ### Answer: SELECT date FROM table_name_39 WHERE score = "3–4" AND attendance > 34 OFFSET 609 |
Record of 12–15 happened on what date? | CREATE TABLE table_name_85 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_85 WHERE record = "12–15" | ### Context: CREATE TABLE table_name_85 (date VARCHAR, record VARCHAR) ### Question: Record of 12–15 happened on what date? ### Answer: SELECT date FROM table_name_85 WHERE record = "12–15" |
Date of april 9 had what score? | CREATE TABLE table_name_11 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_11 WHERE date = "april 9" | ### Context: CREATE TABLE table_name_11 (score VARCHAR, date VARCHAR) ### Question: Date of april 9 had what score? ### Answer: SELECT score FROM table_name_11 WHERE date = "april 9" |
Record of 11–12 involved what average attendance figures? | CREATE TABLE table_name_10 (attendance INTEGER, record VARCHAR) | SELECT AVG(attendance) FROM table_name_10 WHERE record = "11–12" | ### Context: CREATE TABLE table_name_10 (attendance INTEGER, record VARCHAR) ### Question: Record of 11–12 involved what average attendance figures? ### Answer: SELECT AVG(attendance) FROM table_name_10 WHERE record = "11–12" |
What predecessor has a district less than 11, 68th as the Congress, and may 1, 1923 as the date? | CREATE TABLE table_name_54 (predecessor VARCHAR, date VARCHAR, district VARCHAR, congress VARCHAR) | SELECT predecessor FROM table_name_54 WHERE district < 11 AND congress = "68th" AND date = "may 1, 1923" | ### Context: CREATE TABLE table_name_54 (predecessor VARCHAR, date VARCHAR, district VARCHAR, congress VARCHAR) ### Question: What predecessor has a district less than 11, 68th as the Congress, and may 1, 1923 as the date? ### Answer: SELECT predecessor FROM table_name_54 WHERE district < 11 AND congress = "68th" AND date = "may 1, 1923" |
What Hyper Transport version has 22.4 gb/s of Max. Aggregate bandwidth? | CREATE TABLE table_name_51 (hypertransport_version VARCHAR, max_aggregate_bandwidth__bi_directional_ VARCHAR) | SELECT hypertransport_version FROM table_name_51 WHERE max_aggregate_bandwidth__bi_directional_ = "22.4 gb/s" | ### Context: CREATE TABLE table_name_51 (hypertransport_version VARCHAR, max_aggregate_bandwidth__bi_directional_ VARCHAR) ### Question: What Hyper Transport version has 22.4 gb/s of Max. Aggregate bandwidth? ### Answer: SELECT hypertransport_version FROM table_name_51 WHERE max_aggregate_bandwidth__bi_directional_ = "22.4 gb/s" |
What is the Max Aggregate bandwidth with a HyperTransport of 2? | CREATE TABLE table_name_17 (max_aggregate_bandwidth__bi_directional_ VARCHAR, hypertransport_version VARCHAR) | SELECT max_aggregate_bandwidth__bi_directional_ FROM table_name_17 WHERE hypertransport_version = 2 | ### Context: CREATE TABLE table_name_17 (max_aggregate_bandwidth__bi_directional_ VARCHAR, hypertransport_version VARCHAR) ### Question: What is the Max Aggregate bandwidth with a HyperTransport of 2? ### Answer: SELECT max_aggregate_bandwidth__bi_directional_ FROM table_name_17 WHERE hypertransport_version = 2 |
Who was the opposing team during the game in Zagreb? | CREATE TABLE table_name_80 (opponent VARCHAR, city VARCHAR) | SELECT opponent FROM table_name_80 WHERE city = "zagreb" | ### Context: CREATE TABLE table_name_80 (opponent VARCHAR, city VARCHAR) ### Question: Who was the opposing team during the game in Zagreb? ### Answer: SELECT opponent FROM table_name_80 WHERE city = "zagreb" |
The record of 35-31 has what score? | CREATE TABLE table_name_52 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_52 WHERE record = "35-31" | ### Context: CREATE TABLE table_name_52 (score VARCHAR, record VARCHAR) ### Question: The record of 35-31 has what score? ### Answer: SELECT score FROM table_name_52 WHERE record = "35-31" |
Which Manufacturer has 1 lap and had an accident? | CREATE TABLE table_name_69 (manufacturer VARCHAR, laps VARCHAR, time_retired VARCHAR) | SELECT manufacturer FROM table_name_69 WHERE laps = 1 AND time_retired = "accident" | ### Context: CREATE TABLE table_name_69 (manufacturer VARCHAR, laps VARCHAR, time_retired VARCHAR) ### Question: Which Manufacturer has 1 lap and had an accident? ### Answer: SELECT manufacturer FROM table_name_69 WHERE laps = 1 AND time_retired = "accident" |
Which rider has a Manufacturer of honda with a time of +44.814? | CREATE TABLE table_name_23 (rider VARCHAR, manufacturer VARCHAR, time_retired VARCHAR) | SELECT rider FROM table_name_23 WHERE manufacturer = "honda" AND time_retired = "+44.814" | ### Context: CREATE TABLE table_name_23 (rider VARCHAR, manufacturer VARCHAR, time_retired VARCHAR) ### Question: Which rider has a Manufacturer of honda with a time of +44.814? ### Answer: SELECT rider FROM table_name_23 WHERE manufacturer = "honda" AND time_retired = "+44.814" |
How many grids have a time of +1:21.239 and more than 25 laps? | CREATE TABLE table_name_39 (grid VARCHAR, time_retired VARCHAR, laps VARCHAR) | SELECT COUNT(grid) FROM table_name_39 WHERE time_retired = "+1:21.239" AND laps > 25 | ### Context: CREATE TABLE table_name_39 (grid VARCHAR, time_retired VARCHAR, laps VARCHAR) ### Question: How many grids have a time of +1:21.239 and more than 25 laps? ### Answer: SELECT COUNT(grid) FROM table_name_39 WHERE time_retired = "+1:21.239" AND laps > 25 |
What is the average episode number on 19 March 1993 with Jim Sweeney as performer 1? | CREATE TABLE table_name_29 (episode INTEGER, performer_1 VARCHAR, date VARCHAR) | SELECT AVG(episode) FROM table_name_29 WHERE performer_1 = "jim sweeney" AND date = "19 march 1993" | ### Context: CREATE TABLE table_name_29 (episode INTEGER, performer_1 VARCHAR, date VARCHAR) ### Question: What is the average episode number on 19 March 1993 with Jim Sweeney as performer 1? ### Answer: SELECT AVG(episode) FROM table_name_29 WHERE performer_1 = "jim sweeney" AND date = "19 march 1993" |
Who is performer 2 of the episode on 9 April 1993 with Josie Lawrence as performer 4? | CREATE TABLE table_name_83 (performer_2 VARCHAR, performer_4 VARCHAR, date VARCHAR) | SELECT performer_2 FROM table_name_83 WHERE performer_4 = "josie lawrence" AND date = "9 april 1993" | ### Context: CREATE TABLE table_name_83 (performer_2 VARCHAR, performer_4 VARCHAR, date VARCHAR) ### Question: Who is performer 2 of the episode on 9 April 1993 with Josie Lawrence as performer 4? ### Answer: SELECT performer_2 FROM table_name_83 WHERE performer_4 = "josie lawrence" AND date = "9 april 1993" |
What is the date of the episode with Ryan Stiles as performer 2, Colin Mochrie as performer 3, and Tony Slattery as performer 4? | CREATE TABLE table_name_26 (date VARCHAR, performer_4 VARCHAR, performer_2 VARCHAR, performer_3 VARCHAR) | SELECT date FROM table_name_26 WHERE performer_2 = "ryan stiles" AND performer_3 = "colin mochrie" AND performer_4 = "tony slattery" | ### Context: CREATE TABLE table_name_26 (date VARCHAR, performer_4 VARCHAR, performer_2 VARCHAR, performer_3 VARCHAR) ### Question: What is the date of the episode with Ryan Stiles as performer 2, Colin Mochrie as performer 3, and Tony Slattery as performer 4? ### Answer: SELECT date FROM table_name_26 WHERE performer_2 = "ryan stiles" AND performer_3 = "colin mochrie" AND performer_4 = "tony slattery" |
Who is performer 4 on episode 3, where Jim Sweeney was performer 1? | CREATE TABLE table_name_86 (performer_4 VARCHAR, performer_1 VARCHAR, episode VARCHAR) | SELECT performer_4 FROM table_name_86 WHERE performer_1 = "jim sweeney" AND episode = 3 | ### Context: CREATE TABLE table_name_86 (performer_4 VARCHAR, performer_1 VARCHAR, episode VARCHAR) ### Question: Who is performer 4 on episode 3, where Jim Sweeney was performer 1? ### Answer: SELECT performer_4 FROM table_name_86 WHERE performer_1 = "jim sweeney" AND episode = 3 |
What is the episode number where Jim Sweeney was performer 1 and Mike Mcshane was performer 4? | CREATE TABLE table_name_25 (episode INTEGER, performer_1 VARCHAR, performer_4 VARCHAR) | SELECT SUM(episode) FROM table_name_25 WHERE performer_1 = "jim sweeney" AND performer_4 = "mike mcshane" | ### Context: CREATE TABLE table_name_25 (episode INTEGER, performer_1 VARCHAR, performer_4 VARCHAR) ### Question: What is the episode number where Jim Sweeney was performer 1 and Mike Mcshane was performer 4? ### Answer: SELECT SUM(episode) FROM table_name_25 WHERE performer_1 = "jim sweeney" AND performer_4 = "mike mcshane" |
Which Wrestler has an Entered of 5, and a Pinned of mvp? | CREATE TABLE table_name_23 (wrestler VARCHAR, entered VARCHAR, pinned VARCHAR) | SELECT wrestler FROM table_name_23 WHERE entered = 5 AND pinned = "mvp" | ### Context: CREATE TABLE table_name_23 (wrestler VARCHAR, entered VARCHAR, pinned VARCHAR) ### Question: Which Wrestler has an Entered of 5, and a Pinned of mvp? ### Answer: SELECT wrestler FROM table_name_23 WHERE entered = 5 AND pinned = "mvp" |
What route with the line color brown has the lowest number of stations served? | CREATE TABLE table_name_39 (stations_served INTEGER, line_color VARCHAR) | SELECT MIN(stations_served) FROM table_name_39 WHERE line_color = "brown" | ### Context: CREATE TABLE table_name_39 (stations_served INTEGER, line_color VARCHAR) ### Question: What route with the line color brown has the lowest number of stations served? ### Answer: SELECT MIN(stations_served) FROM table_name_39 WHERE line_color = "brown" |
Which Round is the highest one that has a College/Junior/Club Team (League) of torpedo yaroslavl (rus)? | CREATE TABLE table_name_10 (round INTEGER, college_junior_club_team__league_ VARCHAR) | SELECT MAX(round) FROM table_name_10 WHERE college_junior_club_team__league_ = "torpedo yaroslavl (rus)" | ### Context: CREATE TABLE table_name_10 (round INTEGER, college_junior_club_team__league_ VARCHAR) ### Question: Which Round is the highest one that has a College/Junior/Club Team (League) of torpedo yaroslavl (rus)? ### Answer: SELECT MAX(round) FROM table_name_10 WHERE college_junior_club_team__league_ = "torpedo yaroslavl (rus)" |
Which Round has a Player of todd fedoruk? | CREATE TABLE table_name_28 (round INTEGER, player VARCHAR) | SELECT SUM(round) FROM table_name_28 WHERE player = "todd fedoruk" | ### Context: CREATE TABLE table_name_28 (round INTEGER, player VARCHAR) ### Question: Which Round has a Player of todd fedoruk? ### Answer: SELECT SUM(round) FROM table_name_28 WHERE player = "todd fedoruk" |
How much Grid has a Time/Retired of +1 lap, and a Driver of sébastien bourdais, and Laps larger than 70? | CREATE TABLE table_name_89 (grid VARCHAR, laps VARCHAR, time_retired VARCHAR, driver VARCHAR) | SELECT COUNT(grid) FROM table_name_89 WHERE time_retired = "+1 lap" AND driver = "sébastien bourdais" AND laps > 70 | ### Context: CREATE TABLE table_name_89 (grid VARCHAR, laps VARCHAR, time_retired VARCHAR, driver VARCHAR) ### Question: How much Grid has a Time/Retired of +1 lap, and a Driver of sébastien bourdais, and Laps larger than 70? ### Answer: SELECT COUNT(grid) FROM table_name_89 WHERE time_retired = "+1 lap" AND driver = "sébastien bourdais" AND laps > 70 |
How many Laps have a Driver of david coulthard, and a Grid smaller than 14? | CREATE TABLE table_name_70 (laps INTEGER, driver VARCHAR, grid VARCHAR) | SELECT SUM(laps) FROM table_name_70 WHERE driver = "david coulthard" AND grid < 14 | ### Context: CREATE TABLE table_name_70 (laps INTEGER, driver VARCHAR, grid VARCHAR) ### Question: How many Laps have a Driver of david coulthard, and a Grid smaller than 14? ### Answer: SELECT SUM(laps) FROM table_name_70 WHERE driver = "david coulthard" AND grid < 14 |
How many Laps have a Grid of 15? | CREATE TABLE table_name_52 (laps VARCHAR, grid VARCHAR) | SELECT COUNT(laps) FROM table_name_52 WHERE grid = 15 | ### Context: CREATE TABLE table_name_52 (laps VARCHAR, grid VARCHAR) ### Question: How many Laps have a Grid of 15? ### Answer: SELECT COUNT(laps) FROM table_name_52 WHERE grid = 15 |
Which Catalogno was #160 us? | CREATE TABLE table_name_31 (catalogno VARCHAR, remark VARCHAR) | SELECT catalogno FROM table_name_31 WHERE remark = "#160 us" | ### Context: CREATE TABLE table_name_31 (catalogno VARCHAR, remark VARCHAR) ### Question: Which Catalogno was #160 us? ### Answer: SELECT catalogno FROM table_name_31 WHERE remark = "#160 us" |
What title was released in 1971? | CREATE TABLE table_name_54 (title VARCHAR, year VARCHAR) | SELECT title FROM table_name_54 WHERE year = 1971 | ### Context: CREATE TABLE table_name_54 (title VARCHAR, year VARCHAR) ### Question: What title was released in 1971? ### Answer: SELECT title FROM table_name_54 WHERE year = 1971 |
Whati s the format for the catalogno of st 491? | CREATE TABLE table_name_26 (format VARCHAR, catalogno VARCHAR) | SELECT format FROM table_name_26 WHERE catalogno = "st 491" | ### Context: CREATE TABLE table_name_26 (format VARCHAR, catalogno VARCHAR) ### Question: Whati s the format for the catalogno of st 491? ### Answer: SELECT format FROM table_name_26 WHERE catalogno = "st 491" |
What year was remark #104 us? | CREATE TABLE table_name_58 (year VARCHAR, remark VARCHAR) | SELECT year FROM table_name_58 WHERE remark = "#104 us" | ### Context: CREATE TABLE table_name_58 (year VARCHAR, remark VARCHAR) ### Question: What year was remark #104 us? ### Answer: SELECT year FROM table_name_58 WHERE remark = "#104 us" |
What title had a remark of #21 us [riaa certified gold january 3, 1990]? | CREATE TABLE table_name_61 (title VARCHAR, remark VARCHAR) | SELECT title FROM table_name_61 WHERE remark = "#21 us [riaa certified gold january 3, 1990]" | ### Context: CREATE TABLE table_name_61 (title VARCHAR, remark VARCHAR) ### Question: What title had a remark of #21 us [riaa certified gold january 3, 1990]? ### Answer: SELECT title FROM table_name_61 WHERE remark = "#21 us [riaa certified gold january 3, 1990]" |
What catalogno was in 1971 and had a remark of #27 us? | CREATE TABLE table_name_31 (catalogno VARCHAR, year VARCHAR, remark VARCHAR) | SELECT catalogno FROM table_name_31 WHERE year = 1971 AND remark = "#27 us" | ### Context: CREATE TABLE table_name_31 (catalogno VARCHAR, year VARCHAR, remark VARCHAR) ### Question: What catalogno was in 1971 and had a remark of #27 us? ### Answer: SELECT catalogno FROM table_name_31 WHERE year = 1971 AND remark = "#27 us" |
what AAAAA class has the school year of 1990-91? | CREATE TABLE table_name_56 (class_aAAAA VARCHAR, school_year VARCHAR) | SELECT class_aAAAA FROM table_name_56 WHERE school_year = "1990-91" | ### Context: CREATE TABLE table_name_56 (class_aAAAA VARCHAR, school_year VARCHAR) ### Question: what AAAAA class has the school year of 1990-91? ### Answer: SELECT class_aAAAA FROM table_name_56 WHERE school_year = "1990-91" |
what AAA class has a school year of 1989-90? | CREATE TABLE table_name_50 (class_aAA VARCHAR, school_year VARCHAR) | SELECT class_aAA FROM table_name_50 WHERE school_year = "1989-90" | ### Context: CREATE TABLE table_name_50 (class_aAA VARCHAR, school_year VARCHAR) ### Question: what AAA class has a school year of 1989-90? ### Answer: SELECT class_aAA FROM table_name_50 WHERE school_year = "1989-90" |
what AA class has a AAA class of commerce? | CREATE TABLE table_name_46 (class_aA VARCHAR, class_aAA VARCHAR, commerce VARCHAR) | SELECT class_aA FROM table_name_46 WHERE class_aAA = commerce | ### Context: CREATE TABLE table_name_46 (class_aA VARCHAR, class_aAA VARCHAR, commerce VARCHAR) ### Question: what AA class has a AAA class of commerce? ### Answer: SELECT class_aA FROM table_name_46 WHERE class_aAA = commerce |
What is the average week for the game against baltimore colts with less than 41,062 in attendance? | CREATE TABLE table_name_12 (week INTEGER, opponent VARCHAR, attendance VARCHAR) | SELECT AVG(week) FROM table_name_12 WHERE opponent = "baltimore colts" AND attendance < 41 OFFSET 062 | ### Context: CREATE TABLE table_name_12 (week INTEGER, opponent VARCHAR, attendance VARCHAR) ### Question: What is the average week for the game against baltimore colts with less than 41,062 in attendance? ### Answer: SELECT AVG(week) FROM table_name_12 WHERE opponent = "baltimore colts" AND attendance < 41 OFFSET 062 |
What was the average week for the gaime against the philadelphia eagles with less than 31,066 in attendance? | CREATE TABLE table_name_14 (week INTEGER, opponent VARCHAR, attendance VARCHAR) | SELECT AVG(week) FROM table_name_14 WHERE opponent = "philadelphia eagles" AND attendance < 31 OFFSET 066 | ### Context: CREATE TABLE table_name_14 (week INTEGER, opponent VARCHAR, attendance VARCHAR) ### Question: What was the average week for the gaime against the philadelphia eagles with less than 31,066 in attendance? ### Answer: SELECT AVG(week) FROM table_name_14 WHERE opponent = "philadelphia eagles" AND attendance < 31 OFFSET 066 |
What is the highest attendance for the game after week 1 on November 12, 1961? | CREATE TABLE table_name_27 (attendance INTEGER, week VARCHAR, date VARCHAR) | SELECT MAX(attendance) FROM table_name_27 WHERE week > 1 AND date = "november 12, 1961" | ### Context: CREATE TABLE table_name_27 (attendance INTEGER, week VARCHAR, date VARCHAR) ### Question: What is the highest attendance for the game after week 1 on November 12, 1961? ### Answer: SELECT MAX(attendance) FROM table_name_27 WHERE week > 1 AND date = "november 12, 1961" |
What was the result of the game on week 4? | CREATE TABLE table_name_37 (result VARCHAR, week VARCHAR) | SELECT result FROM table_name_37 WHERE week = 4 | ### Context: CREATE TABLE table_name_37 (result VARCHAR, week VARCHAR) ### Question: What was the result of the game on week 4? ### Answer: SELECT result FROM table_name_37 WHERE week = 4 |
What is the lowest Round of joe patterson? | CREATE TABLE table_name_79 (round INTEGER, player VARCHAR) | SELECT MIN(round) FROM table_name_79 WHERE player = "joe patterson" | ### Context: CREATE TABLE table_name_79 (round INTEGER, player VARCHAR) ### Question: What is the lowest Round of joe patterson? ### Answer: SELECT MIN(round) FROM table_name_79 WHERE player = "joe patterson" |
Which School/Club Team has a Round larger than 16? | CREATE TABLE table_name_16 (school_club_team VARCHAR, round INTEGER) | SELECT school_club_team FROM table_name_16 WHERE round > 16 | ### Context: CREATE TABLE table_name_16 (school_club_team VARCHAR, round INTEGER) ### Question: Which School/Club Team has a Round larger than 16? ### Answer: SELECT school_club_team FROM table_name_16 WHERE round > 16 |
What is listed as the highest Points that's got a Position that's smaller than 1? | CREATE TABLE table_name_64 (points INTEGER, position INTEGER) | SELECT MAX(points) FROM table_name_64 WHERE position < 1 | ### Context: CREATE TABLE table_name_64 (points INTEGER, position INTEGER) ### Question: What is listed as the highest Points that's got a Position that's smaller than 1? ### Answer: SELECT MAX(points) FROM table_name_64 WHERE position < 1 |
What is the Draws average that has a Played that's smaller than 18? | CREATE TABLE table_name_46 (draws INTEGER, played INTEGER) | SELECT AVG(draws) FROM table_name_46 WHERE played < 18 | ### Context: CREATE TABLE table_name_46 (draws INTEGER, played INTEGER) ### Question: What is the Draws average that has a Played that's smaller than 18? ### Answer: SELECT AVG(draws) FROM table_name_46 WHERE played < 18 |
What is the lowest Wins that has the Team of Olimpia and Draws that's smaller than 4? | CREATE TABLE table_name_21 (wins INTEGER, team VARCHAR, draws VARCHAR) | SELECT MIN(wins) FROM table_name_21 WHERE team = "olimpia" AND draws < 4 | ### Context: CREATE TABLE table_name_21 (wins INTEGER, team VARCHAR, draws VARCHAR) ### Question: What is the lowest Wins that has the Team of Olimpia and Draws that's smaller than 4? ### Answer: SELECT MIN(wins) FROM table_name_21 WHERE team = "olimpia" AND draws < 4 |
What is the highest Played that's for the Team of Cerro Porteño, with a Position that's larger than 1? | CREATE TABLE table_name_59 (played INTEGER, team VARCHAR, position VARCHAR) | SELECT MAX(played) FROM table_name_59 WHERE team = "cerro porteño" AND position > 1 | ### Context: CREATE TABLE table_name_59 (played INTEGER, team VARCHAR, position VARCHAR) ### Question: What is the highest Played that's for the Team of Cerro Porteño, with a Position that's larger than 1? ### Answer: SELECT MAX(played) FROM table_name_59 WHERE team = "cerro porteño" AND position > 1 |
Which tournament included an opponent of Marinko Matosevic? | CREATE TABLE table_name_74 (tournament VARCHAR, opponent VARCHAR) | SELECT tournament FROM table_name_74 WHERE opponent = "marinko matosevic" | ### Context: CREATE TABLE table_name_74 (tournament VARCHAR, opponent VARCHAR) ### Question: Which tournament included an opponent of Marinko Matosevic? ### Answer: SELECT tournament FROM table_name_74 WHERE opponent = "marinko matosevic" |
Who was the opponent when the score was 6-3, 6-3? | CREATE TABLE table_name_89 (opponent VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_89 WHERE score = "6-3, 6-3" | ### Context: CREATE TABLE table_name_89 (opponent VARCHAR, score VARCHAR) ### Question: Who was the opponent when the score was 6-3, 6-3? ### Answer: SELECT opponent FROM table_name_89 WHERE score = "6-3, 6-3" |
Can you tell me the Record that has the Home of ny islanders? | CREATE TABLE table_name_26 (record VARCHAR, home VARCHAR) | SELECT record FROM table_name_26 WHERE home = "ny islanders" | ### Context: CREATE TABLE table_name_26 (record VARCHAR, home VARCHAR) ### Question: Can you tell me the Record that has the Home of ny islanders? ### Answer: SELECT record FROM table_name_26 WHERE home = "ny islanders" |
Can you tell me the Record that has the Date of december 15? | CREATE TABLE table_name_42 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_42 WHERE date = "december 15" | ### Context: CREATE TABLE table_name_42 (record VARCHAR, date VARCHAR) ### Question: Can you tell me the Record that has the Date of december 15? ### Answer: SELECT record FROM table_name_42 WHERE date = "december 15" |
Can you tell me the Record that has the Home of detroit, and the Visitor of phoenix? | CREATE TABLE table_name_59 (record VARCHAR, home VARCHAR, visitor VARCHAR) | SELECT record FROM table_name_59 WHERE home = "detroit" AND visitor = "phoenix" | ### Context: CREATE TABLE table_name_59 (record VARCHAR, home VARCHAR, visitor VARCHAR) ### Question: Can you tell me the Record that has the Home of detroit, and the Visitor of phoenix? ### Answer: SELECT record FROM table_name_59 WHERE home = "detroit" AND visitor = "phoenix" |
Can you tell me the Date that has the Visitor of florida? | CREATE TABLE table_name_84 (date VARCHAR, visitor VARCHAR) | SELECT date FROM table_name_84 WHERE visitor = "florida" | ### Context: CREATE TABLE table_name_84 (date VARCHAR, visitor VARCHAR) ### Question: Can you tell me the Date that has the Visitor of florida? ### Answer: SELECT date FROM table_name_84 WHERE visitor = "florida" |
Which position had f/laps that was test driver? | CREATE TABLE table_name_39 (position VARCHAR, f_laps VARCHAR) | SELECT position FROM table_name_39 WHERE f_laps = "test driver" | ### Context: CREATE TABLE table_name_39 (position VARCHAR, f_laps VARCHAR) ### Question: Which position had f/laps that was test driver? ### Answer: SELECT position FROM table_name_39 WHERE f_laps = "test driver" |
Which poles were there for the 8th position? | CREATE TABLE table_name_47 (poles VARCHAR, position VARCHAR) | SELECT poles FROM table_name_47 WHERE position = "8th" | ### Context: CREATE TABLE table_name_47 (poles VARCHAR, position VARCHAR) ### Question: Which poles were there for the 8th position? ### Answer: SELECT poles FROM table_name_47 WHERE position = "8th" |
What race was there in the formula one series when there was a test driver? | CREATE TABLE table_name_40 (races VARCHAR, series VARCHAR, poles VARCHAR) | SELECT races FROM table_name_40 WHERE series = "formula one" AND poles = "test driver" | ### Context: CREATE TABLE table_name_40 (races VARCHAR, series VARCHAR, poles VARCHAR) ### Question: What race was there in the formula one series when there was a test driver? ### Answer: SELECT races FROM table_name_40 WHERE series = "formula one" AND poles = "test driver" |
Which Extra points 1 point has a Total Points smaller than 30, and Touchdowns (5 points) of 5? | CREATE TABLE table_name_22 (extra_points_1_point INTEGER, total_points VARCHAR, touchdowns__5_points_ VARCHAR) | SELECT AVG(extra_points_1_point) FROM table_name_22 WHERE total_points < 30 AND touchdowns__5_points_ = 5 | ### Context: CREATE TABLE table_name_22 (extra_points_1_point INTEGER, total_points VARCHAR, touchdowns__5_points_ VARCHAR) ### Question: Which Extra points 1 point has a Total Points smaller than 30, and Touchdowns (5 points) of 5? ### Answer: SELECT AVG(extra_points_1_point) FROM table_name_22 WHERE total_points < 30 AND touchdowns__5_points_ = 5 |
How many Touchdowns (5 points) have an Extra points 1 point of 0, and a Field goals (5 points) larger than 0? | CREATE TABLE table_name_50 (touchdowns__5_points_ VARCHAR, extra_points_1_point VARCHAR, field_goals__5_points_ VARCHAR) | SELECT COUNT(touchdowns__5_points_) FROM table_name_50 WHERE extra_points_1_point = 0 AND field_goals__5_points_ > 0 | ### Context: CREATE TABLE table_name_50 (touchdowns__5_points_ VARCHAR, extra_points_1_point VARCHAR, field_goals__5_points_ VARCHAR) ### Question: How many Touchdowns (5 points) have an Extra points 1 point of 0, and a Field goals (5 points) larger than 0? ### Answer: SELECT COUNT(touchdowns__5_points_) FROM table_name_50 WHERE extra_points_1_point = 0 AND field_goals__5_points_ > 0 |
Which Extra points 1 point is the highest one that has a Total Points smaller than 8? | CREATE TABLE table_name_59 (extra_points_1_point INTEGER, total_points INTEGER) | SELECT MAX(extra_points_1_point) FROM table_name_59 WHERE total_points < 8 | ### Context: CREATE TABLE table_name_59 (extra_points_1_point INTEGER, total_points INTEGER) ### Question: Which Extra points 1 point is the highest one that has a Total Points smaller than 8? ### Answer: SELECT MAX(extra_points_1_point) FROM table_name_59 WHERE total_points < 8 |
Which Extra points 1 point is the lowest one that has a Player of walter shaw? | CREATE TABLE table_name_95 (extra_points_1_point INTEGER, player VARCHAR) | SELECT MIN(extra_points_1_point) FROM table_name_95 WHERE player = "walter shaw" | ### Context: CREATE TABLE table_name_95 (extra_points_1_point INTEGER, player VARCHAR) ### Question: Which Extra points 1 point is the lowest one that has a Player of walter shaw? ### Answer: SELECT MIN(extra_points_1_point) FROM table_name_95 WHERE player = "walter shaw" |
How many Field goals (5 points) have a Total Points of 123, and Touchdowns (5 points) larger than 13? | CREATE TABLE table_name_59 (field_goals__5_points_ VARCHAR, total_points VARCHAR, touchdowns__5_points_ VARCHAR) | SELECT COUNT(field_goals__5_points_) FROM table_name_59 WHERE total_points = 123 AND touchdowns__5_points_ > 13 | ### Context: CREATE TABLE table_name_59 (field_goals__5_points_ VARCHAR, total_points VARCHAR, touchdowns__5_points_ VARCHAR) ### Question: How many Field goals (5 points) have a Total Points of 123, and Touchdowns (5 points) larger than 13? ### Answer: SELECT COUNT(field_goals__5_points_) FROM table_name_59 WHERE total_points = 123 AND touchdowns__5_points_ > 13 |
How many people attended the game with parent recording the decision and a Record of 42–18–10? | CREATE TABLE table_name_52 (attendance INTEGER, decision VARCHAR, record VARCHAR) | SELECT SUM(attendance) FROM table_name_52 WHERE decision = "parent" AND record = "42–18–10" | ### Context: CREATE TABLE table_name_52 (attendance INTEGER, decision VARCHAR, record VARCHAR) ### Question: How many people attended the game with parent recording the decision and a Record of 42–18–10? ### Answer: SELECT SUM(attendance) FROM table_name_52 WHERE decision = "parent" AND record = "42–18–10" |
What is the team's record when vancouver was at home? | CREATE TABLE table_name_8 (record VARCHAR, home VARCHAR) | SELECT record FROM table_name_8 WHERE home = "vancouver" | ### Context: CREATE TABLE table_name_8 (record VARCHAR, home VARCHAR) ### Question: What is the team's record when vancouver was at home? ### Answer: SELECT record FROM table_name_8 WHERE home = "vancouver" |
Name the opponent on november 22, 1942 | CREATE TABLE table_name_6 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_6 WHERE date = "november 22, 1942" | ### Context: CREATE TABLE table_name_6 (opponent VARCHAR, date VARCHAR) ### Question: Name the opponent on november 22, 1942 ### Answer: SELECT opponent FROM table_name_6 WHERE date = "november 22, 1942" |
What score did the Green Bay Packers get as visitor? | CREATE TABLE table_name_8 (score VARCHAR, visitor VARCHAR) | SELECT score FROM table_name_8 WHERE visitor = "green bay packers" | ### Context: CREATE TABLE table_name_8 (score VARCHAR, visitor VARCHAR) ### Question: What score did the Green Bay Packers get as visitor? ### Answer: SELECT score FROM table_name_8 WHERE visitor = "green bay packers" |
On October 31 what team played at home? | CREATE TABLE table_name_56 (home VARCHAR, date VARCHAR) | SELECT home FROM table_name_56 WHERE date = "october 31" | ### Context: CREATE TABLE table_name_56 (home VARCHAR, date VARCHAR) ### Question: On October 31 what team played at home? ### Answer: SELECT home FROM table_name_56 WHERE date = "october 31" |
On December 5 what team played their home game? | CREATE TABLE table_name_20 (home VARCHAR, date VARCHAR) | SELECT home FROM table_name_20 WHERE date = "december 5" | ### Context: CREATE TABLE table_name_20 (home VARCHAR, date VARCHAR) ### Question: On December 5 what team played their home game? ### Answer: SELECT home FROM table_name_20 WHERE date = "december 5" |
How many people attended the game on October 31? | CREATE TABLE table_name_40 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_40 WHERE date = "october 31" | ### Context: CREATE TABLE table_name_40 (attendance VARCHAR, date VARCHAR) ### Question: How many people attended the game on October 31? ### Answer: SELECT attendance FROM table_name_40 WHERE date = "october 31" |
What nationality is Rob Nicholson? | CREATE TABLE table_name_19 (nationality VARCHAR, player VARCHAR) | SELECT nationality FROM table_name_19 WHERE player = "rob nicholson" | ### Context: CREATE TABLE table_name_19 (nationality VARCHAR, player VARCHAR) ### Question: What nationality is Rob Nicholson? ### Answer: SELECT nationality FROM table_name_19 WHERE player = "rob nicholson" |
What college or club team did Steve Jones play for? | CREATE TABLE table_name_48 (college_junior_club_team__league_ VARCHAR, player VARCHAR) | SELECT college_junior_club_team__league_ FROM table_name_48 WHERE player = "steve jones" | ### Context: CREATE TABLE table_name_48 (college_junior_club_team__league_ VARCHAR, player VARCHAR) ### Question: What college or club team did Steve Jones play for? ### Answer: SELECT college_junior_club_team__league_ FROM table_name_48 WHERE player = "steve jones" |
What nationality is Barry Duench? | CREATE TABLE table_name_6 (nationality VARCHAR, player VARCHAR) | SELECT nationality FROM table_name_6 WHERE player = "barry duench" | ### Context: CREATE TABLE table_name_6 (nationality VARCHAR, player VARCHAR) ### Question: What nationality is Barry Duench? ### Answer: SELECT nationality FROM table_name_6 WHERE player = "barry duench" |
What was Saskatoon Accelerators score on January 6, 2008? | CREATE TABLE table_name_66 (score VARCHAR, home_team VARCHAR, date VARCHAR) | SELECT score FROM table_name_66 WHERE home_team = "saskatoon accelerators" AND date = "january 6, 2008" | ### Context: CREATE TABLE table_name_66 (score VARCHAR, home_team VARCHAR, date VARCHAR) ### Question: What was Saskatoon Accelerators score on January 6, 2008? ### Answer: SELECT score FROM table_name_66 WHERE home_team = "saskatoon accelerators" AND date = "january 6, 2008" |
What was the score on April 6, 2008? | CREATE TABLE table_name_12 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_12 WHERE date = "april 6, 2008" | ### Context: CREATE TABLE table_name_12 (score VARCHAR, date VARCHAR) ### Question: What was the score on April 6, 2008? ### Answer: SELECT score FROM table_name_12 WHERE date = "april 6, 2008" |
Which home team played on April 5, 2008? | CREATE TABLE table_name_61 (home_team VARCHAR, date VARCHAR) | SELECT home_team FROM table_name_61 WHERE date = "april 5, 2008" | ### Context: CREATE TABLE table_name_61 (home_team VARCHAR, date VARCHAR) ### Question: Which home team played on April 5, 2008? ### Answer: SELECT home_team FROM table_name_61 WHERE date = "april 5, 2008" |
Which home team played on January 5, 2008? | CREATE TABLE table_name_79 (home_team VARCHAR, date VARCHAR) | SELECT home_team FROM table_name_79 WHERE date = "january 5, 2008" | ### Context: CREATE TABLE table_name_79 (home_team VARCHAR, date VARCHAR) ### Question: Which home team played on January 5, 2008? ### Answer: SELECT home_team FROM table_name_79 WHERE date = "january 5, 2008" |
What was the score at CN Centre on April 5, 2008? | CREATE TABLE table_name_99 (score VARCHAR, stadium VARCHAR, date VARCHAR) | SELECT score FROM table_name_99 WHERE stadium = "cn centre" AND date = "april 5, 2008" | ### Context: CREATE TABLE table_name_99 (score VARCHAR, stadium VARCHAR, date VARCHAR) ### Question: What was the score at CN Centre on April 5, 2008? ### Answer: SELECT score FROM table_name_99 WHERE stadium = "cn centre" AND date = "april 5, 2008" |
What was the score for Edmonton Drillers on January 6, 2008? | CREATE TABLE table_name_88 (score VARCHAR, visiting_team VARCHAR, date VARCHAR) | SELECT score FROM table_name_88 WHERE visiting_team = "edmonton drillers" AND date = "january 6, 2008" | ### Context: CREATE TABLE table_name_88 (score VARCHAR, visiting_team VARCHAR, date VARCHAR) ### Question: What was the score for Edmonton Drillers on January 6, 2008? ### Answer: SELECT score FROM table_name_88 WHERE visiting_team = "edmonton drillers" AND date = "january 6, 2008" |
How much Silver has a Nation of mexico, and a Total larger than 1? | CREATE TABLE table_name_47 (silver INTEGER, nation VARCHAR, total VARCHAR) | SELECT SUM(silver) FROM table_name_47 WHERE nation = "mexico" AND total > 1 | ### Context: CREATE TABLE table_name_47 (silver INTEGER, nation VARCHAR, total VARCHAR) ### Question: How much Silver has a Nation of mexico, and a Total larger than 1? ### Answer: SELECT SUM(silver) FROM table_name_47 WHERE nation = "mexico" AND total > 1 |
How much Bronze has a Gold larger than 0, and a Total smaller than 1? | CREATE TABLE table_name_88 (bronze VARCHAR, gold VARCHAR, total VARCHAR) | SELECT COUNT(bronze) FROM table_name_88 WHERE gold > 0 AND total < 1 | ### Context: CREATE TABLE table_name_88 (bronze VARCHAR, gold VARCHAR, total VARCHAR) ### Question: How much Bronze has a Gold larger than 0, and a Total smaller than 1? ### Answer: SELECT COUNT(bronze) FROM table_name_88 WHERE gold > 0 AND total < 1 |
How much Bronze has a Nation of mexico, and a Total larger than 1? | CREATE TABLE table_name_58 (bronze INTEGER, nation VARCHAR, total VARCHAR) | SELECT SUM(bronze) FROM table_name_58 WHERE nation = "mexico" AND total > 1 | ### Context: CREATE TABLE table_name_58 (bronze INTEGER, nation VARCHAR, total VARCHAR) ### Question: How much Bronze has a Nation of mexico, and a Total larger than 1? ### Answer: SELECT SUM(bronze) FROM table_name_58 WHERE nation = "mexico" AND total > 1 |
In which District(s) has a Democrat held office since 1998? | CREATE TABLE table_name_12 (district VARCHAR, party VARCHAR, elected VARCHAR) | SELECT district FROM table_name_12 WHERE party = "democrat" AND elected > 1998 | ### Context: CREATE TABLE table_name_12 (district VARCHAR, party VARCHAR, elected VARCHAR) ### Question: In which District(s) has a Democrat held office since 1998? ### Answer: SELECT district FROM table_name_12 WHERE party = "democrat" AND elected > 1998 |
Which Rank is the Country of soviet union with a Total smaller than 19? | CREATE TABLE table_name_94 (rank INTEGER, country VARCHAR, total VARCHAR) | SELECT MIN(rank) FROM table_name_94 WHERE country = "soviet union" AND total < 19 | ### Context: CREATE TABLE table_name_94 (rank INTEGER, country VARCHAR, total VARCHAR) ### Question: Which Rank is the Country of soviet union with a Total smaller than 19? ### Answer: SELECT MIN(rank) FROM table_name_94 WHERE country = "soviet union" AND total < 19 |
What is the lowest Rank of Denmark County with a Total smaller than 1? | CREATE TABLE table_name_2 (rank INTEGER, country VARCHAR, total VARCHAR) | SELECT MIN(rank) FROM table_name_2 WHERE country = "denmark" AND total < 1 | ### Context: CREATE TABLE table_name_2 (rank INTEGER, country VARCHAR, total VARCHAR) ### Question: What is the lowest Rank of Denmark County with a Total smaller than 1? ### Answer: SELECT MIN(rank) FROM table_name_2 WHERE country = "denmark" AND total < 1 |
Who was the loser of the heavyweight division fight that lasted a time of 2:24? | CREATE TABLE table_name_10 (loser VARCHAR, weight_division VARCHAR, time VARCHAR) | SELECT loser FROM table_name_10 WHERE weight_division = "heavyweight" AND time = "2:24" | ### Context: CREATE TABLE table_name_10 (loser VARCHAR, weight_division VARCHAR, time VARCHAR) ### Question: Who was the loser of the heavyweight division fight that lasted a time of 2:24? ### Answer: SELECT loser FROM table_name_10 WHERE weight_division = "heavyweight" AND time = "2:24" |
What was the weight division for the fight that ended in a TKO (strikes)? | CREATE TABLE table_name_55 (weight_division VARCHAR, method VARCHAR) | SELECT weight_division FROM table_name_55 WHERE method = "tko (strikes)" | ### Context: CREATE TABLE table_name_55 (weight_division VARCHAR, method VARCHAR) ### Question: What was the weight division for the fight that ended in a TKO (strikes)? ### Answer: SELECT weight_division FROM table_name_55 WHERE method = "tko (strikes)" |
Who was the loser of the fight against antonio silva? | CREATE TABLE table_name_87 (loser VARCHAR, winner VARCHAR) | SELECT loser FROM table_name_87 WHERE winner = "antonio silva" | ### Context: CREATE TABLE table_name_87 (loser VARCHAR, winner VARCHAR) ### Question: Who was the loser of the fight against antonio silva? ### Answer: SELECT loser FROM table_name_87 WHERE winner = "antonio silva" |
What was the average number of rounds in the fight where Tank Abbott lost? | CREATE TABLE table_name_66 (round INTEGER, loser VARCHAR) | SELECT AVG(round) FROM table_name_66 WHERE loser = "tank abbott" | ### Context: CREATE TABLE table_name_66 (round INTEGER, loser VARCHAR) ### Question: What was the average number of rounds in the fight where Tank Abbott lost? ### Answer: SELECT AVG(round) FROM table_name_66 WHERE loser = "tank abbott" |
In what Round was a Defensive Tackle Pick # less than 19? | CREATE TABLE table_name_1 (round VARCHAR, position VARCHAR, pick__number VARCHAR) | SELECT COUNT(round) FROM table_name_1 WHERE position = "defensive tackle" AND pick__number < 19 | ### Context: CREATE TABLE table_name_1 (round VARCHAR, position VARCHAR, pick__number VARCHAR) ### Question: In what Round was a Defensive Tackle Pick # less than 19? ### Answer: SELECT COUNT(round) FROM table_name_1 WHERE position = "defensive tackle" AND pick__number < 19 |
What is the Pick # with an Overall of 19? | CREATE TABLE table_name_22 (pick__number INTEGER, overall VARCHAR) | SELECT MAX(pick__number) FROM table_name_22 WHERE overall = 19 | ### Context: CREATE TABLE table_name_22 (pick__number INTEGER, overall VARCHAR) ### Question: What is the Pick # with an Overall of 19? ### Answer: SELECT MAX(pick__number) FROM table_name_22 WHERE overall = 19 |
What is the event result for athlete Ali Ekranpour? | CREATE TABLE table_name_71 (event VARCHAR, athlete VARCHAR) | SELECT event FROM table_name_71 WHERE athlete = "ali ekranpour" | ### Context: CREATE TABLE table_name_71 (event VARCHAR, athlete VARCHAR) ### Question: What is the event result for athlete Ali Ekranpour? ### Answer: SELECT event FROM table_name_71 WHERE athlete = "ali ekranpour" |
What is the final result for the 63.5 kg? | CREATE TABLE table_name_73 (final VARCHAR, event VARCHAR) | SELECT final FROM table_name_73 WHERE event = "63.5 kg" | ### Context: CREATE TABLE table_name_73 (final VARCHAR, event VARCHAR) ### Question: What is the final result for the 63.5 kg? ### Answer: SELECT final FROM table_name_73 WHERE event = "63.5 kg" |
What was the date of the tournament in Scotland with a score of 270 (–18)? | CREATE TABLE table_name_71 (date VARCHAR, score VARCHAR, location VARCHAR) | SELECT date FROM table_name_71 WHERE score = "270 (–18)" AND location = "scotland" | ### Context: CREATE TABLE table_name_71 (date VARCHAR, score VARCHAR, location VARCHAR) ### Question: What was the date of the tournament in Scotland with a score of 270 (–18)? ### Answer: SELECT date FROM table_name_71 WHERE score = "270 (–18)" AND location = "scotland" |
Where was the tournament won by Hale Irwin (19)? | CREATE TABLE table_name_93 (location VARCHAR, winner VARCHAR) | SELECT location FROM table_name_93 WHERE winner = "hale irwin (19)" | ### Context: CREATE TABLE table_name_93 (location VARCHAR, winner VARCHAR) ### Question: Where was the tournament won by Hale Irwin (19)? ### Answer: SELECT location FROM table_name_93 WHERE winner = "hale irwin (19)" |
How much is vinculum when the parentheses are 0.(81)? | CREATE TABLE table_name_72 (vinculum VARCHAR, parentheses VARCHAR) | SELECT vinculum FROM table_name_72 WHERE parentheses = "0.(81)" | ### Context: CREATE TABLE table_name_72 (vinculum VARCHAR, parentheses VARCHAR) ### Question: How much is vinculum when the parentheses are 0.(81)? ### Answer: SELECT vinculum FROM table_name_72 WHERE parentheses = "0.(81)" |
What fraction has a value for dots of 0.\dot{3}? | CREATE TABLE table_name_85 (fraction VARCHAR, dots VARCHAR) | SELECT fraction FROM table_name_85 WHERE dots = "0.\dot{3}" | ### Context: CREATE TABLE table_name_85 (fraction VARCHAR, dots VARCHAR) ### Question: What fraction has a value for dots of 0.\dot{3}? ### Answer: SELECT fraction FROM table_name_85 WHERE dots = "0.\dot{3}" |
What is the dot value when the ellipsis is 0.012345679…? | CREATE TABLE table_name_29 (dots VARCHAR, ellipsis VARCHAR) | SELECT dots FROM table_name_29 WHERE ellipsis = "0.012345679…" | ### Context: CREATE TABLE table_name_29 (dots VARCHAR, ellipsis VARCHAR) ### Question: What is the dot value when the ellipsis is 0.012345679…? ### Answer: SELECT dots FROM table_name_29 WHERE ellipsis = "0.012345679…" |
What fraction has parentheses of 0.(3)? | CREATE TABLE table_name_58 (fraction VARCHAR, parentheses VARCHAR) | SELECT fraction FROM table_name_58 WHERE parentheses = "0.(3)" | ### Context: CREATE TABLE table_name_58 (fraction VARCHAR, parentheses VARCHAR) ### Question: What fraction has parentheses of 0.(3)? ### Answer: SELECT fraction FROM table_name_58 WHERE parentheses = "0.(3)" |
What is the value for parentheses with a dots value of 0.\dot{6}? | CREATE TABLE table_name_91 (parentheses VARCHAR, dots VARCHAR) | SELECT parentheses FROM table_name_91 WHERE dots = "0.\dot{6}" | ### Context: CREATE TABLE table_name_91 (parentheses VARCHAR, dots VARCHAR) ### Question: What is the value for parentheses with a dots value of 0.\dot{6}? ### Answer: SELECT parentheses FROM table_name_91 WHERE dots = "0.\dot{6}" |
What is the value of vinculum for parentheses of 0.(6)? | CREATE TABLE table_name_13 (vinculum VARCHAR, parentheses VARCHAR) | SELECT vinculum FROM table_name_13 WHERE parentheses = "0.(6)" | ### Context: CREATE TABLE table_name_13 (vinculum VARCHAR, parentheses VARCHAR) ### Question: What is the value of vinculum for parentheses of 0.(6)? ### Answer: SELECT vinculum FROM table_name_13 WHERE parentheses = "0.(6)" |
When was the score 7-1? | CREATE TABLE table_name_73 (date VARCHAR, score VARCHAR) | SELECT date FROM table_name_73 WHERE score = "7-1" | ### Context: CREATE TABLE table_name_73 (date VARCHAR, score VARCHAR) ### Question: When was the score 7-1? ### Answer: SELECT date FROM table_name_73 WHERE score = "7-1" |
What was the loss when the score was 7-1? | CREATE TABLE table_name_26 (loss VARCHAR, score VARCHAR) | SELECT loss FROM table_name_26 WHERE score = "7-1" | ### Context: CREATE TABLE table_name_26 (loss VARCHAR, score VARCHAR) ### Question: What was the loss when the score was 7-1? ### Answer: SELECT loss FROM table_name_26 WHERE score = "7-1" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.