Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
37,600 |
<question>: How many solar eclipse during June 10-11 and march 27-29 is 149? <context>: CREATE TABLE table_25287007_2 (june_10_11 VARCHAR, march_27_29 VARCHAR)
|
SELECT june_10_11 FROM table_25287007_2 WHERE march_27_29 = "149"
|
37,601 |
<question>: How many solar eclipse during august 21-22 and January 15-16 is 141? <context>: CREATE TABLE table_25287007_2 (august_21_22 VARCHAR, january_15_16 VARCHAR)
|
SELECT august_21_22 FROM table_25287007_2 WHERE january_15_16 = "141"
|
37,602 |
<question>: How many solar eclipse during January 15-16 and august 21-22 on august 21, 2017? <context>: CREATE TABLE table_25287007_2 (january_15_16 VARCHAR, august_21_22 VARCHAR)
|
SELECT january_15_16 FROM table_25287007_2 WHERE august_21_22 = "August 21, 2017"
|
37,603 |
<question>: Name the fastest lap for round 14 <context>: CREATE TABLE table_25322130_3 (fastest_lap VARCHAR, round VARCHAR)
|
SELECT COUNT(fastest_lap) FROM table_25322130_3 WHERE round = "14"
|
37,604 |
<question>: Name the winning driver for 20 april <context>: CREATE TABLE table_25322130_3 (winning_driver VARCHAR, date VARCHAR)
|
SELECT winning_driver FROM table_25322130_3 WHERE date = "20 April"
|
37,605 |
<question>: Name the circuit for 13 july <context>: CREATE TABLE table_25322130_3 (circuit VARCHAR, date VARCHAR)
|
SELECT circuit FROM table_25322130_3 WHERE date = "13 July"
|
37,606 |
<question>: Name the fastest lap for round 3 <context>: CREATE TABLE table_25322130_3 (fastest_lap VARCHAR, round VARCHAR)
|
SELECT fastest_lap FROM table_25322130_3 WHERE round = "3"
|
37,607 |
<question>: Name the fastest lap for piquet sports and silverstone <context>: CREATE TABLE table_25322130_3 (fastest_lap VARCHAR, winning_team VARCHAR, circuit VARCHAR)
|
SELECT fastest_lap FROM table_25322130_3 WHERE winning_team = "Piquet Sports" AND circuit = "Silverstone"
|
37,608 |
<question>: How many laps where the position is 10th and the races is smaller than 9.0? <context>: CREATE TABLE table_25318033_1 (f_laps VARCHAR, position VARCHAR, races VARCHAR)
|
SELECT COUNT(f_laps) FROM table_25318033_1 WHERE position = "10th" AND races < 9.0
|
37,609 |
<question>: What is the lowest amount of races? <context>: CREATE TABLE table_25318033_1 (races INTEGER)
|
SELECT MIN(races) FROM table_25318033_1
|
37,610 |
<question>: Which races have 137 points? <context>: CREATE TABLE table_25318033_1 (races VARCHAR, points VARCHAR)
|
SELECT races FROM table_25318033_1 WHERE points = "137"
|
37,611 |
<question>: What team has 137 points? <context>: CREATE TABLE table_25318033_1 (team VARCHAR, points VARCHAR)
|
SELECT team FROM table_25318033_1 WHERE points = "137"
|
37,612 |
<question>: How many points were scored when the podiums is 0 and position is 10th? <context>: CREATE TABLE table_25318033_1 (points VARCHAR, podiums VARCHAR, position VARCHAR)
|
SELECT points FROM table_25318033_1 WHERE podiums = 0 AND position = "10th"
|
37,613 |
<question>: What is the rate limit when the desired rate change (%) is +40.4? <context>: CREATE TABLE table_25316812_1 (rate_limit__p_ VARCHAR, desired_rate_change___percentage_ VARCHAR)
|
SELECT rate_limit__p_ FROM table_25316812_1 WHERE desired_rate_change___percentage_ = "+40.4"
|
37,614 |
<question>: What is the rate limit when budget plans (£m) is limit agreed? <context>: CREATE TABLE table_25316812_1 (rate_limit__p_ VARCHAR, budget_plans__£m_ VARCHAR)
|
SELECT rate_limit__p_ FROM table_25316812_1 WHERE budget_plans__£m_ = "limit agreed"
|
37,615 |
<question>: What is the rate limit when the desired rate (p) is 162? <context>: CREATE TABLE table_25316812_1 (rate_limit__p_ VARCHAR, desired_rate__p_ VARCHAR)
|
SELECT rate_limit__p_ FROM table_25316812_1 WHERE desired_rate__p_ = "162"
|
37,616 |
<question>: What is the rate change % when the rate limit is 82.86? <context>: CREATE TABLE table_25316812_1 (rate_change___percentage_ VARCHAR, rate_limit__p_ VARCHAR)
|
SELECT rate_change___percentage_ FROM table_25316812_1 WHERE rate_limit__p_ = "82.86"
|
37,617 |
<question>: What is the desired rate when the rate limit (p) is 50.33? <context>: CREATE TABLE table_25316812_1 (desired_rate__p_ VARCHAR, rate_limit__p_ VARCHAR)
|
SELECT desired_rate__p_ FROM table_25316812_1 WHERE rate_limit__p_ = "50.33"
|
37,618 |
<question>: What is the authority who set the budget limit (£m) at 900? <context>: CREATE TABLE table_25316812_1 (authority VARCHAR, budget_limit__£m_ VARCHAR)
|
SELECT authority FROM table_25316812_1 WHERE budget_limit__£m_ = "900"
|
37,619 |
<question>: What was the highest share? <context>: CREATE TABLE table_25304789_1 (share INTEGER)
|
SELECT MAX(share) FROM table_25304789_1
|
37,620 |
<question>: What was the final score of the game with 7523 in attendance? <context>: CREATE TABLE table_25331766_3 (final_score VARCHAR, attendance VARCHAR)
|
SELECT final_score FROM table_25331766_3 WHERE attendance = 7523
|
37,621 |
<question>: What is the lowest attendance? <context>: CREATE TABLE table_25331766_3 (attendance INTEGER)
|
SELECT MIN(attendance) FROM table_25331766_3
|
37,622 |
<question>: If the rebounds are at 87, what are the amount of steals? <context>: CREATE TABLE table_25342713_5 (steals VARCHAR, rebounds VARCHAR)
|
SELECT steals FROM table_25342713_5 WHERE rebounds = 87
|
37,623 |
<question>: How many players 89 points? <context>: CREATE TABLE table_25342713_5 (blocks VARCHAR, points VARCHAR)
|
SELECT COUNT(blocks) FROM table_25342713_5 WHERE points = 89
|
37,624 |
<question>: If the Steals are 20, what are the blocks? <context>: CREATE TABLE table_25342713_5 (blocks INTEGER, steals VARCHAR)
|
SELECT MAX(blocks) FROM table_25342713_5 WHERE steals = 20
|
37,625 |
<question>: How many millions of viewers did the episode directed by Jeffrey Blitz have? <context>: CREATE TABLE table_25341765_1 (us_viewers__million_ VARCHAR, directed_by VARCHAR)
|
SELECT us_viewers__million_ FROM table_25341765_1 WHERE directed_by = "Jeffrey Blitz"
|
37,626 |
<question>: Who directed the episode that had 5.92 million viewers? <context>: CREATE TABLE table_25341765_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
|
SELECT directed_by FROM table_25341765_1 WHERE us_viewers__million_ = "5.92"
|
37,627 |
<question>: What was the name of the episode Alan Yang wrote? <context>: CREATE TABLE table_25341765_1 (title VARCHAR, written_by VARCHAR)
|
SELECT title FROM table_25341765_1 WHERE written_by = "Alan Yang"
|
37,628 |
<question>: How many episodes were directed by Michael McCullers? <context>: CREATE TABLE table_25341765_1 (original_air_date VARCHAR, directed_by VARCHAR)
|
SELECT COUNT(original_air_date) FROM table_25341765_1 WHERE directed_by = "Michael McCullers"
|
37,629 |
<question>: When 3rd is the position what is the lowest amount of points? <context>: CREATE TABLE table_25352318_1 (points INTEGER, position VARCHAR)
|
SELECT MIN(points) FROM table_25352318_1 WHERE position = "3rd"
|
37,630 |
<question>: When art grand prix is the team and 2010 is the season how many wins are there? <context>: CREATE TABLE table_25352318_1 (wins VARCHAR, season VARCHAR, team VARCHAR)
|
SELECT COUNT(wins) FROM table_25352318_1 WHERE season = 2010 AND team = "ART Grand Prix"
|
37,631 |
<question>: When 7th is the position and 15 is the race who is the team? <context>: CREATE TABLE table_25352318_1 (team VARCHAR, races VARCHAR, position VARCHAR)
|
SELECT team FROM table_25352318_1 WHERE races = 15 AND position = "7th"
|
37,632 |
<question>: What is the lowest overall amount of poles? <context>: CREATE TABLE table_25352318_1 (poles INTEGER)
|
SELECT MIN(poles) FROM table_25352318_1
|
37,633 |
<question>: When racing engineering is the team and 2012 is the team what is the position? <context>: CREATE TABLE table_25352318_1 (position VARCHAR, season VARCHAR, team VARCHAR)
|
SELECT position FROM table_25352318_1 WHERE season = 2012 AND team = "Racing Engineering"
|
37,634 |
<question>: Is the facility opened in 1968 a major facility? <context>: CREATE TABLE table_25346763_1 (Major VARCHAR, year_opened VARCHAR)
|
SELECT Major AS facility FROM table_25346763_1 WHERE year_opened = "1968"
|
37,635 |
<question>: What is the custody level of the facility in Shelton? <context>: CREATE TABLE table_25346763_1 (custody_level_s_ VARCHAR, location VARCHAR)
|
SELECT custody_level_s_ FROM table_25346763_1 WHERE location = "Shelton"
|
37,636 |
<question>: Is the Washington Corrections Center for Women (WCCW) a major facility? <context>: CREATE TABLE table_25346763_1 (Major VARCHAR, facility VARCHAR)
|
SELECT Major AS facility FROM table_25346763_1 WHERE facility = "Washington Corrections Center for Women (WCCW)"
|
37,637 |
<question>: What is the capacity for a facility opened in 1956? <context>: CREATE TABLE table_25346763_1 (capacity VARCHAR, year_opened VARCHAR)
|
SELECT COUNT(capacity) FROM table_25346763_1 WHERE year_opened = "1956"
|
37,638 |
<question>: What facility opening in 1954? <context>: CREATE TABLE table_25346763_1 (facility VARCHAR, year_opened VARCHAR)
|
SELECT facility FROM table_25346763_1 WHERE year_opened = "1954"
|
37,639 |
<question>: Which player had 6 assists? <context>: CREATE TABLE table_25353861_5 (player VARCHAR, assists VARCHAR)
|
SELECT player FROM table_25353861_5 WHERE assists = 6
|
37,640 |
<question>: What is the fewest steals any player had? <context>: CREATE TABLE table_25353861_5 (steals INTEGER)
|
SELECT MIN(steals) FROM table_25353861_5
|
37,641 |
<question>: How many steals did Kelly Miller have? <context>: CREATE TABLE table_25353861_5 (steals INTEGER, player VARCHAR)
|
SELECT MIN(steals) FROM table_25353861_5 WHERE player = "Kelly Miller"
|
37,642 |
<question>: Which player had 9 blocks? <context>: CREATE TABLE table_25353861_5 (player VARCHAR, blocks VARCHAR)
|
SELECT player FROM table_25353861_5 WHERE blocks = 9
|
37,643 |
<question>: How many rebounds did Tammy Sutton-Brown have? <context>: CREATE TABLE table_25353861_5 (rebounds VARCHAR, player VARCHAR)
|
SELECT rebounds FROM table_25353861_5 WHERE player = "Tammy Sutton-Brown"
|
37,644 |
<question>: What was the science score in the year there was a social studies score of 93.56? <context>: CREATE TABLE table_2534578_1 (science VARCHAR, social_studies VARCHAR)
|
SELECT science FROM table_2534578_1 WHERE social_studies = "93.56"
|
37,645 |
<question>: How many years did the school have a mathetmatics score of 98.02? <context>: CREATE TABLE table_2534578_1 (science VARCHAR, mathematics VARCHAR)
|
SELECT COUNT(science) FROM table_2534578_1 WHERE mathematics = "98.02"
|
37,646 |
<question>: What was the reading score in the year the science score was 96.13? <context>: CREATE TABLE table_2534578_1 (reading VARCHAR, science VARCHAR)
|
SELECT reading FROM table_2534578_1 WHERE science = "96.13"
|
37,647 |
<question>: What was the language score when the reading score was 94.47? <context>: CREATE TABLE table_2534578_1 (language VARCHAR, reading VARCHAR)
|
SELECT language FROM table_2534578_1 WHERE reading = "94.47"
|
37,648 |
<question>: How many values for points have Sophia Witherspoon as the player? <context>: CREATE TABLE table_25352324_5 (points VARCHAR, player VARCHAR)
|
SELECT COUNT(points) FROM table_25352324_5 WHERE player = "Sophia Witherspoon"
|
37,649 |
<question>: What is the highest value for points? <context>: CREATE TABLE table_25352324_5 (points INTEGER)
|
SELECT MAX(points) FROM table_25352324_5
|
37,650 |
<question>: What is every value for rebounds when steals is 19? <context>: CREATE TABLE table_25352324_5 (rebounds VARCHAR, steals VARCHAR)
|
SELECT rebounds FROM table_25352324_5 WHERE steals = 19
|
37,651 |
<question>: What is every value for points if rebounds is 6 and blocks is 0? <context>: CREATE TABLE table_25352324_5 (points VARCHAR, rebounds VARCHAR, blocks VARCHAR)
|
SELECT points FROM table_25352324_5 WHERE rebounds = 6 AND blocks = 0
|
37,652 |
<question>: What is every entry for assists if the player is Lynn Pride? <context>: CREATE TABLE table_25352324_5 (assists VARCHAR, player VARCHAR)
|
SELECT assists FROM table_25352324_5 WHERE player = "Lynn Pride"
|
37,653 |
<question>: What is the air date of the episode written by Itamar Moses? <context>: CREATE TABLE table_25356350_3 (original_air_date VARCHAR, written_by VARCHAR)
|
SELECT original_air_date FROM table_25356350_3 WHERE written_by = "Itamar Moses"
|
37,654 |
<question>: What is the june 10-11 when august 21-22 is august 21, 2017? <context>: CREATE TABLE table_25355392_2 (june_10_11 VARCHAR, august_21_22 VARCHAR)
|
SELECT june_10_11 FROM table_25355392_2 WHERE august_21_22 = "August 21, 2017"
|
37,655 |
<question>: how many times is march 27-29 is 129? <context>: CREATE TABLE table_25355392_2 (november_3 VARCHAR, march_27_29 VARCHAR)
|
SELECT COUNT(november_3) FROM table_25355392_2 WHERE march_27_29 = "129"
|
37,656 |
<question>: what is june 10-11 when march 27-29 is 149? <context>: CREATE TABLE table_25355392_2 (june_10_11 VARCHAR, march_27_29 VARCHAR)
|
SELECT june_10_11 FROM table_25355392_2 WHERE march_27_29 = "149"
|
37,657 |
<question>: what is november 3 when june 10-11 is june 10, 1964? <context>: CREATE TABLE table_25355392_2 (november_3 VARCHAR, june_10_11 VARCHAR)
|
SELECT november_3 FROM table_25355392_2 WHERE june_10_11 = "June 10, 1964"
|
37,658 |
<question>: what is march 27-29 when november 3 is 133? <context>: CREATE TABLE table_25355392_2 (march_27_29 VARCHAR, november_3 VARCHAR)
|
SELECT march_27_29 FROM table_25355392_2 WHERE november_3 = "133"
|
37,659 |
<question>: What is january 15-16 when november 3 is 153? <context>: CREATE TABLE table_25355392_2 (january_15_16 VARCHAR, november_3 VARCHAR)
|
SELECT january_15_16 FROM table_25355392_2 WHERE november_3 = "153"
|
37,660 |
<question>: january 15-16 when august 21-22 is august 22, 1979? <context>: CREATE TABLE table_25355501_2 (january_15_16 VARCHAR, august_21_22 VARCHAR)
|
SELECT january_15_16 FROM table_25355501_2 WHERE august_21_22 = "August 22, 1979"
|
37,661 |
<question>: How many entries are shown for november 3 when january 15-16 is 141? <context>: CREATE TABLE table_25355501_2 (november_3 VARCHAR, january_15_16 VARCHAR)
|
SELECT COUNT(november_3) FROM table_25355501_2 WHERE january_15_16 = "141"
|
37,662 |
<question>: march 27-29 where june 10-11 is 127? <context>: CREATE TABLE table_25355501_2 (march_27_29 VARCHAR, june_10_11 VARCHAR)
|
SELECT march_27_29 FROM table_25355501_2 WHERE june_10_11 = "127"
|
37,663 |
<question>: june 10-11 when november 3 is 133? <context>: CREATE TABLE table_25355501_2 (june_10_11 VARCHAR, november_3 VARCHAR)
|
SELECT june_10_11 FROM table_25355501_2 WHERE november_3 = "133"
|
37,664 |
<question>: june 10-11 when january 15-16 is january 15, 1991? <context>: CREATE TABLE table_25355501_2 (june_10_11 VARCHAR, january_15_16 VARCHAR)
|
SELECT june_10_11 FROM table_25355501_2 WHERE january_15_16 = "January 15, 1991"
|
37,665 |
<question>: What is shown for november 3 when august 21-22 is august 22, 1998? <context>: CREATE TABLE table_25355501_2 (november_3 VARCHAR, august_21_22 VARCHAR)
|
SELECT november_3 FROM table_25355501_2 WHERE august_21_22 = "August 22, 1998"
|
37,666 |
<question>: Name the number of teams for 11th position september 10 <context>: CREATE TABLE table_25361570_2 (team VARCHAR, position_in_table VARCHAR, date_of_appointment VARCHAR)
|
SELECT COUNT(team) FROM table_25361570_2 WHERE position_in_table = "11th" AND date_of_appointment = "September 10"
|
37,667 |
<question>: Name the replaced by for august 9 <context>: CREATE TABLE table_25361570_2 (replaced_by VARCHAR, date_of_vacancy VARCHAR, date_of_appointment VARCHAR)
|
SELECT replaced_by FROM table_25361570_2 WHERE date_of_vacancy = "August 9" AND date_of_appointment = "August 9"
|
37,668 |
<question>: Name the most number for charvez davis <context>: CREATE TABLE table_25360865_1 (_number INTEGER, name VARCHAR)
|
SELECT MAX(_number) FROM table_25360865_1 WHERE name = "Charvez Davis"
|
37,669 |
<question>: Name the most height <context>: CREATE TABLE table_25360865_1 (weight INTEGER)
|
SELECT MAX(weight) FROM table_25360865_1
|
37,670 |
<question>: Name the number of home town for number being 32 <context>: CREATE TABLE table_25360865_1 (home_town VARCHAR, _number VARCHAR)
|
SELECT COUNT(home_town) FROM table_25360865_1 WHERE _number = 32
|
37,671 |
<question>: Name the total number of height for number 32 <context>: CREATE TABLE table_25360865_1 (height VARCHAR, _number VARCHAR)
|
SELECT COUNT(height) FROM table_25360865_1 WHERE _number = 32
|
37,672 |
<question>: Name the number for florida air academy <context>: CREATE TABLE table_25360865_1 (_number VARCHAR, last_school VARCHAR)
|
SELECT _number FROM table_25360865_1 WHERE last_school = "Florida Air Academy"
|
37,673 |
<question>: Name the height for demetrius jemison <context>: CREATE TABLE table_25360865_1 (height VARCHAR, name VARCHAR)
|
SELECT height FROM table_25360865_1 WHERE name = "Demetrius Jemison"
|
37,674 |
<question>: How many wins did Canterbury Wizards have? <context>: CREATE TABLE table_25368177_1 (won INTEGER, team VARCHAR)
|
SELECT MAX(won) FROM table_25368177_1 WHERE team = "Canterbury Wizards"
|
37,675 |
<question>: What team had a net run rate of 0.134? <context>: CREATE TABLE table_25368177_1 (team VARCHAR, net_run_rate VARCHAR)
|
SELECT team FROM table_25368177_1 WHERE net_run_rate = "0.134"
|
37,676 |
<question>: What's the largest number of abandoned games by any of the teams? <context>: CREATE TABLE table_25368177_1 (abandoned INTEGER)
|
SELECT MAX(abandoned) FROM table_25368177_1
|
37,677 |
<question>: How many different net run rates did the team with 19 total points have? <context>: CREATE TABLE table_25368177_1 (net_run_rate VARCHAR, total_points VARCHAR)
|
SELECT COUNT(net_run_rate) FROM table_25368177_1 WHERE total_points = 19
|
37,678 |
<question>: What was the team that scored 56 points?Qh <context>: CREATE TABLE table_25369796_1 (team VARCHAR, points VARCHAR)
|
SELECT team FROM table_25369796_1 WHERE points = "56"
|
37,679 |
<question>: What was the earliest season where a team got a 29th position? <context>: CREATE TABLE table_25369796_1 (season INTEGER, position VARCHAR)
|
SELECT MIN(season) FROM table_25369796_1 WHERE position = "29th"
|
37,680 |
<question>: What was the recorded flaps of HBR Motorsport team? <context>: CREATE TABLE table_25369796_1 (f_laps VARCHAR, team VARCHAR)
|
SELECT f_laps FROM table_25369796_1 WHERE team = "HBR Motorsport"
|
37,681 |
<question>: What was the series where a team scored 56 points? <context>: CREATE TABLE table_25369796_1 (series VARCHAR, points VARCHAR)
|
SELECT series FROM table_25369796_1 WHERE points = "56"
|
37,682 |
<question>: How many team position scored 56 points? <context>: CREATE TABLE table_25369796_1 (position VARCHAR, points VARCHAR)
|
SELECT COUNT(position) FROM table_25369796_1 WHERE points = "56"
|
37,683 |
<question>: On what dates was the final score of the game L 14–24? <context>: CREATE TABLE table_25380472_2 (date VARCHAR, final_score VARCHAR)
|
SELECT date FROM table_25380472_2 WHERE final_score = "L 14–24"
|
37,684 |
<question>: How many game sites are there where the team record is 1–7? <context>: CREATE TABLE table_25380472_2 (game_site VARCHAR, team_record VARCHAR)
|
SELECT COUNT(game_site) FROM table_25380472_2 WHERE team_record = "1–7"
|
37,685 |
<question>: On week 7, what were the opponents? <context>: CREATE TABLE table_25380472_2 (opponent VARCHAR, week VARCHAR)
|
SELECT opponent FROM table_25380472_2 WHERE week = 7
|
37,686 |
<question>: On what game sites are there where the team record is 0–5? <context>: CREATE TABLE table_25380472_2 (game_site VARCHAR, team_record VARCHAR)
|
SELECT game_site FROM table_25380472_2 WHERE team_record = "0–5"
|
37,687 |
<question>: What game sites are where the team record is 1–6? <context>: CREATE TABLE table_25380472_2 (game_site VARCHAR, team_record VARCHAR)
|
SELECT game_site FROM table_25380472_2 WHERE team_record = "1–6"
|
37,688 |
<question>: In game site AOL Arena, who are all the opponents? <context>: CREATE TABLE table_25380472_2 (opponent VARCHAR, game_site VARCHAR)
|
SELECT opponent FROM table_25380472_2 WHERE game_site = "AOL Arena"
|
37,689 |
<question>: What organization had the founding date of 1998-11-08? <context>: CREATE TABLE table_2538117_12 (organization VARCHAR, founding_date VARCHAR)
|
SELECT organization FROM table_2538117_12 WHERE founding_date = "1998-11-08"
|
37,690 |
<question>: How many letters were given to the organization with a founding date of 1997-12-12? <context>: CREATE TABLE table_2538117_12 (letters VARCHAR, founding_date VARCHAR)
|
SELECT COUNT(letters) FROM table_2538117_12 WHERE founding_date = "1997-12-12"
|
37,691 |
<question>: What is the song choice where the original artist is Gino Paoli? <context>: CREATE TABLE table_25374338_1 (song_choice VARCHAR, original_artist VARCHAR)
|
SELECT COUNT(song_choice) FROM table_25374338_1 WHERE original_artist = "Gino Paoli"
|
37,692 |
<question>: What is the theme where the original artist is Noemi feat. Fiorella Mannoia? <context>: CREATE TABLE table_25374338_1 (theme VARCHAR, original_artist VARCHAR)
|
SELECT theme FROM table_25374338_1 WHERE original_artist = "Noemi feat. Fiorella Mannoia"
|
37,693 |
<question>: What is the song choice where the episode is Live Show 1? <context>: CREATE TABLE table_25374338_1 (song_choice VARCHAR, episode VARCHAR)
|
SELECT song_choice FROM table_25374338_1 WHERE episode = "Live Show 1"
|
37,694 |
<question>: What is the result where the original artist is Prince and the Revolution? <context>: CREATE TABLE table_25374338_1 (result VARCHAR, original_artist VARCHAR)
|
SELECT result FROM table_25374338_1 WHERE original_artist = "Prince and The Revolution"
|
37,695 |
<question>: What is the theme where the original artist is AC/DC? <context>: CREATE TABLE table_25374338_1 (theme VARCHAR, original_artist VARCHAR)
|
SELECT theme FROM table_25374338_1 WHERE original_artist = "AC/DC"
|
37,696 |
<question>: what type of organization is sigma phi omega? <context>: CREATE TABLE table_2538117_2 (type VARCHAR, organization VARCHAR)
|
SELECT type FROM table_2538117_2 WHERE organization = "Sigma Phi Omega"
|
37,697 |
<question>: how many types of organization were founded in san diego state university? <context>: CREATE TABLE table_2538117_2 (type VARCHAR, founding_university VARCHAR)
|
SELECT COUNT(type) FROM table_2538117_2 WHERE founding_university = "San Diego State University"
|
37,698 |
<question>: Name the season for position 4th <context>: CREATE TABLE table_25375093_1 (season VARCHAR, position VARCHAR)
|
SELECT COUNT(season) FROM table_25375093_1 WHERE position = "4th"
|
37,699 |
<question>: Name the least f/laps <context>: CREATE TABLE table_25375093_1 (f_laps INTEGER)
|
SELECT MIN(f_laps) FROM table_25375093_1
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.