instruction stringlengths 67 299 | input stringlengths 88 550 | output stringlengths 32 484 |
|---|---|---|
Write a SQL query that answers the following question: What is the lowest attendance? | The relevant table was constructed using the following SQL : CREATE TABLE table_25331766_3 (attendance INTEGER) | SELECT MIN(attendance) FROM table_25331766_3 |
Write a SQL query that answers the following question: If the rebounds are at 87, what are the amount of steals? | The relevant table was constructed using the following SQL : CREATE TABLE table_25342713_5 (steals VARCHAR, rebounds VARCHAR) | SELECT steals FROM table_25342713_5 WHERE rebounds = 87 |
Write a SQL query that answers the following question: How many players 89 points? | The relevant table was constructed using the following SQL : CREATE TABLE table_25342713_5 (blocks VARCHAR, points VARCHAR) | SELECT COUNT(blocks) FROM table_25342713_5 WHERE points = 89 |
Write a SQL query that answers the following question: If the Steals are 20, what are the blocks? | The relevant table was constructed using the following SQL : CREATE TABLE table_25342713_5 (blocks INTEGER, steals VARCHAR) | SELECT MAX(blocks) FROM table_25342713_5 WHERE steals = 20 |
Write a SQL query that answers the following question: How many millions of viewers did the episode directed by Jeffrey Blitz have? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: Who directed the episode that had 5.92 million viewers? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: What was the name of the episode Alan Yang wrote? | The relevant table was constructed using the following SQL : CREATE TABLE table_25341765_1 (title VARCHAR, written_by VARCHAR) | SELECT title FROM table_25341765_1 WHERE written_by = "Alan Yang" |
Write a SQL query that answers the following question: How many episodes were directed by Michael McCullers? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: When 3rd is the position what is the lowest amount of points? | The relevant table was constructed using the following SQL : CREATE TABLE table_25352318_1 (points INTEGER, position VARCHAR) | SELECT MIN(points) FROM table_25352318_1 WHERE position = "3rd" |
Write a SQL query that answers the following question: When art grand prix is the team and 2010 is the season how many wins are there? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: When 7th is the position and 15 is the race who is the team? | The relevant table was constructed using the following SQL : CREATE TABLE table_25352318_1 (team VARCHAR, races VARCHAR, position VARCHAR) | SELECT team FROM table_25352318_1 WHERE races = 15 AND position = "7th" |
Write a SQL query that answers the following question: What is the lowest overall amount of poles? | The relevant table was constructed using the following SQL : CREATE TABLE table_25352318_1 (poles INTEGER) | SELECT MIN(poles) FROM table_25352318_1 |
Write a SQL query that answers the following question: When racing engineering is the team and 2012 is the team what is the position? | The relevant table was constructed using the following SQL : CREATE TABLE table_25352318_1 (position VARCHAR, season VARCHAR, team VARCHAR) | SELECT position FROM table_25352318_1 WHERE season = 2012 AND team = "Racing Engineering" |
Write a SQL query that answers the following question: Is the facility opened in 1968 a major facility? | The relevant table was constructed using the following SQL : CREATE TABLE table_25346763_1 (Major VARCHAR, year_opened VARCHAR) | SELECT Major AS facility FROM table_25346763_1 WHERE year_opened = "1968" |
Write a SQL query that answers the following question: What is the custody level of the facility in Shelton? | The relevant table was constructed using the following SQL : CREATE TABLE table_25346763_1 (custody_level_s_ VARCHAR, location VARCHAR) | SELECT custody_level_s_ FROM table_25346763_1 WHERE location = "Shelton" |
Write a SQL query that answers the following question: Is the Washington Corrections Center for Women (WCCW) a major facility? | The relevant table was constructed using the following SQL : 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)" |
Write a SQL query that answers the following question: What is the capacity for a facility opened in 1956? | The relevant table was constructed using the following SQL : CREATE TABLE table_25346763_1 (capacity VARCHAR, year_opened VARCHAR) | SELECT COUNT(capacity) FROM table_25346763_1 WHERE year_opened = "1956" |
Write a SQL query that answers the following question: What facility opening in 1954? | The relevant table was constructed using the following SQL : CREATE TABLE table_25346763_1 (facility VARCHAR, year_opened VARCHAR) | SELECT facility FROM table_25346763_1 WHERE year_opened = "1954" |
Write a SQL query that answers the following question: Which player had 6 assists? | The relevant table was constructed using the following SQL : CREATE TABLE table_25353861_5 (player VARCHAR, assists VARCHAR) | SELECT player FROM table_25353861_5 WHERE assists = 6 |
Write a SQL query that answers the following question: What is the fewest steals any player had? | The relevant table was constructed using the following SQL : CREATE TABLE table_25353861_5 (steals INTEGER) | SELECT MIN(steals) FROM table_25353861_5 |
Write a SQL query that answers the following question: How many steals did Kelly Miller have? | The relevant table was constructed using the following SQL : CREATE TABLE table_25353861_5 (steals INTEGER, player VARCHAR) | SELECT MIN(steals) FROM table_25353861_5 WHERE player = "Kelly Miller" |
Write a SQL query that answers the following question: Which player had 9 blocks? | The relevant table was constructed using the following SQL : CREATE TABLE table_25353861_5 (player VARCHAR, blocks VARCHAR) | SELECT player FROM table_25353861_5 WHERE blocks = 9 |
Write a SQL query that answers the following question: How many rebounds did Tammy Sutton-Brown have? | The relevant table was constructed using the following SQL : CREATE TABLE table_25353861_5 (rebounds VARCHAR, player VARCHAR) | SELECT rebounds FROM table_25353861_5 WHERE player = "Tammy Sutton-Brown" |
Write a SQL query that answers the following question: What was the science score in the year there was a social studies score of 93.56? | The relevant table was constructed using the following SQL : CREATE TABLE table_2534578_1 (science VARCHAR, social_studies VARCHAR) | SELECT science FROM table_2534578_1 WHERE social_studies = "93.56" |
Write a SQL query that answers the following question: How many years did the school have a mathetmatics score of 98.02? | The relevant table was constructed using the following SQL : CREATE TABLE table_2534578_1 (science VARCHAR, mathematics VARCHAR) | SELECT COUNT(science) FROM table_2534578_1 WHERE mathematics = "98.02" |
Write a SQL query that answers the following question: What was the reading score in the year the science score was 96.13? | The relevant table was constructed using the following SQL : CREATE TABLE table_2534578_1 (reading VARCHAR, science VARCHAR) | SELECT reading FROM table_2534578_1 WHERE science = "96.13" |
Write a SQL query that answers the following question: What was the language score when the reading score was 94.47? | The relevant table was constructed using the following SQL : CREATE TABLE table_2534578_1 (language VARCHAR, reading VARCHAR) | SELECT language FROM table_2534578_1 WHERE reading = "94.47" |
Write a SQL query that answers the following question: How many values for points have Sophia Witherspoon as the player? | The relevant table was constructed using the following SQL : CREATE TABLE table_25352324_5 (points VARCHAR, player VARCHAR) | SELECT COUNT(points) FROM table_25352324_5 WHERE player = "Sophia Witherspoon" |
Write a SQL query that answers the following question: What is the highest value for points? | The relevant table was constructed using the following SQL : CREATE TABLE table_25352324_5 (points INTEGER) | SELECT MAX(points) FROM table_25352324_5 |
Write a SQL query that answers the following question: What is every value for rebounds when steals is 19? | The relevant table was constructed using the following SQL : CREATE TABLE table_25352324_5 (rebounds VARCHAR, steals VARCHAR) | SELECT rebounds FROM table_25352324_5 WHERE steals = 19 |
Write a SQL query that answers the following question: What is every value for points if rebounds is 6 and blocks is 0? | The relevant table was constructed using the following SQL : CREATE TABLE table_25352324_5 (points VARCHAR, rebounds VARCHAR, blocks VARCHAR) | SELECT points FROM table_25352324_5 WHERE rebounds = 6 AND blocks = 0 |
Write a SQL query that answers the following question: What is every entry for assists if the player is Lynn Pride? | The relevant table was constructed using the following SQL : CREATE TABLE table_25352324_5 (assists VARCHAR, player VARCHAR) | SELECT assists FROM table_25352324_5 WHERE player = "Lynn Pride" |
Write a SQL query that answers the following question: What is the air date of the episode written by Itamar Moses? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: What is the june 10-11 when august 21-22 is august 21, 2017? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: how many times is march 27-29 is 129? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: what is june 10-11 when march 27-29 is 149? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: what is november 3 when june 10-11 is june 10, 1964? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: what is march 27-29 when november 3 is 133? | The relevant table was constructed using the following SQL : CREATE TABLE table_25355392_2 (march_27_29 VARCHAR, november_3 VARCHAR) | SELECT march_27_29 FROM table_25355392_2 WHERE november_3 = "133" |
Write a SQL query that answers the following question: What is january 15-16 when november 3 is 153? | The relevant table was constructed using the following SQL : CREATE TABLE table_25355392_2 (january_15_16 VARCHAR, november_3 VARCHAR) | SELECT january_15_16 FROM table_25355392_2 WHERE november_3 = "153" |
Write a SQL query that answers the following question: january 15-16 when august 21-22 is august 22, 1979? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: How many entries are shown for november 3 when january 15-16 is 141? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: march 27-29 where june 10-11 is 127? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: june 10-11 when november 3 is 133? | The relevant table was constructed using the following SQL : CREATE TABLE table_25355501_2 (june_10_11 VARCHAR, november_3 VARCHAR) | SELECT june_10_11 FROM table_25355501_2 WHERE november_3 = "133" |
Write a SQL query that answers the following question: june 10-11 when january 15-16 is january 15, 1991? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: What is shown for november 3 when august 21-22 is august 22, 1998? | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: Name the number of teams for 11th position september 10 | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: Name the replaced by for august 9 | The relevant table was constructed using the following SQL : 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" |
Write a SQL query that answers the following question: Name the most number for charvez davis | The relevant table was constructed using the following SQL : CREATE TABLE table_25360865_1 (_number INTEGER, name VARCHAR) | SELECT MAX(_number) FROM table_25360865_1 WHERE name = "Charvez Davis" |
Write a SQL query that answers the following question: Name the most height | The relevant table was constructed using the following SQL : CREATE TABLE table_25360865_1 (weight INTEGER) | SELECT MAX(weight) FROM table_25360865_1 |
Write a SQL query that answers the following question: Name the number of home town for number being 32 | The relevant table was constructed using the following SQL : CREATE TABLE table_25360865_1 (home_town VARCHAR, _number VARCHAR) | SELECT COUNT(home_town) FROM table_25360865_1 WHERE _number = 32 |
Write a SQL query that answers the following question: Name the total number of height for number 32 | The relevant table was constructed using the following SQL : CREATE TABLE table_25360865_1 (height VARCHAR, _number VARCHAR) | SELECT COUNT(height) FROM table_25360865_1 WHERE _number = 32 |
Write a SQL query that answers the following question: Name the number for florida air academy | The relevant table was constructed using the following SQL : CREATE TABLE table_25360865_1 (_number VARCHAR, last_school VARCHAR) | SELECT _number FROM table_25360865_1 WHERE last_school = "Florida Air Academy" |
Write a SQL query that answers the following question: Name the height for demetrius jemison | The relevant table was constructed using the following SQL : CREATE TABLE table_25360865_1 (height VARCHAR, name VARCHAR) | SELECT height FROM table_25360865_1 WHERE name = "Demetrius Jemison" |
Write a SQL query that answers the following question: How many wins did Canterbury Wizards have? | The relevant table was constructed using the following SQL : CREATE TABLE table_25368177_1 (won INTEGER, team VARCHAR) | SELECT MAX(won) FROM table_25368177_1 WHERE team = "Canterbury Wizards" |
Write a SQL query that answers the following question: What team had a net run rate of 0.134? | The relevant table was constructed using the following SQL : CREATE TABLE table_25368177_1 (team VARCHAR, net_run_rate VARCHAR) | SELECT team FROM table_25368177_1 WHERE net_run_rate = "0.134" |
Write a SQL query that answers the following question: What's the largest number of abandoned games by any of the teams? | The relevant table was constructed using the following SQL : CREATE TABLE table_25368177_1 (abandoned INTEGER) | SELECT MAX(abandoned) FROM table_25368177_1 |
Write a SQL query that answers the following question: How many different net run rates did the team with 19 total points have? | The relevant table was constructed using the following SQL : 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 |
Write a SQL query that answers the following question: What was the team that scored 56 points?Qh | The relevant table was constructed using the following SQL : CREATE TABLE table_25369796_1 (team VARCHAR, points VARCHAR) | SELECT team FROM table_25369796_1 WHERE points = "56" |
Write a SQL query that answers the following question: What was the earliest season where a team got a 29th position? | The relevant table was constructed using the following SQL : CREATE TABLE table_25369796_1 (season INTEGER, position VARCHAR) | SELECT MIN(season) FROM table_25369796_1 WHERE position = "29th" |
Write a SQL query that answers the following question: What was the recorded flaps of HBR Motorsport team? | The relevant table was constructed using the following SQL : CREATE TABLE table_25369796_1 (f_laps VARCHAR, team VARCHAR) | SELECT f_laps FROM table_25369796_1 WHERE team = "HBR Motorsport" |
Write a SQL query that answers the following question: What was the series where a team scored 56 points? | The relevant table was constructed using the following SQL : CREATE TABLE table_25369796_1 (series VARCHAR, points VARCHAR) | SELECT series FROM table_25369796_1 WHERE points = "56" |
Write a SQL query that answers the following question: How many team position scored 56 points? | The relevant table was constructed using the following SQL : CREATE TABLE table_25369796_1 (position VARCHAR, points VARCHAR) | SELECT COUNT(position) FROM table_25369796_1 WHERE points = "56" |
Write a SQL query that answers the following question: On what dates was the final score of the game L 14–24? | The relevant table was constructed using the following SQL : CREATE TABLE table_25380472_2 (date VARCHAR, final_score VARCHAR) | SELECT date FROM table_25380472_2 WHERE final_score = "L 14–24" |
Write a SQL query that answers the following question: How many game sites are there where the team record is 1–7? | The relevant table was constructed using the following SQL : CREATE TABLE table_25380472_2 (game_site VARCHAR, team_record VARCHAR) | SELECT COUNT(game_site) FROM table_25380472_2 WHERE team_record = "1–7" |
Write a SQL query that answers the following question: On week 7, what were the opponents? | The relevant table was constructed using the following SQL : CREATE TABLE table_25380472_2 (opponent VARCHAR, week VARCHAR) | SELECT opponent FROM table_25380472_2 WHERE week = 7 |
Write a SQL query that answers the following question: On what game sites are there where the team record is 0–5? | The relevant table was constructed using the following SQL : CREATE TABLE table_25380472_2 (game_site VARCHAR, team_record VARCHAR) | SELECT game_site FROM table_25380472_2 WHERE team_record = "0–5" |
Write a SQL query that answers the following question: What game sites are where the team record is 1–6? | The relevant table was constructed using the following SQL : CREATE TABLE table_25380472_2 (game_site VARCHAR, team_record VARCHAR) | SELECT game_site FROM table_25380472_2 WHERE team_record = "1–6" |
Write a SQL query that answers the following question: In game site AOL Arena, who are all the opponents? | The relevant table was constructed using the following SQL : CREATE TABLE table_25380472_2 (opponent VARCHAR, game_site VARCHAR) | SELECT opponent FROM table_25380472_2 WHERE game_site = "AOL Arena" |
Write a SQL query that answers the following question: What organization had the founding date of 1998-11-08? | The relevant table was constructed using the following SQL : CREATE TABLE table_2538117_12 (organization VARCHAR, founding_date VARCHAR) | SELECT organization FROM table_2538117_12 WHERE founding_date = "1998-11-08" |
Write a SQL query that answers the following question: How many letters were given to the organization with a founding date of 1997-12-12? | The relevant table was constructed using the following SQL : CREATE TABLE table_2538117_12 (letters VARCHAR, founding_date VARCHAR) | SELECT COUNT(letters) FROM table_2538117_12 WHERE founding_date = "1997-12-12" |
Write a SQL query that answers the following question: What is the song choice where the original artist is Gino Paoli? | The relevant table was constructed using the following SQL : CREATE TABLE table_25374338_1 (song_choice VARCHAR, original_artist VARCHAR) | SELECT COUNT(song_choice) FROM table_25374338_1 WHERE original_artist = "Gino Paoli" |
Write a SQL query that answers the following question: What is the theme where the original artist is Noemi feat. Fiorella Mannoia? | The relevant table was constructed using the following SQL : CREATE TABLE table_25374338_1 (theme VARCHAR, original_artist VARCHAR) | SELECT theme FROM table_25374338_1 WHERE original_artist = "Noemi feat. Fiorella Mannoia" |
Write a SQL query that answers the following question: What is the song choice where the episode is Live Show 1? | The relevant table was constructed using the following SQL : CREATE TABLE table_25374338_1 (song_choice VARCHAR, episode VARCHAR) | SELECT song_choice FROM table_25374338_1 WHERE episode = "Live Show 1" |
Write a SQL query that answers the following question: What is the result where the original artist is Prince and the Revolution? | The relevant table was constructed using the following SQL : CREATE TABLE table_25374338_1 (result VARCHAR, original_artist VARCHAR) | SELECT result FROM table_25374338_1 WHERE original_artist = "Prince and The Revolution" |
Write a SQL query that answers the following question: What is the theme where the original artist is AC/DC? | The relevant table was constructed using the following SQL : CREATE TABLE table_25374338_1 (theme VARCHAR, original_artist VARCHAR) | SELECT theme FROM table_25374338_1 WHERE original_artist = "AC/DC" |
Write a SQL query that answers the following question: what type of organization is sigma phi omega? | The relevant table was constructed using the following SQL : CREATE TABLE table_2538117_2 (type VARCHAR, organization VARCHAR) | SELECT type FROM table_2538117_2 WHERE organization = "Sigma Phi Omega" |
Write a SQL query that answers the following question: how many types of organization were founded in san diego state university? | The relevant table was constructed using the following SQL : CREATE TABLE table_2538117_2 (type VARCHAR, founding_university VARCHAR) | SELECT COUNT(type) FROM table_2538117_2 WHERE founding_university = "San Diego State University" |
Write a SQL query that answers the following question: Name the season for position 4th | The relevant table was constructed using the following SQL : CREATE TABLE table_25375093_1 (season VARCHAR, position VARCHAR) | SELECT COUNT(season) FROM table_25375093_1 WHERE position = "4th" |
Write a SQL query that answers the following question: Name the least f/laps | The relevant table was constructed using the following SQL : CREATE TABLE table_25375093_1 (f_laps INTEGER) | SELECT MIN(f_laps) FROM table_25375093_1 |
Write a SQL query that answers the following question: Name the least podiums for 9th position | The relevant table was constructed using the following SQL : CREATE TABLE table_25375093_1 (podiums INTEGER, position VARCHAR) | SELECT MIN(podiums) FROM table_25375093_1 WHERE position = "9th" |
Write a SQL query that answers the following question: How many results are listed for shot PCT Where PA is 79? | The relevant table was constructed using the following SQL : CREATE TABLE table_25381437_2 (shot_pct VARCHAR, pa VARCHAR) | SELECT COUNT(shot_pct) FROM table_25381437_2 WHERE pa = 79 |
Write a SQL query that answers the following question: Where were stolen ends recorded as 15? | The relevant table was constructed using the following SQL : CREATE TABLE table_25381437_2 (locale VARCHAR, stolen_ends VARCHAR) | SELECT locale FROM table_25381437_2 WHERE stolen_ends = 15 |
Write a SQL query that answers the following question: What was the SlNo no of contact person SDE (P), Thiruppattur? | The relevant table was constructed using the following SQL : CREATE TABLE table_25383715_1 (slno VARCHAR, contact_person VARCHAR) | SELECT slno FROM table_25383715_1 WHERE contact_person = "SDE (P), Thiruppattur" |
Write a SQL query that answers the following question: What was the production code of the episode written by Brendan Cowell? | The relevant table was constructed using the following SQL : CREATE TABLE table_25390694_2 (production_code VARCHAR, writer VARCHAR) | SELECT production_code FROM table_25390694_2 WHERE writer = "Brendan Cowell" |
Write a SQL query that answers the following question: How many f/laps did Pedro Nunes have when he was in 20th position? | The relevant table was constructed using the following SQL : CREATE TABLE table_25386974_1 (f_laps VARCHAR, position VARCHAR) | SELECT COUNT(f_laps) FROM table_25386974_1 WHERE position = "20th" |
Write a SQL query that answers the following question: How many f/laps did Pedro Nunes have when he was at the gp3 series? | The relevant table was constructed using the following SQL : CREATE TABLE table_25386974_1 (f_laps VARCHAR, series VARCHAR) | SELECT f_laps FROM table_25386974_1 WHERE series = "GP3 series" |
Write a SQL query that answers the following question: What is the fewest number of races Pedro Nunes completed in any series? | The relevant table was constructed using the following SQL : CREATE TABLE table_25386974_1 (races INTEGER) | SELECT MIN(races) FROM table_25386974_1 |
Write a SQL query that answers the following question: What is the most podiums Pedro Nunes had when in 17th position? | The relevant table was constructed using the following SQL : CREATE TABLE table_25386974_1 (podiums INTEGER, position VARCHAR) | SELECT MAX(podiums) FROM table_25386974_1 WHERE position = "17th" |
Write a SQL query that answers the following question: What was the founding university of the organization Tau Epsilon Phi 1? | The relevant table was constructed using the following SQL : CREATE TABLE table_2538117_5 (founding_university VARCHAR, organization VARCHAR) | SELECT founding_university FROM table_2538117_5 WHERE organization = "Tau Epsilon Phi 1" |
Write a SQL query that answers the following question: What type is σαεπ? | The relevant table was constructed using the following SQL : CREATE TABLE table_2538117_5 (type VARCHAR, letters VARCHAR) | SELECT type FROM table_2538117_5 WHERE letters = "ΣΑΕΠ" |
Write a SQL query that answers the following question: What was the founding university of αεφ? | The relevant table was constructed using the following SQL : CREATE TABLE table_2538117_5 (founding_university VARCHAR, letters VARCHAR) | SELECT founding_university FROM table_2538117_5 WHERE letters = "ΑΕΦ" |
Write a SQL query that answers the following question: What is the type if the organization name is Gamma RHO Lambda 1? | The relevant table was constructed using the following SQL : CREATE TABLE table_2538117_7 (type VARCHAR, organization VARCHAR) | SELECT type FROM table_2538117_7 WHERE organization = "Gamma Rho Lambda 1" |
Write a SQL query that answers the following question: If the letters is φαν, what is the founding date? | The relevant table was constructed using the following SQL : CREATE TABLE table_2538117_7 (founding_date VARCHAR, letters VARCHAR) | SELECT founding_date FROM table_2538117_7 WHERE letters = "ΦΑΝ" |
Write a SQL query that answers the following question: If the founding university is in Charlotte, NC, what is the nickname? | The relevant table was constructed using the following SQL : CREATE TABLE table_2538117_7 (nickname VARCHAR, founding_university VARCHAR) | SELECT nickname FROM table_2538117_7 WHERE founding_university = "Charlotte, NC" |
Write a SQL query that answers the following question: What is the founding date if the letters are κψκ? | The relevant table was constructed using the following SQL : CREATE TABLE table_2538117_7 (founding_date VARCHAR, letters VARCHAR) | SELECT founding_date FROM table_2538117_7 WHERE letters = "ΚΨΚ" |
Write a SQL query that answers the following question: If the founding university is in Washington, D.C., what was the founding date? | The relevant table was constructed using the following SQL : CREATE TABLE table_2538117_7 (founding_date VARCHAR, founding_university VARCHAR) | SELECT founding_date FROM table_2538117_7 WHERE founding_university = "Washington, D.C." |
Write a SQL query that answers the following question: What is the rank by average for the team who averaged 22.8? | The relevant table was constructed using the following SQL : CREATE TABLE table_25391981_3 (rank_by_average INTEGER, average VARCHAR) | SELECT MIN(rank_by_average) FROM table_25391981_3 WHERE average = "22.8" |
Write a SQL query that answers the following question: What is the number of dances for the team that averages 20.6? | The relevant table was constructed using the following SQL : CREATE TABLE table_25391981_3 (number_of_dances VARCHAR, average VARCHAR) | SELECT number_of_dances FROM table_25391981_3 WHERE average = "20.6" |
Write a SQL query that answers the following question: What couple averaged 15.5? | The relevant table was constructed using the following SQL : CREATE TABLE table_25391981_3 (couple VARCHAR, average VARCHAR) | SELECT couple FROM table_25391981_3 WHERE average = "15.5" |
Write a SQL query that answers the following question: What is every value for Italian when the part is English? | The relevant table was constructed using the following SQL : CREATE TABLE table_25401_15 (italian VARCHAR, english VARCHAR) | SELECT italian FROM table_25401_15 WHERE english = "part" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.