instruction stringlengths 67 299 | input stringlengths 88 550 | output stringlengths 32 484 |
|---|---|---|
Write a SQL query that answers the following question: What was the area in Glenella with a population of 522 in 2011? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_24 (area__km²_ INTEGER, name VARCHAR, population__2011_ VARCHAR) | SELECT AVG(area__km²_) FROM table_name_24 WHERE name = "glenella" AND population__2011_ < 522 |
Write a SQL query that answers the following question: What is the population density of Siglunes when the change was smaller than -8.1 percent? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (population_density VARCHAR, name VARCHAR, change___percentage_ VARCHAR) | SELECT COUNT(population_density) FROM table_name_6 WHERE name = "siglunes" AND change___percentage_ < -8.1 |
Write a SQL query that answers the following question: Who was the trainer when Crowd Pleaser won? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_67 (trainer VARCHAR, winner VARCHAR) | SELECT trainer FROM table_name_67 WHERE winner = "crowd pleaser" |
Write a SQL query that answers the following question: What was the race time of the horse with jockey Ramon Dominguez? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_73 (time VARCHAR, jockey VARCHAR) | SELECT time FROM table_name_73 WHERE jockey = "ramon dominguez" |
Write a SQL query that answers the following question: What jockey rode for Michael House before 2012 | The relevant table was constructed using the following SQL : CREATE TABLE table_name_70 (jockey VARCHAR, year VARCHAR, owner VARCHAR) | SELECT jockey FROM table_name_70 WHERE year < 2012 AND owner = "michael house" |
Write a SQL query that answers the following question: How many UK events won for the contestant that won under 1 US event? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_45 (events_won__uk_series_ VARCHAR, events_won__us_series_ INTEGER) | SELECT events_won__uk_series_ FROM table_name_45 WHERE events_won__us_series_ < 1 |
Write a SQL query that answers the following question: How many US events did jason bennett win? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_83 (events_won__us_series_ INTEGER, name VARCHAR) | SELECT AVG(events_won__us_series_) FROM table_name_83 WHERE name = "jason bennett" |
Write a SQL query that answers the following question: Which downhill has 7 overalls? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_90 (downhill VARCHAR, overall VARCHAR) | SELECT downhill FROM table_name_90 WHERE overall = "7" |
Write a SQL query that answers the following question: What is the combined of 2 overalls and 5 slaloms? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_93 (combined VARCHAR, overall VARCHAR, slalom VARCHAR) | SELECT combined FROM table_name_93 WHERE overall = "2" AND slalom = "5" |
Write a SQL query that answers the following question: How many overalls has 1 combined and 24 downhills? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (overall VARCHAR, combined VARCHAR, downhill VARCHAR) | SELECT overall FROM table_name_9 WHERE combined = "1" AND downhill = "24" |
Write a SQL query that answers the following question: What Distance had a Race Leader in Km (mi)? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_94 (distance VARCHAR, race_leader VARCHAR) | SELECT distance FROM table_name_94 WHERE race_leader = "km (mi)" |
Write a SQL query that answers the following question: What is the highest number of points scored when Acadie-Bathurst had 4 tied games, less than 257 goals, and over 72 games played? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_10 (points INTEGER, games VARCHAR, tied VARCHAR, goals_for VARCHAR) | SELECT MAX(points) FROM table_name_10 WHERE tied = "4" AND goals_for < 257 AND games > 72 |
Write a SQL query that answers the following question: What is the average of games played with a percentage of 3.33% and less than 29 losses? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_54 (played INTEGER, percentage VARCHAR, lost VARCHAR) | SELECT AVG(played) FROM table_name_54 WHERE percentage = "3.33%" AND lost < 29 |
Write a SQL query that answers the following question: What is the total number of games played that correlates with a first game in 1991, a percentage of 22.22%, and less than 7 losses? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_22 (played VARCHAR, lost VARCHAR, first_game VARCHAR, percentage VARCHAR) | SELECT COUNT(played) FROM table_name_22 WHERE first_game = 1991 AND percentage = "22.22%" AND lost > 7 |
Write a SQL query that answers the following question: What is the highest number of draws that correlates with a percentage of 0.00% and less than 1 loss? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_92 (drawn INTEGER, percentage VARCHAR, lost VARCHAR) | SELECT MAX(drawn) FROM table_name_92 WHERE percentage = "0.00%" AND lost < 1 |
Write a SQL query that answers the following question: What is the start value for rank 11? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_31 (start VARCHAR, rank VARCHAR) | SELECT start FROM table_name_31 WHERE rank = "11" |
Write a SQL query that answers the following question: Which year has 200 laps? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_95 (year VARCHAR, laps VARCHAR) | SELECT year FROM table_name_95 WHERE laps = 200 |
Write a SQL query that answers the following question: What is the finish value for a start of 19? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_67 (finish VARCHAR, start VARCHAR) | SELECT finish FROM table_name_67 WHERE start = "19" |
Write a SQL query that answers the following question: where is the naghsh jahan stadium? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_84 (city VARCHAR, stadium VARCHAR) | SELECT city FROM table_name_84 WHERE stadium = "naghsh jahan" |
Write a SQL query that answers the following question: what city has a past season of n/a? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_43 (city VARCHAR, past_season VARCHAR) | SELECT city FROM table_name_43 WHERE past_season = "n/a" |
Write a SQL query that answers the following question: where is the pegah team located? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_74 (city VARCHAR, team VARCHAR) | SELECT city FROM table_name_74 WHERE team = "pegah" |
Write a SQL query that answers the following question: what stadium has a prior record of 7th? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (stadium VARCHAR, past_season VARCHAR) | SELECT stadium FROM table_name_8 WHERE past_season = "7th" |
Write a SQL query that answers the following question: What is the Nationality on the swimmer in Lane 4 with a Time of 1:11.58? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_54 (nationality VARCHAR, lane VARCHAR, time VARCHAR) | SELECT nationality FROM table_name_54 WHERE lane = 4 AND time = "1:11.58" |
Write a SQL query that answers the following question: What is the lowest numbered Lane with a Time of 1:10.57 and Heat larger than 2? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_97 (lane INTEGER, heat VARCHAR, time VARCHAR) | SELECT MIN(lane) FROM table_name_97 WHERE heat > 2 AND time = "1:10.57" |
Write a SQL query that answers the following question: What is the Heat for Smiljana Marinović? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_88 (heat VARCHAR, name VARCHAR) | SELECT COUNT(heat) FROM table_name_88 WHERE name = "smiljana marinović" |
Write a SQL query that answers the following question: In heat 4, what is Byun Hye-young's Nationality? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_62 (nationality VARCHAR, heat VARCHAR, name VARCHAR) | SELECT nationality FROM table_name_62 WHERE heat = 4 AND name = "byun hye-young" |
Write a SQL query that answers the following question: Which type of song did miriam yeung sing? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_66 (kind_of_the_song VARCHAR, singer VARCHAR) | SELECT kind_of_the_song FROM table_name_66 WHERE singer = "miriam yeung" |
Write a SQL query that answers the following question: What type of song is larger than 8 and named 實情? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_50 (kind_of_the_song VARCHAR, number VARCHAR, name_of_the_song VARCHAR) | SELECT kind_of_the_song FROM table_name_50 WHERE number > 8 AND name_of_the_song = "實情" |
Write a SQL query that answers the following question: Which song has a ending theme, and is sung by miriam yeung? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_75 (name_of_the_song VARCHAR, kind_of_the_song VARCHAR, singer VARCHAR) | SELECT name_of_the_song FROM table_name_75 WHERE kind_of_the_song = "ending theme" AND singer = "miriam yeung" |
Write a SQL query that answers the following question: What is the number of the song named 實情? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_68 (number VARCHAR, name_of_the_song VARCHAR) | SELECT number FROM table_name_68 WHERE name_of_the_song = "實情" |
Write a SQL query that answers the following question: Name the total number of start when finish is less than 4 | The relevant table was constructed using the following SQL : CREATE TABLE table_name_21 (start VARCHAR, finish INTEGER) | SELECT COUNT(start) FROM table_name_21 WHERE finish < 4 |
Write a SQL query that answers the following question: Name the sum of year when start is less than 30 | The relevant table was constructed using the following SQL : CREATE TABLE table_name_68 (year INTEGER, start INTEGER) | SELECT SUM(year) FROM table_name_68 WHERE start < 30 |
Write a SQL query that answers the following question: Name the most year with start more than 2 | The relevant table was constructed using the following SQL : CREATE TABLE table_name_59 (year INTEGER, start INTEGER) | SELECT MAX(year) FROM table_name_59 WHERE start > 2 |
Write a SQL query that answers the following question: Name the most year with start less than 2 | The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (year INTEGER, start INTEGER) | SELECT MAX(year) FROM table_name_9 WHERE start < 2 |
Write a SQL query that answers the following question: Name the year when start was 32 | The relevant table was constructed using the following SQL : CREATE TABLE table_name_78 (year VARCHAR, start VARCHAR) | SELECT year FROM table_name_78 WHERE start = 32 |
Write a SQL query that answers the following question: Name the most finish for 2006 | The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (finish INTEGER, year VARCHAR) | SELECT MAX(finish) FROM table_name_9 WHERE year = 2006 |
Write a SQL query that answers the following question: What was the total attendance at games when Detroit was the visiting team and the record was 36–13–5? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_25 (attendance VARCHAR, visitor VARCHAR, record VARCHAR) | SELECT COUNT(attendance) FROM table_name_25 WHERE visitor = "detroit" AND record = "36–13–5" |
Write a SQL query that answers the following question: When did first minister Henry Mcleish enter office? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_2 (entered_office VARCHAR, first_minister VARCHAR) | SELECT entered_office FROM table_name_2 WHERE first_minister = "henry mcleish" |
Write a SQL query that answers the following question: What is the name of the minister that left office on 14 November 2006? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_86 (name VARCHAR, left_office VARCHAR) | SELECT name FROM table_name_86 WHERE left_office = "14 november 2006" |
Write a SQL query that answers the following question: What is the name of the minister from the party of minister for community safety and legal affairs? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_45 (name VARCHAR, party VARCHAR) | SELECT name FROM table_name_45 WHERE party = "minister for community safety and legal affairs" |
Write a SQL query that answers the following question: What is the name of the minister who has an entered office of entered office? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_80 (name VARCHAR, entered_office VARCHAR) | SELECT name FROM table_name_80 WHERE entered_office = "entered office" |
Write a SQL query that answers the following question: What is the party of the minister who left office on 26 November 2002? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_3 (party VARCHAR, left_office VARCHAR) | SELECT party FROM table_name_3 WHERE left_office = "26 november 2002" |
Write a SQL query that answers the following question: What is the party of Richard Simpson? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_59 (party VARCHAR, name VARCHAR) | SELECT party FROM table_name_59 WHERE name = "richard simpson" |
Write a SQL query that answers the following question: Name the sum of spectators for time more than 20.05 and team #2 of estonia | The relevant table was constructed using the following SQL : CREATE TABLE table_name_66 (spectators INTEGER, time___cest__ VARCHAR, team__number2 VARCHAR) | SELECT SUM(spectators) FROM table_name_66 WHERE time___cest__ > 20.05 AND team__number2 = "estonia" |
Write a SQL query that answers the following question: Name the spectators for 11 november 2011 | The relevant table was constructed using the following SQL : CREATE TABLE table_name_57 (spectators VARCHAR, date VARCHAR) | SELECT spectators FROM table_name_57 WHERE date = "11 november 2011" |
Write a SQL query that answers the following question: Which loss has a Record of 54-39? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_68 (loss VARCHAR, record VARCHAR) | SELECT loss FROM table_name_68 WHERE record = "54-39" |
Write a SQL query that answers the following question: Which opponent has a Record of 54-38? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_73 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_73 WHERE record = "54-38" |
Write a SQL query that answers the following question: Which opponent has a date of July 7? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_35 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_35 WHERE date = "july 7" |
Write a SQL query that answers the following question: Which record has a Loss of eichhorn (8-5)? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_54 (record VARCHAR, loss VARCHAR) | SELECT record FROM table_name_54 WHERE loss = "eichhorn (8-5)" |
Write a SQL query that answers the following question: What is the average attendance San Jose home games? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_81 (attendance INTEGER, home VARCHAR) | SELECT AVG(attendance) FROM table_name_81 WHERE home = "san jose" |
Write a SQL query that answers the following question: What was the record at the game that had a loss of Spillner (1-8)? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_13 (record VARCHAR, loss VARCHAR) | SELECT record FROM table_name_13 WHERE loss = "spillner (1-8)" |
Write a SQL query that answers the following question: What was the score of the game that had a loss of Williams (1-1)? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_48 (score VARCHAR, loss VARCHAR) | SELECT score FROM table_name_48 WHERE loss = "williams (1-1)" |
Write a SQL query that answers the following question: What was the loss of the game that had a record of 63-52? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_7 (loss VARCHAR, record VARCHAR) | SELECT loss FROM table_name_7 WHERE record = "63-52" |
Write a SQL query that answers the following question: What was the score when the Washington Nationals had a record of 11-10? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_90 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_90 WHERE record = "11-10" |
Write a SQL query that answers the following question: Who was the opponent when the Washington Nationals had a record of 8-4? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_24 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_24 WHERE record = "8-4" |
Write a SQL query that answers the following question: How many people were in attendance when the Washington Nationals had a score of 7-3 and a loss of Worrell (0-1)? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_54 (attendance VARCHAR, score VARCHAR, loss VARCHAR) | SELECT COUNT(attendance) FROM table_name_54 WHERE score = "7-3" AND loss = "worrell (0-1)" |
Write a SQL query that answers the following question: Name the Qual 2 which has the name of katherine legge | The relevant table was constructed using the following SQL : CREATE TABLE table_name_40 (qual_2 VARCHAR, name VARCHAR) | SELECT qual_2 FROM table_name_40 WHERE name = "katherine legge" |
Write a SQL query that answers the following question: Name the team with best of 58.846 | The relevant table was constructed using the following SQL : CREATE TABLE table_name_2 (team VARCHAR, best VARCHAR) | SELECT team FROM table_name_2 WHERE best = "58.846" |
Write a SQL query that answers the following question: Tell me the name with best of 58.403 | The relevant table was constructed using the following SQL : CREATE TABLE table_name_46 (name VARCHAR, best VARCHAR) | SELECT name FROM table_name_46 WHERE best = "58.403" |
Write a SQL query that answers the following question: Tell me the qual 1 for jan heylen | The relevant table was constructed using the following SQL : CREATE TABLE table_name_13 (qual_1 VARCHAR, name VARCHAR) | SELECT qual_1 FROM table_name_13 WHERE name = "jan heylen" |
Write a SQL query that answers the following question: When the attendance was 24,406 who lost? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (loss VARCHAR, attendance VARCHAR) | SELECT loss FROM table_name_8 WHERE attendance = "24,406" |
Write a SQL query that answers the following question: Which of the opponents has a record of 17-25? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_52 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_52 WHERE record = "17-25" |
Write a SQL query that answers the following question: Who was the opponent that played on may 12? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_32 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_32 WHERE date = "may 12" |
Write a SQL query that answers the following question: When in the 1st league position, how many people watch as they faced West Ham United? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_18 (attendance INTEGER, league_position VARCHAR, opponents VARCHAR) | SELECT MIN(attendance) FROM table_name_18 WHERE league_position = "1st" AND opponents = "west ham united" |
Write a SQL query that answers the following question: What is the average bronze medals of Uganda's swimmers when they earned over 2 medals? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_29 (bronze INTEGER, nation VARCHAR, total VARCHAR) | SELECT AVG(bronze) FROM table_name_29 WHERE nation = "uganda" AND total > 2 |
Write a SQL query that answers the following question: What is the highest number of silver medals that Ireland earned when they scored less than 3 bronze medals and earned 1 medal? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_95 (silver INTEGER, nation VARCHAR, total VARCHAR, bronze VARCHAR, gold VARCHAR) | SELECT MAX(silver) FROM table_name_95 WHERE bronze < 3 AND gold < 1 AND total = 1 AND nation = "ireland" |
Write a SQL query that answers the following question: What's the highest silver and 1 gold that the nation of djibouti received with a total less than 3? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_25 (silver INTEGER, total VARCHAR, gold VARCHAR, nation VARCHAR) | SELECT MAX(silver) FROM table_name_25 WHERE gold = 1 AND nation = "djibouti" AND total < 3 |
Write a SQL query that answers the following question: What's the total number that had a rank larger than 17 and a gold greater than 0? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_73 (total VARCHAR, rank VARCHAR, gold VARCHAR) | SELECT COUNT(total) FROM table_name_73 WHERE rank > 17 AND gold > 0 |
Write a SQL query that answers the following question: Which opponent was faced before week 2? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_44 (opponent VARCHAR, week INTEGER) | SELECT opponent FROM table_name_44 WHERE week < 2 |
Write a SQL query that answers the following question: Name the least total for 1978 years won | The relevant table was constructed using the following SQL : CREATE TABLE table_name_30 (total INTEGER, year_s__won VARCHAR) | SELECT MIN(total) FROM table_name_30 WHERE year_s__won = "1978" |
Write a SQL query that answers the following question: Name the total with finish of t22 | The relevant table was constructed using the following SQL : CREATE TABLE table_name_24 (total VARCHAR, finish VARCHAR) | SELECT total FROM table_name_24 WHERE finish = "t22" |
Write a SQL query that answers the following question: Name the average total for years won of 1975 | The relevant table was constructed using the following SQL : CREATE TABLE table_name_47 (total INTEGER, year_s__won VARCHAR) | SELECT AVG(total) FROM table_name_47 WHERE year_s__won = "1975" |
Write a SQL query that answers the following question: Name the finish with player lou graham | The relevant table was constructed using the following SQL : CREATE TABLE table_name_26 (finish VARCHAR, player VARCHAR) | SELECT finish FROM table_name_26 WHERE player = "lou graham" |
Write a SQL query that answers the following question: Name the total number of total with finish of t45 | The relevant table was constructed using the following SQL : CREATE TABLE table_name_7 (total VARCHAR, finish VARCHAR) | SELECT COUNT(total) FROM table_name_7 WHERE finish = "t45" |
Write a SQL query that answers the following question: What year was the League the malaysian super league, and a Malaysia Cup of group stage? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_73 (year VARCHAR, league VARCHAR, malaysia_cup VARCHAR) | SELECT year FROM table_name_73 WHERE league = "malaysian super league" AND malaysia_cup = "group stage" |
Write a SQL query that answers the following question: What is the position when the League is the malaysian super league, and a Year of 2011? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_85 (position VARCHAR, league VARCHAR, year VARCHAR) | SELECT position FROM table_name_85 WHERE league = "malaysian super league" AND year = "2011" |
Write a SQL query that answers the following question: What year was the position 6/13? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_75 (year VARCHAR, position VARCHAR) | SELECT year FROM table_name_75 WHERE position = "6/13" |
Write a SQL query that answers the following question: What year was the League of malaysian super league, and the Position was 10/14? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_38 (year VARCHAR, league VARCHAR, position VARCHAR) | SELECT year FROM table_name_38 WHERE league = "malaysian super league" AND position = "10/14" |
Write a SQL query that answers the following question: tell me the average roll for the featherston area and integrated authority. | The relevant table was constructed using the following SQL : CREATE TABLE table_name_48 (roll INTEGER, area VARCHAR, authority VARCHAR) | SELECT AVG(roll) FROM table_name_48 WHERE area = "featherston" AND authority = "integrated" |
Write a SQL query that answers the following question: tell me the authority that has a decile less than 6 and roll less than 65. | The relevant table was constructed using the following SQL : CREATE TABLE table_name_43 (authority VARCHAR, decile VARCHAR, roll VARCHAR) | SELECT authority FROM table_name_43 WHERE decile < 6 AND roll < 65 |
Write a SQL query that answers the following question: tell me the average roll for pirinoa school. | The relevant table was constructed using the following SQL : CREATE TABLE table_name_83 (roll INTEGER, name VARCHAR) | SELECT AVG(roll) FROM table_name_83 WHERE name = "pirinoa school" |
Write a SQL query that answers the following question: tell me the total number of decile with a roll showing 251. | The relevant table was constructed using the following SQL : CREATE TABLE table_name_90 (decile VARCHAR, roll VARCHAR) | SELECT COUNT(decile) FROM table_name_90 WHERE roll = 251 |
Write a SQL query that answers the following question: What is the score for 2004? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_69 (score VARCHAR, year VARCHAR) | SELECT score FROM table_name_69 WHERE year = 2004 |
Write a SQL query that answers the following question: what is the location when the champion is brigham young-hawaii, defeated is western oregon and the score is 3-0 (15-5, 15-9, 15-6)? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_72 (location VARCHAR, score VARCHAR, champion VARCHAR, defeated VARCHAR) | SELECT location FROM table_name_72 WHERE champion = "brigham young-hawaii" AND defeated = "western oregon" AND score = "3-0 (15-5, 15-9, 15-6)" |
Write a SQL query that answers the following question: what is the year when the location is san diego, california and defeated is houston baptist (texas)? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_96 (year VARCHAR, location VARCHAR, defeated VARCHAR) | SELECT COUNT(year) FROM table_name_96 WHERE location = "san diego, california" AND defeated = "houston baptist (texas)" |
Write a SQL query that answers the following question: Operation start of 2015 has what gross mw? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_56 (gross_mw VARCHAR, operation_start VARCHAR) | SELECT gross_mw FROM table_name_56 WHERE operation_start = "2015" |
Write a SQL query that answers the following question: Gross MW of 220, and a Unit of kakrapar 1 involves what operation start? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_44 (operation_start VARCHAR, gross_mw VARCHAR, unit VARCHAR) | SELECT operation_start FROM table_name_44 WHERE gross_mw = "220" AND unit = "kakrapar 1" |
Write a SQL query that answers the following question: Type of phase ii has what gross mw? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_94 (gross_mw VARCHAR, type VARCHAR) | SELECT gross_mw FROM table_name_94 WHERE type = "phase ii" |
Write a SQL query that answers the following question: Construction start of phase i includes what type? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (type VARCHAR, construction_start VARCHAR) | SELECT type FROM table_name_61 WHERE construction_start = "phase i" |
Write a SQL query that answers the following question: Construction start of 1 december 1984 is what unit? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_75 (unit VARCHAR, construction_start VARCHAR) | SELECT unit FROM table_name_75 WHERE construction_start = "1 december 1984" |
Write a SQL query that answers the following question: Construction start of phase ii has what operation start? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_51 (operation_start VARCHAR, construction_start VARCHAR) | SELECT operation_start FROM table_name_51 WHERE construction_start = "phase ii" |
Write a SQL query that answers the following question: what's the ungen for ត្រីទស? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_70 (ungegn VARCHAR, word_form VARCHAR) | SELECT ungegn FROM table_name_70 WHERE word_form = "ត្រីទស" |
Write a SQL query that answers the following question: what notes have the khmer ២៨? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_59 (notes VARCHAR, khmer VARCHAR) | SELECT notes FROM table_name_59 WHERE khmer = "២៨" |
Write a SQL query that answers the following question: what's the ungegn for the ១០០ khmer? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_23 (ungegn VARCHAR, khmer VARCHAR) | SELECT ungegn FROM table_name_23 WHERE khmer = "១០០" |
Write a SQL query that answers the following question: What was the population of Puerto Rico in 2010? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_22 (population___2010__ INTEGER, territory VARCHAR) | SELECT MAX(population___2010__) FROM table_name_22 WHERE territory = "puerto rico" |
Write a SQL query that answers the following question: What is the territory that was acquired past 1899 and has a capital of saipan? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_37 (territory VARCHAR, acquired VARCHAR, capital VARCHAR) | SELECT territory FROM table_name_37 WHERE acquired > 1899 AND capital = "saipan" |
Write a SQL query that answers the following question: Name the termination of mission for appointed by of franklin pierce | The relevant table was constructed using the following SQL : CREATE TABLE table_name_76 (termination_of_mission VARCHAR, appointed_by VARCHAR) | SELECT termination_of_mission FROM table_name_76 WHERE appointed_by = "franklin pierce" |
Write a SQL query that answers the following question: Name the representative with presentation of credentials of august 16, 1928 | The relevant table was constructed using the following SQL : CREATE TABLE table_name_45 (representative VARCHAR, presentation_of_credentials VARCHAR) | SELECT representative FROM table_name_45 WHERE presentation_of_credentials = "august 16, 1928" |
Write a SQL query that answers the following question: Name the representative appointed by george w. bush with presentation of credentials 9 november 2007 | The relevant table was constructed using the following SQL : CREATE TABLE table_name_65 (representative VARCHAR, appointed_by VARCHAR, presentation_of_credentials VARCHAR) | SELECT representative FROM table_name_65 WHERE appointed_by = "george w. bush" AND presentation_of_credentials = "9 november 2007" |
Write a SQL query that answers the following question: Name the title with representative edward h. strobel | The relevant table was constructed using the following SQL : CREATE TABLE table_name_21 (title VARCHAR, representative VARCHAR) | SELECT title FROM table_name_21 WHERE representative = "edward h. strobel" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.