Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
5,900 |
<question>: What school location had an enrollment of 12400? <context>: CREATE TABLE table_16432543_3 (location VARCHAR, enrollment VARCHAR)
|
SELECT location FROM table_16432543_3 WHERE enrollment = 12400
|
5,901 |
<question>: How many teams were established at University of Maryland? <context>: CREATE TABLE table_16432543_3 (established VARCHAR, institution VARCHAR)
|
SELECT COUNT(established) FROM table_16432543_3 WHERE institution = "University of Maryland"
|
5,902 |
<question>: what is the enrollment for the Cavaliers? <context>: CREATE TABLE table_16432543_3 (enrollment INTEGER, nickname VARCHAR)
|
SELECT MAX(enrollment) FROM table_16432543_3 WHERE nickname = "Cavaliers"
|
5,903 |
<question>: What is the smallest number of enrolled students? <context>: CREATE TABLE table_16432543_3 (enrollment INTEGER)
|
SELECT MIN(enrollment) FROM table_16432543_3
|
5,904 |
<question>: What is the debut album for the artist with the winning song kemenangan hati? <context>: CREATE TABLE table_1646960_3 (debut_album VARCHAR, winning_song VARCHAR)
|
SELECT debut_album FROM table_1646960_3 WHERE winning_song = "Kemenangan Hati"
|
5,905 |
<question>: How many winners had a debut album titled "mike"? <context>: CREATE TABLE table_1646960_3 (winner VARCHAR, debut_album VARCHAR)
|
SELECT winner FROM table_1646960_3 WHERE debut_album = "Mike"
|
5,906 |
<question>: What is the winning song for the artist with a debut album "the winner"? <context>: CREATE TABLE table_1646960_3 (winning_song VARCHAR, debut_album VARCHAR)
|
SELECT winning_song FROM table_1646960_3 WHERE debut_album = "The winner"
|
5,907 |
<question>: What is the winning song for the artist with a debut album "mike"? <context>: CREATE TABLE table_1646960_3 (winning_song VARCHAR, debut_album VARCHAR)
|
SELECT winning_song FROM table_1646960_3 WHERE debut_album = "Mike"
|
5,908 |
<question>: How many debut albums did mike mohede have? <context>: CREATE TABLE table_1646960_3 (debut_album VARCHAR, winner VARCHAR)
|
SELECT COUNT(debut_album) FROM table_1646960_3 WHERE winner = "Mike Mohede"
|
5,909 |
<question>: What is the minimum of 25 to 29? <context>: CREATE TABLE table_16457934_5 (Id VARCHAR)
|
SELECT MIN(25 AS _to_29) FROM table_16457934_5
|
5,910 |
<question>: What is the minimum if 40 to 44? <context>: CREATE TABLE table_16457934_5 (Id VARCHAR)
|
SELECT MIN(40 AS _to_44) FROM table_16457934_5
|
5,911 |
<question>: What vfl club(s) did players who played 23 cfl games play for? <context>: CREATE TABLE table_16527640_2 (vfl_club_s_ VARCHAR, vfl_games VARCHAR)
|
SELECT vfl_club_s_ FROM table_16527640_2 WHERE vfl_games = 23
|
5,912 |
<question>: What locations did sid o'neill play football? <context>: CREATE TABLE table_16527640_2 (location VARCHAR, player VARCHAR)
|
SELECT location FROM table_16527640_2 WHERE player = "Sid O'Neill"
|
5,913 |
<question>: What vfl club(s) for players ranked sergeant, 8th brigade australian field artillery at time of death? <context>: CREATE TABLE table_16527640_2 (vfl_club_s_ VARCHAR, rank_held_at_time_of_death VARCHAR)
|
SELECT vfl_club_s_ FROM table_16527640_2 WHERE rank_held_at_time_of_death = "Sergeant, 8th Brigade Australian Field Artillery"
|
5,914 |
<question>: How many players named paddy rowan? <context>: CREATE TABLE table_16527640_2 (rank_held_at_time_of_death VARCHAR, player VARCHAR)
|
SELECT COUNT(rank_held_at_time_of_death) FROM table_16527640_2 WHERE player = "Paddy Rowan"
|
5,915 |
<question>: How many numbers were recorde under 50s when there was 2 matches? <context>: CREATE TABLE table_16570286_2 (matches VARCHAR)
|
SELECT COUNT(50 AS s) FROM table_16570286_2 WHERE matches = 2
|
5,916 |
<question>: What was the score when Donald Bradman in 9 innings? <context>: CREATE TABLE table_16570286_2 (highest_score VARCHAR, innings VARCHAR, player VARCHAR)
|
SELECT highest_score FROM table_16570286_2 WHERE innings = 9 AND player = "Donald Bradman"
|
5,917 |
<question>: What is the highest number of matches? <context>: CREATE TABLE table_16570286_2 (matches INTEGER)
|
SELECT MAX(matches) FROM table_16570286_2
|
5,918 |
<question>: How many numbers were recorded under matches with Arthur Morris? <context>: CREATE TABLE table_16570286_2 (matches VARCHAR, player VARCHAR)
|
SELECT COUNT(matches) FROM table_16570286_2 WHERE player = "Arthur Morris"
|
5,919 |
<question>: How many teams were there with a high score of 143? <context>: CREATE TABLE table_16570286_2 (team VARCHAR, highest_score VARCHAR)
|
SELECT COUNT(team) FROM table_16570286_2 WHERE highest_score = "143"
|
5,920 |
<question>: How many titles does Episode 2 have <context>: CREATE TABLE table_165732_2 (title VARCHAR, episode__number VARCHAR)
|
SELECT COUNT(title) FROM table_165732_2 WHERE episode__number = 2
|
5,921 |
<question>: What is the title of Episode #2 <context>: CREATE TABLE table_165732_2 (title VARCHAR, episode__number VARCHAR)
|
SELECT title FROM table_165732_2 WHERE episode__number = 2
|
5,922 |
<question>: How many directors did Episode #3 have <context>: CREATE TABLE table_165732_2 (directed_by VARCHAR, episode__number VARCHAR)
|
SELECT COUNT(directed_by) FROM table_165732_2 WHERE episode__number = 3
|
5,923 |
<question>: What position is the player drafted with pick 34? <context>: CREATE TABLE table_16575609_5 (position VARCHAR, pick__number VARCHAR)
|
SELECT position FROM table_16575609_5 WHERE pick__number = 34
|
5,924 |
<question>: How many colleges did the player drafted at 36 attend? <context>: CREATE TABLE table_16575609_5 (college VARCHAR, pick__number VARCHAR)
|
SELECT COUNT(college) FROM table_16575609_5 WHERE pick__number = 36
|
5,925 |
<question>: How many colleges did Jon Gott attend? <context>: CREATE TABLE table_16575609_5 (college VARCHAR, player VARCHAR)
|
SELECT COUNT(college) FROM table_16575609_5 WHERE player = "Jon Gott"
|
5,926 |
<question>: Where did Dante Luciani attend college? <context>: CREATE TABLE table_16575609_5 (college VARCHAR, player VARCHAR)
|
SELECT college FROM table_16575609_5 WHERE player = "Dante Luciani"
|
5,927 |
<question>: What teak was Brady Browne drafted onto? <context>: CREATE TABLE table_16575609_5 (cfl_team VARCHAR, player VARCHAR)
|
SELECT cfl_team FROM table_16575609_5 WHERE player = "Brady Browne"
|
5,928 |
<question>: Who was the writer of the episode number in series 4? <context>: CREATE TABLE table_16581695_2 (written_by VARCHAR, no_in_series VARCHAR)
|
SELECT written_by FROM table_16581695_2 WHERE no_in_series = "4"
|
5,929 |
<question>: What is the original air date for the episode written by Bob Goodman? <context>: CREATE TABLE table_16581695_2 (original_airdate VARCHAR, written_by VARCHAR)
|
SELECT original_airdate FROM table_16581695_2 WHERE written_by = "Bob Goodman"
|
5,930 |
<question>: Name the number air date for 14.20 us viewers <context>: CREATE TABLE table_16617011_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)
|
SELECT COUNT(original_air_date) FROM table_16617011_1 WHERE us_viewers__millions_ = "14.20"
|
5,931 |
<question>: Name the directed by for 15.15 viewers <context>: CREATE TABLE table_16617011_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)
|
SELECT directed_by FROM table_16617011_1 WHERE us_viewers__millions_ = "15.15"
|
5,932 |
<question>: Name the number of giants points for opponents being 31 <context>: CREATE TABLE table_16661199_2 (giants_points VARCHAR, opponents VARCHAR)
|
SELECT COUNT(giants_points) FROM table_16661199_2 WHERE opponents = 31
|
5,933 |
<question>: Name the most attendance for giants points of 10 <context>: CREATE TABLE table_16661199_2 (attendance INTEGER, giants_points VARCHAR)
|
SELECT MAX(attendance) FROM table_16661199_2 WHERE giants_points = 10
|
5,934 |
<question>: What is the distance for jockey Kent Desormeaux on 6/7/08? <context>: CREATE TABLE table_16689920_1 (distance VARCHAR, jockey VARCHAR, date VARCHAR)
|
SELECT distance FROM table_16689920_1 WHERE jockey = "Kent Desormeaux" AND date = "6/7/08"
|
5,935 |
<question>: At 1:48.16 what was the number of track time? <context>: CREATE TABLE table_16689920_1 (track VARCHAR, time VARCHAR)
|
SELECT COUNT(track) FROM table_16689920_1 WHERE time = "1:48.16"
|
5,936 |
<question>: With a date of 8/3/08, what was the length of the victory margin? <context>: CREATE TABLE table_16689920_1 (victory_margin__in_lengths_ VARCHAR, date VARCHAR)
|
SELECT COUNT(victory_margin__in_lengths_) FROM table_16689920_1 WHERE date = "8/3/08"
|
5,937 |
<question>: On what date did the opponents win with 17 points? <context>: CREATE TABLE table_16678052_2 (date VARCHAR, opponents VARCHAR, result VARCHAR)
|
SELECT date FROM table_16678052_2 WHERE opponents = 17 AND result = "Win"
|
5,938 |
<question>: What record was reached when the Eagles played the Phoenix Cardinals? <context>: CREATE TABLE table_16678052_2 (record VARCHAR, opponent VARCHAR)
|
SELECT record FROM table_16678052_2 WHERE opponent = "Phoenix Cardinals"
|
5,939 |
<question>: How many times in 1984 did the Falcons play the Los Angeles Rams? <context>: CREATE TABLE table_16710742_3 (opponents VARCHAR, opponent VARCHAR)
|
SELECT COUNT(opponents) FROM table_16710742_3 WHERE opponent = "Los Angeles Rams"
|
5,940 |
<question>: In 1984, Did the Falcons have a win or loss against the New Orleans Saints? <context>: CREATE TABLE table_16710742_3 (result VARCHAR, opponent VARCHAR)
|
SELECT result FROM table_16710742_3 WHERE opponent = "New Orleans Saints"
|
5,941 |
<question>: Did the Falcons have a win or loss in the game when their record was 3-7? <context>: CREATE TABLE table_16710742_3 (result VARCHAR, record VARCHAR)
|
SELECT result FROM table_16710742_3 WHERE record = "3-7"
|
5,942 |
<question>: what is the attendance where the game site is kingdome? <context>: CREATE TABLE table_16729076_1 (attendance INTEGER, game_site VARCHAR)
|
SELECT MIN(attendance) FROM table_16729076_1 WHERE game_site = "Kingdome"
|
5,943 |
<question>: what date is the opponent is chicago bears? <context>: CREATE TABLE table_16729076_1 (date VARCHAR, opponent VARCHAR)
|
SELECT date FROM table_16729076_1 WHERE opponent = "Chicago Bears"
|
5,944 |
<question>: What team has draft picks from Mississippi? <context>: CREATE TABLE table_16729063_1 (nfl_team VARCHAR, college VARCHAR)
|
SELECT nfl_team FROM table_16729063_1 WHERE college = "Mississippi"
|
5,945 |
<question>: How many positions drafted players from Washington? <context>: CREATE TABLE table_16729063_1 (position VARCHAR, college VARCHAR)
|
SELECT COUNT(position) FROM table_16729063_1 WHERE college = "Washington"
|
5,946 |
<question>: How many draft picks are there at the Defensive End position? <context>: CREATE TABLE table_16729063_1 (pick__number VARCHAR, position VARCHAR)
|
SELECT COUNT(pick__number) FROM table_16729063_1 WHERE position = "Defensive End"
|
5,947 |
<question>: How many draft picks are there at the linebacker position? <context>: CREATE TABLE table_16729063_1 (pick__number VARCHAR, position VARCHAR)
|
SELECT COUNT(pick__number) FROM table_16729063_1 WHERE position = "Linebacker"
|
5,948 |
<question>: What draft pick was Chris Brewer? <context>: CREATE TABLE table_16729063_1 (pick__number INTEGER, player VARCHAR)
|
SELECT MIN(pick__number) FROM table_16729063_1 WHERE player = "Chris Brewer"
|
5,949 |
<question>: How many losses did the Michigan State Spartans have? <context>: CREATE TABLE table_1672976_2 (loss INTEGER, institution VARCHAR)
|
SELECT MAX(loss) FROM table_1672976_2 WHERE institution = "Michigan State Spartans"
|
5,950 |
<question>: How many wins did the Northwestern Wildcats? <context>: CREATE TABLE table_1672976_2 (wins INTEGER, institution VARCHAR)
|
SELECT MAX(wins) FROM table_1672976_2 WHERE institution = "Northwestern Wildcats"
|
5,951 |
<question>: What institution had 6 wins and a current streak of won 2? <context>: CREATE TABLE table_1672976_2 (institution VARCHAR, wins VARCHAR, current_streak VARCHAR)
|
SELECT institution FROM table_1672976_2 WHERE wins = 6 AND current_streak = "Won 2"
|
5,952 |
<question>: Who are all the opponents of Slovakia? <context>: CREATE TABLE table_16741821_9 (opponents VARCHAR, against VARCHAR)
|
SELECT opponents FROM table_16741821_9 WHERE against = "Slovakia"
|
5,953 |
<question>: What is the name of the round against the opponents jesse huta galung peter wessels? <context>: CREATE TABLE table_16741821_9 (round VARCHAR, opponents VARCHAR)
|
SELECT round FROM table_16741821_9 WHERE opponents = "Jesse Huta Galung Peter Wessels"
|
5,954 |
<question>: Are there SPI on the number 7 cylinder? <context>: CREATE TABLE table_16731248_1 (spi VARCHAR, number_on_cyl VARCHAR)
|
SELECT spi FROM table_16731248_1 WHERE number_on_cyl = "7"
|
5,955 |
<question>: What is the minimum number of bypass ports listed? <context>: CREATE TABLE table_16731248_1 (bypass_ports INTEGER)
|
SELECT MIN(bypass_ports) FROM table_16731248_1
|
5,956 |
<question>: Is there a tapered grind on the Surestart engine? <context>: CREATE TABLE table_16731248_1 (tapered_grind VARCHAR, engine VARCHAR)
|
SELECT tapered_grind FROM table_16731248_1 WHERE engine = "SureStart"
|
5,957 |
<question>: How many bypass boosters are there on the engine with slit exhaust ports and SPI is yes? <context>: CREATE TABLE table_16731248_1 (bypass_boosters VARCHAR, spi VARCHAR, exhaust_ports VARCHAR)
|
SELECT bypass_boosters FROM table_16731248_1 WHERE spi = "Yes" AND exhaust_ports = "Slit"
|
5,958 |
<question>: How many times did Saxby Chambliss have a lead margin of 21? <context>: CREATE TABLE table_16751596_16 (republican VARCHAR, lead_margin VARCHAR)
|
SELECT COUNT(republican) AS :_saxby_chambliss FROM table_16751596_16 WHERE lead_margin = 21
|
5,959 |
<question>: Name the least tries for when w is 4 <context>: CREATE TABLE table_16770037_4 (tries_for INTEGER, w VARCHAR)
|
SELECT MIN(tries_for) FROM table_16770037_4 WHERE w = 4
|
5,960 |
<question>: What is the total points when the point difference is +119? <context>: CREATE TABLE table_1676073_13 (points VARCHAR, points_difference VARCHAR)
|
SELECT points FROM table_1676073_13 WHERE points_difference = "+119"
|
5,961 |
<question>: What is the points for when the total points is 6? <context>: CREATE TABLE table_1676073_13 (points_for VARCHAR, points VARCHAR)
|
SELECT points_for FROM table_1676073_13 WHERE points = "6"
|
5,962 |
<question>: What club has 693 points for? <context>: CREATE TABLE table_1676073_13 (club VARCHAR, points_for VARCHAR)
|
SELECT club FROM table_1676073_13 WHERE points_for = "693"
|
5,963 |
<question>: How many wins does the club with 565 points for have? <context>: CREATE TABLE table_1676073_13 (won VARCHAR, points_for VARCHAR)
|
SELECT won FROM table_1676073_13 WHERE points_for = "565"
|
5,964 |
<question>: How many losses does Cross Keys RFC have? <context>: CREATE TABLE table_1676073_13 (lost VARCHAR, club VARCHAR)
|
SELECT COUNT(lost) FROM table_1676073_13 WHERE club = "Cross Keys RFC"
|
5,965 |
<question>: How many losses does the club with 539 points for have? <context>: CREATE TABLE table_1676073_13 (lost VARCHAR, points_for VARCHAR)
|
SELECT lost FROM table_1676073_13 WHERE points_for = "539"
|
5,966 |
<question>: How many hectars of land is in Kaxholmen? <context>: CREATE TABLE table_16796625_1 (land_area__hectares_ VARCHAR, urban_area__locality_ VARCHAR)
|
SELECT land_area__hectares_ FROM table_16796625_1 WHERE urban_area__locality_ = "Kaxholmen"
|
5,967 |
<question>: How many codes have a population of 598 in Vellinge Municipality? <context>: CREATE TABLE table_16796625_1 (code VARCHAR, municipality VARCHAR, population VARCHAR)
|
SELECT COUNT(code) FROM table_16796625_1 WHERE municipality = "Vellinge municipality" AND population = 598
|
5,968 |
<question>: Which urban area has the code 4870? <context>: CREATE TABLE table_16796625_1 (urban_area__locality_ VARCHAR, code VARCHAR)
|
SELECT urban_area__locality_ FROM table_16796625_1 WHERE code = 4870
|
5,969 |
<question>: How many people live in an area of 30.94 hectares? <context>: CREATE TABLE table_16796625_1 (population VARCHAR, land_area__hectares_ VARCHAR)
|
SELECT COUNT(population) FROM table_16796625_1 WHERE land_area__hectares_ = "30.94"
|
5,970 |
<question>: How many hectares of land area is Landsbro? <context>: CREATE TABLE table_16796625_1 (land_area__hectares_ VARCHAR, urban_area__locality_ VARCHAR)
|
SELECT land_area__hectares_ FROM table_16796625_1 WHERE urban_area__locality_ = "Landsbro"
|
5,971 |
<question>: Name the total with one hand clean and jerk is 87.5 and snatch is 87.5 <context>: CREATE TABLE table_16779068_5 (total VARCHAR, snatch VARCHAR, one_hand_clean_ VARCHAR, _jerk VARCHAR)
|
SELECT total FROM table_16779068_5 WHERE one_hand_clean_ & _jerk = "87.5" AND snatch = "87.5"
|
5,972 |
<question>: Name the snatch when body weight is 73.7 <context>: CREATE TABLE table_16779068_5 (snatch VARCHAR, body_weight VARCHAR)
|
SELECT snatch FROM table_16779068_5 WHERE body_weight = "737"
|
5,973 |
<question>: Name the 3 where weightlifter is m. van der goten ( bel ) <context>: CREATE TABLE table_16779068_5 (weightlifter VARCHAR)
|
SELECT 3 FROM table_16779068_5 WHERE weightlifter = "M. Van der Goten ( BEL )"
|
5,974 |
<question>: What are Wells Fargo's assets? <context>: CREATE TABLE table_1682026_2 (assets__billion_$_ VARCHAR, company VARCHAR)
|
SELECT assets__billion_$_ FROM table_1682026_2 WHERE company = "Wells Fargo"
|
5,975 |
<question>: Which company had profits of 26.9? <context>: CREATE TABLE table_1682026_2 (company VARCHAR, profits__billion_$_ VARCHAR)
|
SELECT company FROM table_1682026_2 WHERE profits__billion_$_ = "26.9"
|
5,976 |
<question>: Which company has a market value of 147.4? <context>: CREATE TABLE table_1682026_2 (company VARCHAR, market_value__billion_$_ VARCHAR)
|
SELECT company FROM table_1682026_2 WHERE market_value__billion_$_ = "147.4"
|
5,977 |
<question>: When the assets are 2,550, what is the Market Value? <context>: CREATE TABLE table_1682026_2 (market_value__billion_$_ VARCHAR, assets__billion_$_ VARCHAR)
|
SELECT market_value__billion_$_ FROM table_1682026_2 WHERE assets__billion_$_ = "2,550"
|
5,978 |
<question>: What are the assets for company who's headquarters are located in Brazil? <context>: CREATE TABLE table_1682026_2 (assets__billion_$_ VARCHAR, headquarters VARCHAR)
|
SELECT assets__billion_$_ FROM table_1682026_2 WHERE headquarters = "Brazil"
|
5,979 |
<question>: Name the population density when barangay is tiptip <context>: CREATE TABLE table_1686313_1 (pop_density__per_km²_ VARCHAR, barangay VARCHAR)
|
SELECT pop_density__per_km²_ FROM table_1686313_1 WHERE barangay = "Tiptip"
|
5,980 |
<question>: Name the least population 2007 for barangay is poblacion ii <context>: CREATE TABLE table_1686313_1 (population__2007_ INTEGER, barangay VARCHAR)
|
SELECT MIN(population__2007_) FROM table_1686313_1 WHERE barangay = "Poblacion II"
|
5,981 |
<question>: Name the score for philadelphia flyers <context>: CREATE TABLE table_16864968_9 (score VARCHAR, opponent VARCHAR)
|
SELECT score FROM table_16864968_9 WHERE opponent = "Philadelphia Flyers"
|
5,982 |
<question>: Nam the opponent for prudential center <context>: CREATE TABLE table_16864968_9 (opponent VARCHAR, location VARCHAR)
|
SELECT opponent FROM table_16864968_9 WHERE location = "Prudential Center"
|
5,983 |
<question>: Name the location for 15046 attendance <context>: CREATE TABLE table_16864968_9 (location VARCHAR, attendance VARCHAR)
|
SELECT location FROM table_16864968_9 WHERE attendance = 15046
|
5,984 |
<question>: How many people attended the Edmonton Oilers game? <context>: CREATE TABLE table_16864968_8 (attendance VARCHAR, opponent VARCHAR)
|
SELECT attendance FROM table_16864968_8 WHERE opponent = "Edmonton Oilers"
|
5,985 |
<question>: How many points were made in game 70? <context>: CREATE TABLE table_16864968_8 (points VARCHAR, game VARCHAR)
|
SELECT COUNT(points) FROM table_16864968_8 WHERE game = 70
|
5,986 |
<question>: Who was the opponent in the game where 19041 people attended? <context>: CREATE TABLE table_16864968_8 (opponent VARCHAR, attendance VARCHAR)
|
SELECT opponent FROM table_16864968_8 WHERE attendance = 19041
|
5,987 |
<question>: How many records were made on March 27, 2009? <context>: CREATE TABLE table_16864968_8 (record VARCHAR, date VARCHAR)
|
SELECT COUNT(record) FROM table_16864968_8 WHERE date = "March 27, 2009"
|
5,988 |
<question>: What was the score on March 21, 2009? <context>: CREATE TABLE table_16864968_8 (score VARCHAR, date VARCHAR)
|
SELECT score FROM table_16864968_8 WHERE date = "March 21, 2009"
|
5,989 |
<question>: Name the date for margalita chakhnashvili salome devidze <context>: CREATE TABLE table_16893837_4 (date VARCHAR, opponents VARCHAR)
|
SELECT date FROM table_16893837_4 WHERE opponents = "Margalita Chakhnashvili Salome Devidze"
|
5,990 |
<question>: Name the most points for independiente <context>: CREATE TABLE table_16940409_1 (points INTEGER, team VARCHAR)
|
SELECT MAX(points) FROM table_16940409_1 WHERE team = "Independiente"
|
5,991 |
<question>: Name the original air date of 1/2 in season <context>: CREATE TABLE table_16951593_1 (original_air_date VARCHAR, no_in_season VARCHAR)
|
SELECT original_air_date FROM table_16951593_1 WHERE no_in_season = "1/2"
|
5,992 |
<question>: Name the original air date for number in season being 13 <context>: CREATE TABLE table_16951593_1 (original_air_date VARCHAR, no_in_season VARCHAR)
|
SELECT original_air_date FROM table_16951593_1 WHERE no_in_season = "13"
|
5,993 |
<question>: Namee the title for production code for 4014 <context>: CREATE TABLE table_16951593_1 (title VARCHAR, production_code VARCHAR)
|
SELECT title FROM table_16951593_1 WHERE production_code = "4014"
|
5,994 |
<question>: Name the title for number in season 9 <context>: CREATE TABLE table_16951593_1 (title VARCHAR, no_in_season VARCHAR)
|
SELECT title FROM table_16951593_1 WHERE no_in_season = "9"
|
5,995 |
<question>: Name who wrote the episode that had 7.56 million viewers <context>: CREATE TABLE table_16951593_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)
|
SELECT written_by FROM table_16951593_1 WHERE us_viewers__millions_ = "7.56"
|
5,996 |
<question>: Name the wins for best finish being 2nd <context>: CREATE TABLE table_1697190_1 (wins VARCHAR, best_finish VARCHAR)
|
SELECT wins FROM table_1697190_1 WHERE best_finish = "2nd"
|
5,997 |
<question>: Name the most earnings for money list rank being 143 <context>: CREATE TABLE table_1697190_1 (earnings___ INTEGER, money_list_rank VARCHAR)
|
SELECT MAX(earnings___) AS $__ FROM table_1697190_1 WHERE money_list_rank = 143
|
5,998 |
<question>: Nme the most cuts made for wins being 0 <context>: CREATE TABLE table_1697190_1 (cuts_made INTEGER, wins VARCHAR)
|
SELECT MAX(cuts_made) FROM table_1697190_1 WHERE wins = 0
|
5,999 |
<question>: Name the wins for tournaments played being 14 <context>: CREATE TABLE table_1697190_1 (wins VARCHAR, tournaments_played VARCHAR)
|
SELECT wins FROM table_1697190_1 WHERE tournaments_played = 14
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.