text stringlengths 114 1.06k |
|---|
### question: What date did the episode, with John O'Connell as the coach, premier? ### answer: SELECT premier_date FROM table_2140071_5 WHERE coach = "John O'Connell" ### context: CREATE TABLE table_2140071_5 (premier_date VARCHAR, coach VARCHAR) |
### question: Name the result for total attendance-regular season ### answer: SELECT result_games FROM table_21436373_11 WHERE type_of_record = "Total attendance-Regular season" ### context: CREATE TABLE table_21436373_11 (result_games VARCHAR, type_of_record VARCHAR) |
### question: Name the result/games for 52521 ### answer: SELECT result_games FROM table_21436373_11 WHERE attendance = 52521 ### context: CREATE TABLE table_21436373_11 (result_games VARCHAR, attendance VARCHAR) |
### question: Name the result/games for 54530 ### answer: SELECT result_games FROM table_21436373_11 WHERE attendance = 54530 ### context: CREATE TABLE table_21436373_11 (result_games VARCHAR, attendance VARCHAR) |
### question: Name the stadium for regular season game ### answer: SELECT stadium FROM table_21436373_11 WHERE type_of_record = "Regular season game" ### context: CREATE TABLE table_21436373_11 (stadium VARCHAR, type_of_record VARCHAR) |
### question: Name the result/games for 54741 ### answer: SELECT result_games FROM table_21436373_11 WHERE attendance = 54741 ### context: CREATE TABLE table_21436373_11 (result_games VARCHAR, attendance VARCHAR) |
### question: give the 1st leg score against ilisiakos ### answer: SELECT 1 AS st_leg FROM table_21434618_1 WHERE team__number2 = "Ilisiakos" ### context: CREATE TABLE table_21434618_1 (team__number2 VARCHAR) |
### question: which team #1 played again chalkida ### answer: SELECT team__number1 FROM table_21434618_1 WHERE team__number2 = "Chalkida" ### context: CREATE TABLE table_21434618_1 (team__number1 VARCHAR, team__number2 VARCHAR) |
### question: which team#2 played against poseidon neoi porroi ### answer: SELECT team__number2 FROM table_21434618_1 WHERE team__number1 = "Poseidon Neoi Porroi" ### context: CREATE TABLE table_21434618_1 (team__number2 VARCHAR, team__number1 VARCHAR) |
### question: When was the pre-season game record achieved? ### answer: SELECT date_year FROM table_21436373_10 WHERE type_of_record = "Pre-season game" ### context: CREATE TABLE table_21436373_10 (date_year VARCHAR, type_of_record VARCHAR) |
### question: What is the maximal number of people that attended any of these games? ### answer: SELECT MAX(attendance) FROM table_21436373_10 ### context: CREATE TABLE table_21436373_10 (attendance INTEGER) |
### question: what is the attendance in 2011 records ### answer: SELECT attendance FROM table_21436373_12 WHERE date_year = "2011" ### context: CREATE TABLE table_21436373_12 (attendance VARCHAR, date_year VARCHAR) |
### question: what type of record was made where result/games is 10 games (29,606 avg.) ### answer: SELECT type_of_record FROM table_21436373_12 WHERE result_games = "10 games (29,606 avg.)" ### context: CREATE TABLE table_21436373_12 (type_of_record VARCHAR, result_games VARCHAR) |
### question: where was the total attendance-regular season record made ### answer: SELECT stadium FROM table_21436373_12 WHERE type_of_record = "Total attendance-Regular season" ### context: CREATE TABLE table_21436373_12 (stadium VARCHAR, type_of_record VARCHAR) |
### question: where was sun 09/12/93 record made ### answer: SELECT stadium FROM table_21436373_12 WHERE date_year = "Sun 09/12/93" ### context: CREATE TABLE table_21436373_12 (stadium VARCHAR, date_year VARCHAR) |
### question: how many records had result/games: 10 games (29,606 avg.) ### answer: SELECT COUNT(type_of_record) FROM table_21436373_12 WHERE result_games = "10 games (29,606 avg.)" ### context: CREATE TABLE table_21436373_12 (type_of_record VARCHAR, result_games VARCHAR) |
### question: what is the highest attendance for a total attendance-regular season record ### answer: SELECT MAX(attendance) FROM table_21436373_12 WHERE type_of_record = "Total attendance-Regular season" ### context: CREATE TABLE table_21436373_12 (attendance INTEGER, type_of_record VARCHAR) |
### question: When 2005 is the date/year how many measurements of attendance are there? ### answer: SELECT COUNT(attendance) FROM table_21436373_7 WHERE date_year = "2005" ### context: CREATE TABLE table_21436373_7 (attendance VARCHAR, date_year VARCHAR) |
### question: When 27585 is the attendance what are the results of the games? ### answer: SELECT result_games FROM table_21436373_7 WHERE attendance = 27585 ### context: CREATE TABLE table_21436373_7 (result_games VARCHAR, attendance VARCHAR) |
### question: When 9 games (28,002 avg.) is the results of the games what is the date/year? ### answer: SELECT date_year FROM table_21436373_7 WHERE result_games = "9 games (28,002 avg.)" ### context: CREATE TABLE table_21436373_7 (date_year VARCHAR, result_games VARCHAR) |
### question: When 255627 is the attendance what is the stadium? ### answer: SELECT stadium FROM table_21436373_7 WHERE attendance = 255627 ### context: CREATE TABLE table_21436373_7 (stadium VARCHAR, attendance VARCHAR) |
### question: What record was set on Tue 11/02/75? ### answer: SELECT type_of_record FROM table_21436373_8 WHERE date_year = "Tue 11/02/75" ### context: CREATE TABLE table_21436373_8 (type_of_record VARCHAR, date_year VARCHAR) |
### question: What record was set when the result/game was equal to 9 games (28,595 avg.) ### answer: SELECT type_of_record FROM table_21436373_8 WHERE result_games = "9 games (28,595 avg.)" ### context: CREATE TABLE table_21436373_8 (type_of_record VARCHAR, result_games VARCHAR) |
### question: What record was set when the result/game was montreal 20 @ ottawa 10? ### answer: SELECT type_of_record FROM table_21436373_8 WHERE result_games = "Montreal 20 @ Ottawa 10" ### context: CREATE TABLE table_21436373_8 (type_of_record VARCHAR, result_games VARCHAR) |
### question: Which stadium had the result/game montreal 20 @ ottawa 10? ### answer: SELECT stadium FROM table_21436373_8 WHERE result_games = "Montreal 20 @ Ottawa 10" ### context: CREATE TABLE table_21436373_8 (stadium VARCHAR, result_games VARCHAR) |
### question: For what year is the type of record 'total attendance-regular season? ### answer: SELECT date_year FROM table_21436373_5 WHERE type_of_record = "Total attendance-Regular season" ### context: CREATE TABLE table_21436373_5 (date_year VARCHAR, type_of_record VARCHAR) |
### question: What type of record is the result of the game Montreal 31 @ Calgary 32? ### answer: SELECT type_of_record FROM table_21436373_5 WHERE result_games = "Montreal 31 @ Calgary 32" ### context: CREATE TABLE table_21436373_5 (type_of_record VARCHAR, result_games VARCHAR) |
### question: On what date/s has attendance been 45010? ### answer: SELECT date_year FROM table_21436373_5 WHERE attendance = 45010 ### context: CREATE TABLE table_21436373_5 (date_year VARCHAR, attendance VARCHAR) |
### question: What is the number of attendance with the pre-season game as the type of record? ### answer: SELECT COUNT(attendance) FROM table_21436373_6 WHERE type_of_record = "Pre-season game" ### context: CREATE TABLE table_21436373_6 (attendance VARCHAR, type_of_record VARCHAR) |
### question: Which type of record has result/games of 9 games (57,144 avg.) ### answer: SELECT type_of_record FROM table_21436373_6 WHERE result_games = "9 games (57,144 avg.)" ### context: CREATE TABLE table_21436373_6 (type_of_record VARCHAR, result_games VARCHAR) |
### question: What is the result/games of Sun 11/28/10 as the date/year? ### answer: SELECT result_games FROM table_21436373_6 WHERE date_year = "Sun 11/28/10" ### context: CREATE TABLE table_21436373_6 (result_games VARCHAR, date_year VARCHAR) |
### question: Which stadium has the date/year of Fri 06/25/82? ### answer: SELECT stadium FROM table_21436373_6 WHERE date_year = "Fri 06/25/82" ### context: CREATE TABLE table_21436373_6 (stadium VARCHAR, date_year VARCHAR) |
### question: Which type of record has result/games of b.c. 16 @ edmonton 22? ### answer: SELECT type_of_record FROM table_21436373_6 WHERE result_games = "B.C. 16 @ Edmonton 22" ### context: CREATE TABLE table_21436373_6 (type_of_record VARCHAR, result_games VARCHAR) |
### question: What was the populati in 2000 for Panlicsian? ### answer: SELECT MIN(population__2000_) FROM table_2144436_1 WHERE barangay = "Panlicsian" ### context: CREATE TABLE table_2144436_1 (population__2000_ INTEGER, barangay VARCHAR) |
### question: What was the population in 2010 for Minane ### answer: SELECT MAX(population__2010_) FROM table_2144436_1 WHERE barangay = "Minane" ### context: CREATE TABLE table_2144436_1 (population__2010_ INTEGER, barangay VARCHAR) |
### question: What is the 2007 population for Corazon de Jesus? ### answer: SELECT population__2007_ FROM table_2144436_1 WHERE barangay = "Corazon De Jesus" ### context: CREATE TABLE table_2144436_1 (population__2007_ VARCHAR, barangay VARCHAR) |
### question: What is the 2010 population when the 2000 population is 5720? ### answer: SELECT MAX(population__2010_) FROM table_2144436_1 WHERE population__2000_ = 5720 ### context: CREATE TABLE table_2144436_1 (population__2010_ INTEGER, population__2000_ VARCHAR) |
### question: Name the romaji by your side ~hikari's theme~ (popup.version) ### answer: SELECT rōmaji FROM table_2144389_8 WHERE japanese_translation = "By Your Side ~Hikari's Theme~ (PopUp.Version)" ### context: CREATE TABLE table_2144389_8 (rōmaji VARCHAR, japanese_translation VARCHAR) |
### question: Name the vocalist for kaze no messēji (pokapoka-version) ### answer: SELECT vocalist FROM table_2144389_8 WHERE rōmaji = "Kaze no Messēji (PokaPoka-Version)" ### context: CREATE TABLE table_2144389_8 (vocalist VARCHAR, rōmaji VARCHAR) |
### question: Name the least number for 君のそばで~ヒカリのテーマ~(popup.version) ### answer: SELECT MIN(_number) FROM table_2144389_8 WHERE japanese_title = "君のそばで~ヒカリのテーマ~(PopUp.Version)" ### context: CREATE TABLE table_2144389_8 (_number INTEGER, japanese_title VARCHAR) |
### question: Name the number of vocalists for which one ~ is it? ### answer: SELECT COUNT(vocalist) FROM table_2144389_8 WHERE japanese_translation = "Which One ~ Is It?" ### context: CREATE TABLE table_2144389_8 (vocalist VARCHAR, japanese_translation VARCHAR) |
### question: Name the to par for 20 feb 2005 ### answer: SELECT to_par FROM table_21469545_2 WHERE date = "20 Feb 2005" ### context: CREATE TABLE table_21469545_2 (to_par VARCHAR, date VARCHAR) |
### question: Name the number for margin of victory being 3 strokes ### answer: SELECT COUNT(no) FROM table_21469545_2 WHERE margin_of_victory = "3 strokes" ### context: CREATE TABLE table_21469545_2 (no VARCHAR, margin_of_victory VARCHAR) |
### question: Name the winning score for 8 feb 2009 ### answer: SELECT COUNT(winning_score) FROM table_21469545_2 WHERE date = "8 Feb 2009" ### context: CREATE TABLE table_21469545_2 (winning_score VARCHAR, date VARCHAR) |
### question: Who published the title in the pet-raising simulator genre? ### answer: SELECT publisher FROM table_21458142_1 WHERE genre = "Pet-raising simulator" ### context: CREATE TABLE table_21458142_1 (publisher VARCHAR, genre VARCHAR) |
### question: What's the sales breakdown for Nintendo's Mario Kart DS? ### answer: SELECT sales_breakdown FROM table_21458142_1 WHERE publisher = "Nintendo" AND title = "Mario Kart DS" ### context: CREATE TABLE table_21458142_1 (sales_breakdown VARCHAR, publisher VARCHAR, title VARCHAR) |
### question: How many copies were sold of the game released on october 23, 2008? ### answer: SELECT total_copies_sold FROM table_21458142_1 WHERE release_date = "October 23, 2008" ### context: CREATE TABLE table_21458142_1 (total_copies_sold VARCHAR, release_date VARCHAR) |
### question: What's the sales breakdown of the Nintendo game released on May 15, 2006? ### answer: SELECT sales_breakdown FROM table_21458142_1 WHERE publisher = "Nintendo" AND release_date = "May 15, 2006" ### context: CREATE TABLE table_21458142_1 (sales_breakdown VARCHAR, publisher VARCHAR, release_date VARCHAR) |
### question: Name the most races ### answer: SELECT MAX(races) FROM table_21457754_2 ### context: CREATE TABLE table_21457754_2 (races INTEGER) |
### question: Name the most rr 1 pts ### answer: SELECT MAX(rr1_pts) FROM table_21457754_2 ### context: CREATE TABLE table_21457754_2 (rr1_pts INTEGER) |
### question: Name the number of total pts for gbr challenge ### answer: SELECT COUNT(total_pts) FROM table_21457754_2 WHERE team_name = "GBR Challenge" ### context: CREATE TABLE table_21457754_2 (total_pts VARCHAR, team_name VARCHAR) |
### question: What is the total number of second place finishes when the city & nation was Chicago, USA? ### answer: SELECT COUNT(second_place) FROM table_2146364_2 WHERE city_ & _nation = "Chicago, USA" ### context: CREATE TABLE table_2146364_2 (second_place VARCHAR, city_ VARCHAR, _nation VARCHAR) |
### question: What is the total number of third place finishes when the city & nation was Vancouver, Canada? ### answer: SELECT MIN(third_place) FROM table_2146364_2 WHERE city_ & _nation = "Vancouver, Canada" ### context: CREATE TABLE table_2146364_2 (third_place INTEGER, city_ VARCHAR, _nation VARCHAR) |
### question: What is the smallest third place finish? ### answer: SELECT MIN(third_place) FROM table_2146364_2 ### context: CREATE TABLE table_2146364_2 (third_place INTEGER) |
### question: What change caused a change of staff in March 9, 1865? ### answer: SELECT reason_for_change FROM table_2147588_3 WHERE date_of_successors_formal_installation = "March 9, 1865" ### context: CREATE TABLE table_2147588_3 (reason_for_change VARCHAR, date_of_successors_formal_installation VARCHAR) |
### question: Who was the successor for the new seat? ### answer: SELECT successor FROM table_2147588_3 WHERE vacator = "New seat" ### context: CREATE TABLE table_2147588_3 (successor VARCHAR, vacator VARCHAR) |
### question: What was the reason for change in staff in formal installations on March 15, 1865? ### answer: SELECT reason_for_change FROM table_2147588_3 WHERE date_of_successors_formal_installation = "March 15, 1865" ### context: CREATE TABLE table_2147588_3 (reason_for_change VARCHAR, date_of_successors_formal_insta... |
### question: When nathaniel g. taylor (u) is the successor what is the vacator? ### answer: SELECT vacator FROM table_2147588_4 WHERE successor = "Nathaniel G. Taylor (U)" ### context: CREATE TABLE table_2147588_4 (vacator VARCHAR, successor VARCHAR) |
### question: When william b. campbell (u) is the successor what is the district? ### answer: SELECT district FROM table_2147588_4 WHERE successor = "William B. Campbell (U)" ### context: CREATE TABLE table_2147588_4 (district VARCHAR, successor VARCHAR) |
### question: When james brooks (d) is the vacator what is the date the successor was seated? ### answer: SELECT date_successor_seated FROM table_2147588_4 WHERE vacator = "James Brooks (D)" ### context: CREATE TABLE table_2147588_4 (date_successor_seated VARCHAR, vacator VARCHAR) |
### question: When john w. leftwich (uu) is the successor what is the date the successor was seated? ### answer: SELECT date_successor_seated FROM table_2147588_4 WHERE successor = "John W. Leftwich (UU)" ### context: CREATE TABLE table_2147588_4 (date_successor_seated VARCHAR, successor VARCHAR) |
### question: When new york 8th is teh district who is the successor? ### answer: SELECT successor FROM table_2147588_4 WHERE district = "New York 8th" ### context: CREATE TABLE table_2147588_4 (successor VARCHAR, district VARCHAR) |
### question: When 20 is the rr4 points what is the lowest rr3 points? ### answer: SELECT MIN(rr3_pts) FROM table_21489362_2 WHERE rr4_pts = "20" ### context: CREATE TABLE table_21489362_2 (rr3_pts INTEGER, rr4_pts VARCHAR) |
### question: When 70 is the total points what is the rr4 points? ### answer: SELECT rr4_pts FROM table_21489362_2 WHERE total_pts = 70 ### context: CREATE TABLE table_21489362_2 (rr4_pts VARCHAR, total_pts VARCHAR) |
### question: When 3 is the rr1 points what is won score? ### answer: SELECT won FROM table_21489362_2 WHERE rr1_pts = 3 ### context: CREATE TABLE table_21489362_2 (won VARCHAR, rr1_pts VARCHAR) |
### question: When spanish challenge is the team name what are the rr1 points? ### answer: SELECT rr1_pts FROM table_21489362_2 WHERE team_name = "Spanish Challenge" ### context: CREATE TABLE table_21489362_2 (rr1_pts VARCHAR, team_name VARCHAR) |
### question: Name the innings for 5088 runs scored ### answer: SELECT COUNT(innings) FROM table_21486890_1 WHERE runs_scored = 5088 ### context: CREATE TABLE table_21486890_1 (innings VARCHAR, runs_scored VARCHAR) |
### question: Name the matches for mark taylor category:articles with hcards ### answer: SELECT MAX(matches) FROM table_21486890_1 WHERE name = "Mark Taylor Category:Articles with hCards" ### context: CREATE TABLE table_21486890_1 (matches INTEGER, name VARCHAR) |
### question: Name the most runs scored ### answer: SELECT MAX(runs_scored) FROM table_21486890_1 ### context: CREATE TABLE table_21486890_1 (runs_scored INTEGER) |
### question: Name the least matches for not out being 44 ### answer: SELECT MIN(matches) FROM table_21486890_1 WHERE not_out = 44 ### context: CREATE TABLE table_21486890_1 (matches INTEGER, not_out VARCHAR) |
### question: What nation was Pageos 1 from? ### answer: SELECT nation FROM table_2150068_1 WHERE satellite = "PAGEOS 1" ### context: CREATE TABLE table_2150068_1 (nation VARCHAR, satellite VARCHAR) |
### question: What was the launch date for the sattelite with ado that was 4 kg and 3 meters in diameter? ### answer: SELECT launch_date__utc_ FROM table_2150068_1 WHERE usage = "ado" AND mass_kg_ = "4" AND diameter_m_ = "3" ### context: CREATE TABLE table_2150068_1 (launch_date__utc_ VARCHAR, diameter_m_ VARCHAR, usag... |
### question: What was the decay for the sattelite that was 180 kg? ### answer: SELECT decay FROM table_2150068_1 WHERE mass_kg_ = "180" ### context: CREATE TABLE table_2150068_1 (decay VARCHAR, mass_kg_ VARCHAR) |
### question: What is the nssdc id for Echo 1? ### answer: SELECT nssdc_id FROM table_2150068_1 WHERE satellite = "Echo 1" ### context: CREATE TABLE table_2150068_1 (nssdc_id VARCHAR, satellite VARCHAR) |
### question: What is the launch date for the sattelite with a nssdc id of 1960-009a? ### answer: SELECT launch_date__utc_ FROM table_2150068_1 WHERE nssdc_id = "1960-009A" ### context: CREATE TABLE table_2150068_1 (launch_date__utc_ VARCHAR, nssdc_id VARCHAR) |
### question: What is the decay for the sattelite with an id that is 1990-081c? ### answer: SELECT decay FROM table_2150068_1 WHERE nssdc_id = "1990-081C" ### context: CREATE TABLE table_2150068_1 (decay VARCHAR, nssdc_id VARCHAR) |
### question: How many song titles belong to the artist Ratt? ### answer: SELECT COUNT(song_title) FROM table_21500850_1 WHERE artist = "Ratt" ### context: CREATE TABLE table_21500850_1 (song_title VARCHAR, artist VARCHAR) |
### question: What is every original game for the artist Lynyrd Skynyrd? ### answer: SELECT original_game FROM table_21500850_1 WHERE artist = "Lynyrd Skynyrd" ### context: CREATE TABLE table_21500850_1 (original_game VARCHAR, artist VARCHAR) |
### question: What is every song title for the rock genre and Guitar Hero as original game and the artist is Queens of the Stone Age? ### answer: SELECT song_title FROM table_21500850_1 WHERE genre = "Rock" AND original_game = "Guitar Hero" AND artist = "Queens of the Stone Age" ### context: CREATE TABLE table_21500850... |
### question: What is every song title for 2007? ### answer: SELECT song_title FROM table_21500850_1 WHERE year = 2007 ### context: CREATE TABLE table_21500850_1 (song_title VARCHAR, year VARCHAR) |
### question: What was Lambert's song choice in the top 13? ### answer: SELECT song_choice FROM table_21501511_1 WHERE week__number = "Top 13" ### context: CREATE TABLE table_21501511_1 (song_choice VARCHAR, week__number VARCHAR) |
### question: What order did Lambert perform in the top 11? ### answer: SELECT order__number FROM table_21501511_1 WHERE week__number = "Top 11" ### context: CREATE TABLE table_21501511_1 (order__number VARCHAR, week__number VARCHAR) |
### question: What week was themed disco? ### answer: SELECT week__number FROM table_21501511_1 WHERE theme = "Disco" ### context: CREATE TABLE table_21501511_1 (week__number VARCHAR, theme VARCHAR) |
### question: What week #(s featured sara bareilles as the original artist? ### answer: SELECT week__number FROM table_21501564_1 WHERE original_artist = "Sara Bareilles" ### context: CREATE TABLE table_21501564_1 (week__number VARCHAR, original_artist VARCHAR) |
### question: What week # featured first solo as the theme? ### answer: SELECT week__number FROM table_21501564_1 WHERE theme = "First Solo" ### context: CREATE TABLE table_21501564_1 (week__number VARCHAR, theme VARCHAR) |
### question: How many weeks featured duffy as the original artist? ### answer: SELECT COUNT(theme) FROM table_21501564_1 WHERE original_artist = "Duffy" ### context: CREATE TABLE table_21501564_1 (theme VARCHAR, original_artist VARCHAR) |
### question: Who was the originally artist when Jasmine Murray was selected? ### answer: SELECT original_artist FROM table_21501564_1 WHERE result = "Selected" ### context: CREATE TABLE table_21501564_1 (original_artist VARCHAR, result VARCHAR) |
### question: With theme the Year They Were Born, what is the song of choice? ### answer: SELECT song_choice FROM table_21501565_1 WHERE theme = "Year They Were Born" ### context: CREATE TABLE table_21501565_1 (song_choice VARCHAR, theme VARCHAR) |
### question: With order number 7 and the theme is Motown, who were the original artists? ### answer: SELECT original_artist FROM table_21501565_1 WHERE order__number = "7" AND theme = "Motown" ### context: CREATE TABLE table_21501565_1 (original_artist VARCHAR, order__number VARCHAR, theme VARCHAR) |
### question: With an original artist names Bette Midler, what is the order number? ### answer: SELECT COUNT(order__number) FROM table_21501565_1 WHERE original_artist = "Bette Midler" ### context: CREATE TABLE table_21501565_1 (order__number VARCHAR, original_artist VARCHAR) |
### question: With original artist of Tina Turner, what is the week number? ### answer: SELECT week__number FROM table_21501565_1 WHERE original_artist = "Tina Turner" ### context: CREATE TABLE table_21501565_1 (week__number VARCHAR, original_artist VARCHAR) |
### question: Who is the original artist with a theme of N/A? ### answer: SELECT original_artist FROM table_21501565_1 WHERE theme = "N/A" ### context: CREATE TABLE table_21501565_1 (original_artist VARCHAR, theme VARCHAR) |
### question: Name the team for june 16 jeff gordon ### answer: SELECT team FROM table_2150776_1 WHERE date = "June 16" AND driver = "Jeff Gordon" ### context: CREATE TABLE table_2150776_1 (team VARCHAR, date VARCHAR, driver VARCHAR) |
### question: Name the driver for 200 laps 1997 ### answer: SELECT driver FROM table_2150776_1 WHERE laps = "200" AND year = "1997" ### context: CREATE TABLE table_2150776_1 (driver VARCHAR, laps VARCHAR, year VARCHAR) |
### question: Name the team for ricky rudd ### answer: SELECT team FROM table_2150776_1 WHERE driver = "Ricky Rudd" ### context: CREATE TABLE table_2150776_1 (team VARCHAR, driver VARCHAR) |
### question: What is the rank when RR2 has 4 points? ### answer: SELECT ranking FROM table_21515673_2 WHERE rr2_pts = 4 ### context: CREATE TABLE table_21515673_2 (ranking VARCHAR, rr2_pts VARCHAR) |
### question: How many points does Swedish America's Cup Challenge have for rr1? ### answer: SELECT COUNT(rr1_pts) FROM table_21515673_2 WHERE team_name = "Swedish America's Cup Challenge" ### context: CREATE TABLE table_21515673_2 (rr1_pts VARCHAR, team_name VARCHAR) |
### question: Who was the senior US senator in the state whose governor was D. Patrick? ### answer: SELECT senior_us_senator FROM table_21531764_2 WHERE governor = "D. Patrick" ### context: CREATE TABLE table_21531764_2 (senior_us_senator VARCHAR, governor VARCHAR) |
### question: What's the lower house majority in the state whose Senior senator is J. Shaheen? ### answer: SELECT lower_house_majority FROM table_21531764_2 WHERE senior_us_senator = "J. Shaheen" ### context: CREATE TABLE table_21531764_2 (lower_house_majority VARCHAR, senior_us_senator VARCHAR) |
### question: Who is every name for time(cet) of 09:58? ### answer: SELECT name FROM table_21536557_2 WHERE time__cet_ = "09:58" ### context: CREATE TABLE table_21536557_2 (name VARCHAR, time__cet_ VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.