instruction stringlengths 67 299 | input stringlengths 88 550 | output stringlengths 32 484 |
|---|---|---|
Write a SQL query that answers the following question: Name the men doubles for els baert | The relevant table was constructed using the following SQL : CREATE TABLE table_14903355_2 (men_doubles VARCHAR, womens_singles VARCHAR) | SELECT men_doubles FROM table_14903355_2 WHERE womens_singles = "Els Baert" |
Write a SQL query that answers the following question: Name the men doubles for caroline persyn smids | The relevant table was constructed using the following SQL : CREATE TABLE table_14903355_2 (men_doubles VARCHAR, womens_doubles VARCHAR) | SELECT men_doubles FROM table_14903355_2 WHERE womens_doubles = "Caroline Persyn Smids" |
Write a SQL query that answers the following question: Name the number of men doubles for 2007 | The relevant table was constructed using the following SQL : CREATE TABLE table_14903355_2 (men_doubles VARCHAR, year VARCHAR) | SELECT COUNT(men_doubles) FROM table_14903355_2 WHERE year = 2007 |
Write a SQL query that answers the following question: Name the womens singles for raina tzvetkova petya nedelcheva | The relevant table was constructed using the following SQL : CREATE TABLE table_14903491_1 (womens_singles VARCHAR, womens_doubles VARCHAR) | SELECT womens_singles FROM table_14903491_1 WHERE womens_doubles = "Raina Tzvetkova Petya Nedelcheva" |
Write a SQL query that answers the following question: Name the number of years for womens doubles being diana koleva emilia dimitrova and jeliazko valkov | The relevant table was constructed using the following SQL : CREATE TABLE table_14903491_1 (year VARCHAR, womens_doubles VARCHAR, mens_singles VARCHAR) | SELECT COUNT(year) FROM table_14903491_1 WHERE womens_doubles = "Diana Koleva Emilia Dimitrova" AND mens_singles = "Jeliazko Valkov" |
Write a SQL query that answers the following question: Name the mens singles for jeliazko valkov dobrinka peneva | The relevant table was constructed using the following SQL : CREATE TABLE table_14903491_1 (mens_singles VARCHAR, mixed_doubles VARCHAR) | SELECT mens_singles FROM table_14903491_1 WHERE mixed_doubles = "Jeliazko Valkov Dobrinka Peneva" |
Write a SQL query that answers the following question: Name the mens singles for 1989 | The relevant table was constructed using the following SQL : CREATE TABLE table_14903491_1 (mens_singles VARCHAR, year VARCHAR) | SELECT mens_singles FROM table_14903491_1 WHERE year = 1989 |
Write a SQL query that answers the following question: Name the year for victoria hristova neli nedialkova | The relevant table was constructed using the following SQL : CREATE TABLE table_14903491_1 (year VARCHAR, womens_doubles VARCHAR) | SELECT year FROM table_14903491_1 WHERE womens_doubles = "Victoria Hristova Neli Nedialkova" |
Write a SQL query that answers the following question: Name the year for womens doubles being raina tzvetkova emilia dimitrova | The relevant table was constructed using the following SQL : CREATE TABLE table_14903491_1 (year VARCHAR, womens_doubles VARCHAR) | SELECT year FROM table_14903491_1 WHERE womens_doubles = "Raina Tzvetkova Emilia Dimitrova" |
Write a SQL query that answers the following question: WHAT ARE THE NAMES OF THE MENS DOUBLES WHEN THE WOMENS DOUBLES WAS PIRET HAMER HELEN REINO? | The relevant table was constructed using the following SQL : CREATE TABLE table_14903627_1 (mens_doubles VARCHAR, womens_doubles VARCHAR) | SELECT mens_doubles FROM table_14903627_1 WHERE womens_doubles = "Piret Hamer Helen Reino" |
Write a SQL query that answers the following question: WHAT IS THE NAME OF THE MENS DOUBLES PLAYER WHEN THE WOMENS DOUBLES PLAYER IS HELEN REINO KAI-RIIN SALUSTE? | The relevant table was constructed using the following SQL : CREATE TABLE table_14903627_1 (mens_doubles VARCHAR, womens_doubles VARCHAR) | SELECT mens_doubles FROM table_14903627_1 WHERE womens_doubles = "Helen Reino Kai-Riin Saluste" |
Write a SQL query that answers the following question: WHAT IS THE NAME OF THE MIXED DOUBLES PLAYER WHEN THE WOMENS SINGLE PLAYER IS KAIRI VIILUP? | The relevant table was constructed using the following SQL : CREATE TABLE table_14903627_1 (mixed_doubles VARCHAR, womens_singles VARCHAR) | SELECT mixed_doubles FROM table_14903627_1 WHERE womens_singles = "Kairi Viilup" |
Write a SQL query that answers the following question: HOW MANY YEARS DID MENS DOUBLES PLAYER HEIKI SORGE MEELIS MAISTE PLAY? | The relevant table was constructed using the following SQL : CREATE TABLE table_14903627_1 (year VARCHAR, mens_doubles VARCHAR) | SELECT COUNT(year) FROM table_14903627_1 WHERE mens_doubles = "Heiki Sorge Meelis Maiste" |
Write a SQL query that answers the following question: Name the womens doubles when mens doubles is charalambos kazilas stepan partemian | The relevant table was constructed using the following SQL : CREATE TABLE table_14903881_1 (womens_doubles VARCHAR, mens_doubles VARCHAR) | SELECT womens_doubles FROM table_14903881_1 WHERE mens_doubles = "Charalambos Kazilas Stepan Partemian" |
Write a SQL query that answers the following question: Name the womens doubles when mixed doubles is potten ruth scott | The relevant table was constructed using the following SQL : CREATE TABLE table_14903881_1 (womens_doubles VARCHAR, mixed_doubles VARCHAR) | SELECT womens_doubles FROM table_14903881_1 WHERE mixed_doubles = "Potten Ruth Scott" |
Write a SQL query that answers the following question: Name the mens singles when mens doubles is george georgoudis gerostergiou | The relevant table was constructed using the following SQL : CREATE TABLE table_14903881_1 (mens_singles VARCHAR, mens_doubles VARCHAR) | SELECT mens_singles FROM table_14903881_1 WHERE mens_doubles = "George Georgoudis Gerostergiou" |
Write a SQL query that answers the following question: Name the womens doubles when mens doubles is theodoros velkos giorgos patis | The relevant table was constructed using the following SQL : CREATE TABLE table_14903881_1 (womens_doubles VARCHAR, mens_doubles VARCHAR) | SELECT womens_doubles FROM table_14903881_1 WHERE mens_doubles = "Theodoros Velkos Giorgos Patis" |
Write a SQL query that answers the following question: What was the earliest year Þorvaldur Ásgeirsson Lovísa Sigurðardóttir won mixed doubles | The relevant table was constructed using the following SQL : CREATE TABLE table_14903999_1 (year INTEGER, mixed_doubles VARCHAR) | SELECT MIN(year) FROM table_14903999_1 WHERE mixed_doubles = "Þorvaldur Ásgeirsson Lovísa Sigurðardóttir" |
Write a SQL query that answers the following question: Who won womens doubles the year magnús ingi helgason tinna helgadóttir won mixed doubles and ragna ingólfsdóttir won womens singles in 2010 | The relevant table was constructed using the following SQL : CREATE TABLE table_14903999_1 (womens_doubles VARCHAR, year VARCHAR, mixed_doubles VARCHAR, womens_singles VARCHAR) | SELECT womens_doubles FROM table_14903999_1 WHERE mixed_doubles = "Magnús Ingi Helgason Tinna Helgadóttir" AND womens_singles = "Ragna Ingólfsdóttir" AND year = 2010 |
Write a SQL query that answers the following question: How many womens doubles had champions the years broddi kristjánsson drífa harðardóttir won mixed doubles | The relevant table was constructed using the following SQL : CREATE TABLE table_14903999_1 (womens_doubles VARCHAR, mixed_doubles VARCHAR) | SELECT COUNT(womens_doubles) FROM table_14903999_1 WHERE mixed_doubles = "Broddi Kristjánsson Drífa Harðardóttir" |
Write a SQL query that answers the following question: What was the last year árni þór hallgrímsson drífa harðardóttir won mixed doubles | The relevant table was constructed using the following SQL : CREATE TABLE table_14903999_1 (year INTEGER, mixed_doubles VARCHAR) | SELECT MAX(year) FROM table_14903999_1 WHERE mixed_doubles = "Árni Þór Hallgrímsson Drífa Harðardóttir" |
Write a SQL query that answers the following question: Who won mens singles the year sveinn logi sölvason tryggvi nilsen won mens doubles and elsa nielsen won womens singles | The relevant table was constructed using the following SQL : CREATE TABLE table_14903999_1 (mens_singles VARCHAR, mens_doubles VARCHAR, womens_singles VARCHAR) | SELECT mens_singles FROM table_14903999_1 WHERE mens_doubles = "Sveinn Logi Sölvason Tryggvi Nilsen" AND womens_singles = "Elsa Nielsen" |
Write a SQL query that answers the following question: In which position is the team Cerro Porteño? | The relevant table was constructed using the following SQL : CREATE TABLE table_14911550_5 (position VARCHAR, team VARCHAR) | SELECT position FROM table_14911550_5 WHERE team = "Cerro Porteño" |
Write a SQL query that answers the following question: How many games were played? | The relevant table was constructed using the following SQL : CREATE TABLE table_14911550_5 (played INTEGER) | SELECT MIN(played) FROM table_14911550_5 |
Write a SQL query that answers the following question: What is the result of men's doubles when there was no competition? | The relevant table was constructed using the following SQL : CREATE TABLE table_14904221_1 (mixed_doubles VARCHAR, mens_doubles VARCHAR) | SELECT mixed_doubles FROM table_14904221_1 WHERE mens_doubles = "no competition" |
Write a SQL query that answers the following question: WHo won men's singles in 1994? | The relevant table was constructed using the following SQL : CREATE TABLE table_14904221_1 (mens_singles VARCHAR, year VARCHAR) | SELECT mens_singles FROM table_14904221_1 WHERE year = 1994 |
Write a SQL query that answers the following question: Who won women's singles in 2001? | The relevant table was constructed using the following SQL : CREATE TABLE table_14904221_1 (womens_singles VARCHAR, year VARCHAR) | SELECT womens_singles FROM table_14904221_1 WHERE year = 2001 |
Write a SQL query that answers the following question: Name the least wins | The relevant table was constructed using the following SQL : CREATE TABLE table_14911550_1 (wins INTEGER) | SELECT MIN(wins) FROM table_14911550_1 |
Write a SQL query that answers the following question: is γолемата вода nominated for anything? | The relevant table was constructed using the following SQL : CREATE TABLE table_14928423_1 (result VARCHAR, original_title VARCHAR) | SELECT result FROM table_14928423_1 WHERE original_title = "Γолемата Вода" |
Write a SQL query that answers the following question: how many years has сенки been nominated? | The relevant table was constructed using the following SQL : CREATE TABLE table_14928423_1 (year__ceremony_ VARCHAR, original_title VARCHAR) | SELECT COUNT(year__ceremony_) FROM table_14928423_1 WHERE original_title = "Сенки" |
Write a SQL query that answers the following question: how many directors for the film мајки | The relevant table was constructed using the following SQL : CREATE TABLE table_14928423_1 (director_s_ VARCHAR, original_title VARCHAR) | SELECT COUNT(director_s_) FROM table_14928423_1 WHERE original_title = "Мајки" |
Write a SQL query that answers the following question: Who is the second performer in episode 5? | The relevant table was constructed using the following SQL : CREATE TABLE table_14934885_1 (performer_2 VARCHAR, episode VARCHAR) | SELECT performer_2 FROM table_14934885_1 WHERE episode = 5 |
Write a SQL query that answers the following question: How many times was performer 3 Kate Robbins? | The relevant table was constructed using the following SQL : CREATE TABLE table_14934885_1 (date VARCHAR, performer_3 VARCHAR) | SELECT COUNT(date) FROM table_14934885_1 WHERE performer_3 = "Kate Robbins" |
Write a SQL query that answers the following question: Who was perfomer one on 30 January 1988? | The relevant table was constructed using the following SQL : CREATE TABLE table_14934885_1 (performer_1 VARCHAR, date VARCHAR) | SELECT performer_1 FROM table_14934885_1 WHERE date = "30 January 1988" |
Write a SQL query that answers the following question: Who was performer 4 when Kate Robbins was performer 3? | The relevant table was constructed using the following SQL : CREATE TABLE table_14934885_1 (performer_4 VARCHAR, performer_3 VARCHAR) | SELECT performer_4 FROM table_14934885_1 WHERE performer_3 = "Kate Robbins" |
Write a SQL query that answers the following question: How many episodes was Jimmy Mulville performer 4? | The relevant table was constructed using the following SQL : CREATE TABLE table_14934885_1 (episode VARCHAR, performer_4 VARCHAR) | SELECT COUNT(episode) FROM table_14934885_1 WHERE performer_4 = "Jimmy Mulville" |
Write a SQL query that answers the following question: Which general election had a vote swing of 1.84? | The relevant table was constructed using the following SQL : CREATE TABLE table_149330_1 (general_election VARCHAR, votes_swing VARCHAR) | SELECT general_election FROM table_149330_1 WHERE votes_swing = "1.84" |
Write a SQL query that answers the following question: What was the total number of seats won where the % of votes is equal to 20.29? | The relevant table was constructed using the following SQL : CREATE TABLE table_149330_1 (seats_won VARCHAR, _percentage_of_votes VARCHAR) | SELECT COUNT(seats_won) FROM table_149330_1 WHERE _percentage_of_votes = "20.29" |
Write a SQL query that answers the following question: What was the number of seat changes when the % of votes was 23.75? | The relevant table was constructed using the following SQL : CREATE TABLE table_149330_1 (change_in_seat VARCHAR, _percentage_of_votes VARCHAR) | SELECT change_in_seat FROM table_149330_1 WHERE _percentage_of_votes = "23.75" |
Write a SQL query that answers the following question: Which general election had a vote swing of 1.69? | The relevant table was constructed using the following SQL : CREATE TABLE table_149330_1 (general_election VARCHAR, votes_swing VARCHAR) | SELECT general_election FROM table_149330_1 WHERE votes_swing = "1.69" |
Write a SQL query that answers the following question: What was the vote swing for the general election of the 12th lok sabha? | The relevant table was constructed using the following SQL : CREATE TABLE table_149330_1 (votes_swing VARCHAR, general_election VARCHAR) | SELECT votes_swing FROM table_149330_1 WHERE general_election = "12th Lok Sabha" |
Write a SQL query that answers the following question: What was the team's result in week 4? | The relevant table was constructed using the following SQL : CREATE TABLE table_14942535_1 (result VARCHAR, week VARCHAR) | SELECT result FROM table_14942535_1 WHERE week = 4 |
Write a SQL query that answers the following question: When the network mask is 255.255.255.252 what is the prefix size? | The relevant table was constructed using the following SQL : CREATE TABLE table_149426_4 (prefix_size VARCHAR, network_mask VARCHAR) | SELECT prefix_size FROM table_149426_4 WHERE network_mask = "255.255.255.252" |
Write a SQL query that answers the following question: available subnets leading total is? | The relevant table was constructed using the following SQL : CREATE TABLE table_149426_4 (available_subnets INTEGER) | SELECT MAX(available_subnets) FROM table_149426_4 |
Write a SQL query that answers the following question: When the network mask is 255.255.255.128 what is the lowest available subnet? | The relevant table was constructed using the following SQL : CREATE TABLE table_149426_4 (available_subnets INTEGER, network_mask VARCHAR) | SELECT MIN(available_subnets) FROM table_149426_4 WHERE network_mask = "255.255.255.128" |
Write a SQL query that answers the following question: When the network mask is 255.255.255.224 what is the highest total usable host? | The relevant table was constructed using the following SQL : CREATE TABLE table_149426_4 (total_usable_hosts INTEGER, network_mask VARCHAR) | SELECT MAX(total_usable_hosts) FROM table_149426_4 WHERE network_mask = "255.255.255.224" |
Write a SQL query that answers the following question: Who were all of the opponents when the date was November 12, 1978? | The relevant table was constructed using the following SQL : CREATE TABLE table_14945112_1 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_14945112_1 WHERE date = "November 12, 1978" |
Write a SQL query that answers the following question: What is the total number of values for attendance for the date October 1, 1978? | The relevant table was constructed using the following SQL : CREATE TABLE table_14945112_1 (attendance VARCHAR, date VARCHAR) | SELECT COUNT(attendance) FROM table_14945112_1 WHERE date = "October 1, 1978" |
Write a SQL query that answers the following question: What was the highest attendance? | The relevant table was constructed using the following SQL : CREATE TABLE table_14945608_1 (attendance INTEGER) | SELECT MAX(attendance) FROM table_14945608_1 |
Write a SQL query that answers the following question: What date did the Colts play New York Jets? | The relevant table was constructed using the following SQL : CREATE TABLE table_14945608_1 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_14945608_1 WHERE opponent = "New York Jets" |
Write a SQL query that answers the following question: How many games had the attendance of 60225? | The relevant table was constructed using the following SQL : CREATE TABLE table_14945608_1 (result VARCHAR, attendance VARCHAR) | SELECT COUNT(result) FROM table_14945608_1 WHERE attendance = 60225 |
Write a SQL query that answers the following question: What was the result of the game on October 6, 1974? | The relevant table was constructed using the following SQL : CREATE TABLE table_14954150_1 (result VARCHAR, date VARCHAR) | SELECT result FROM table_14954150_1 WHERE date = "October 6, 1974" |
Write a SQL query that answers the following question: What was the record on September 22, 1974? | The relevant table was constructed using the following SQL : CREATE TABLE table_14954150_1 (record VARCHAR, date VARCHAR) | SELECT record FROM table_14954150_1 WHERE date = "September 22, 1974" |
Write a SQL query that answers the following question: What was the Bhofen #1 score and rank for the player whose Bhofen #2 score and rank was 231.2 (8)? | The relevant table was constructed using the following SQL : CREATE TABLE table_14948647_1 (bhofen_number1__rk_ VARCHAR, bhofen_number2__rk_ VARCHAR) | SELECT bhofen_number1__rk_ FROM table_14948647_1 WHERE bhofen_number2__rk_ = "231.2 (8)" |
Write a SQL query that answers the following question: What was the Bhofen #2 score and rank for the player whose GA-PA score and rank was 233.4 (16)? | The relevant table was constructed using the following SQL : CREATE TABLE table_14948647_1 (bhofen_number2__rk_ VARCHAR, ga_pa__rk_ VARCHAR) | SELECT bhofen_number2__rk_ FROM table_14948647_1 WHERE ga_pa__rk_ = "233.4 (16)" |
Write a SQL query that answers the following question: What was the Bhofen #2 score and rank for the player whose GA-PA score and rank was 227.5 (19)? | The relevant table was constructed using the following SQL : CREATE TABLE table_14948647_1 (bhofen_number2__rk_ VARCHAR, ga_pa__rk_ VARCHAR) | SELECT bhofen_number2__rk_ FROM table_14948647_1 WHERE ga_pa__rk_ = "227.5 (19)" |
Write a SQL query that answers the following question: How many points in total were scored by the player whose Oberstdork score and rank were 252.6 (11)? | The relevant table was constructed using the following SQL : CREATE TABLE table_14948647_1 (total_points VARCHAR, oberstdorf__rk_ VARCHAR) | SELECT total_points FROM table_14948647_1 WHERE oberstdorf__rk_ = "252.6 (11)" |
Write a SQL query that answers the following question: On which week was the attendance 74303? | The relevant table was constructed using the following SQL : CREATE TABLE table_14958620_1 (week INTEGER, attendance VARCHAR) | SELECT MAX(week) FROM table_14958620_1 WHERE attendance = 74303 |
Write a SQL query that answers the following question: On which date was the game played at Tiger Stadium? | The relevant table was constructed using the following SQL : CREATE TABLE table_14958620_1 (date VARCHAR, game_site VARCHAR) | SELECT date FROM table_14958620_1 WHERE game_site = "Tiger Stadium" |
Write a SQL query that answers the following question: What was the final score of the game against the Dallas Cowboys? | The relevant table was constructed using the following SQL : CREATE TABLE table_14959246_2 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_14959246_2 WHERE opponent = "Dallas Cowboys" |
Write a SQL query that answers the following question: What was the attendance at the game played on December 10, 1972? | The relevant table was constructed using the following SQL : CREATE TABLE table_14959246_2 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_14959246_2 WHERE date = "December 10, 1972" |
Write a SQL query that answers the following question: Name the french actor with javier romano | The relevant table was constructed using the following SQL : CREATE TABLE table_14960574_6 (french_voice_actor VARCHAR, spanish_voice_actor VARCHAR) | SELECT COUNT(french_voice_actor) FROM table_14960574_6 WHERE spanish_voice_actor = "Javier Romano" |
Write a SQL query that answers the following question: Name the german voice actor for alain dorval | The relevant table was constructed using the following SQL : CREATE TABLE table_14960574_6 (german_voice_actor VARCHAR, french_voice_actor VARCHAR) | SELECT german_voice_actor FROM table_14960574_6 WHERE french_voice_actor = "Alain Dorval" |
Write a SQL query that answers the following question: Name the german voice actor for rafael torres | The relevant table was constructed using the following SQL : CREATE TABLE table_14960574_6 (german_voice_actor VARCHAR, spanish_voice_actor VARCHAR) | SELECT german_voice_actor FROM table_14960574_6 WHERE spanish_voice_actor = "Rafael Torres" |
Write a SQL query that answers the following question: Name the character for sophie arthuys | The relevant table was constructed using the following SQL : CREATE TABLE table_14960574_6 (character VARCHAR, french_voice_actor VARCHAR) | SELECT character FROM table_14960574_6 WHERE french_voice_actor = "Sophie Arthuys" |
Write a SQL query that answers the following question: Name the italian voice actor for dirk fenselau | The relevant table was constructed using the following SQL : CREATE TABLE table_14960574_6 (italian_voice_actor VARCHAR, german_voice_actor VARCHAR) | SELECT italian_voice_actor FROM table_14960574_6 WHERE german_voice_actor = "Dirk Fenselau" |
Write a SQL query that answers the following question: which fa cups had a total of 565 (7)? | The relevant table was constructed using the following SQL : CREATE TABLE table_14962287_1 (fa_cup VARCHAR, total VARCHAR) | SELECT fa_cup FROM table_14962287_1 WHERE total = "565 (7)" |
Write a SQL query that answers the following question: which years had other a of 8 (1)? | The relevant table was constructed using the following SQL : CREATE TABLE table_14962287_1 (years VARCHAR, other_a VARCHAR) | SELECT years FROM table_14962287_1 WHERE other_a = "8 (1)" |
Write a SQL query that answers the following question: What name is associated with League 142? | The relevant table was constructed using the following SQL : CREATE TABLE table_14962287_2 (name VARCHAR, league VARCHAR) | SELECT name FROM table_14962287_2 WHERE league = 142 |
Write a SQL query that answers the following question: How many values of Other A correspond to Tommy Johnson Category:Articles with hCards? | The relevant table was constructed using the following SQL : CREATE TABLE table_14962287_2 (other_a VARCHAR, name VARCHAR) | SELECT COUNT(other_a) FROM table_14962287_2 WHERE name = "Tommy Johnson Category:Articles with hCards" |
Write a SQL query that answers the following question: How many different Leagues are associated with Billy Meredith Category:Articles with hCards? | The relevant table was constructed using the following SQL : CREATE TABLE table_14962287_2 (league VARCHAR, name VARCHAR) | SELECT COUNT(league) FROM table_14962287_2 WHERE name = "Billy Meredith Category:Articles with hCards" |
Write a SQL query that answers the following question: How many separate values for Years are associated with FA Cup of 5? | The relevant table was constructed using the following SQL : CREATE TABLE table_14962287_2 (years VARCHAR, fa_cup VARCHAR) | SELECT COUNT(years) FROM table_14962287_2 WHERE fa_cup = 5 |
Write a SQL query that answers the following question: What years have a total of 139? | The relevant table was constructed using the following SQL : CREATE TABLE table_14962287_2 (years VARCHAR, total VARCHAR) | SELECT years FROM table_14962287_2 WHERE total = "139" |
Write a SQL query that answers the following question: What was the GDP (in millions USD) of Indonesia in 2009? | The relevant table was constructed using the following SQL : CREATE TABLE table_1496582_1 (gdp_millions_of_usd__2009_ VARCHAR, country___territory VARCHAR) | SELECT COUNT(gdp_millions_of_usd__2009_) FROM table_1496582_1 WHERE country___territory = "Indonesia" |
Write a SQL query that answers the following question: What was the GDP (in millions USD) of Hong Kong in 2009? | The relevant table was constructed using the following SQL : CREATE TABLE table_1496582_1 (gdp_millions_of_usd__2009_ INTEGER, country___territory VARCHAR) | SELECT MAX(gdp_millions_of_usd__2009_) FROM table_1496582_1 WHERE country___territory = "Hong Kong" |
Write a SQL query that answers the following question: How tall is Braxton Kelley? | The relevant table was constructed using the following SQL : CREATE TABLE table_14966667_19 (height VARCHAR, name VARCHAR) | SELECT height FROM table_14966667_19 WHERE name = "Braxton Kelley" |
Write a SQL query that answers the following question: what class is Braxton Kelley in? | The relevant table was constructed using the following SQL : CREATE TABLE table_14966667_19 (class VARCHAR, name VARCHAR) | SELECT COUNT(class) FROM table_14966667_19 WHERE name = "Braxton Kelley" |
Write a SQL query that answers the following question: how many hometowns use the position of fs? | The relevant table was constructed using the following SQL : CREATE TABLE table_14966667_19 (hometown VARCHAR, position VARCHAR) | SELECT COUNT(hometown) FROM table_14966667_19 WHERE position = "FS" |
Write a SQL query that answers the following question: who is number 98? | The relevant table was constructed using the following SQL : CREATE TABLE table_14966667_19 (name VARCHAR, number VARCHAR) | SELECT name FROM table_14966667_19 WHERE number = "98" |
Write a SQL query that answers the following question: How many games were played against the Chicago Bears? | The relevant table was constructed using the following SQL : CREATE TABLE table_14966537_1 (record VARCHAR, opponent VARCHAR) | SELECT COUNT(record) FROM table_14966537_1 WHERE opponent = "Chicago Bears" |
Write a SQL query that answers the following question: What is the result of the game against the Chicago Bears? | The relevant table was constructed using the following SQL : CREATE TABLE table_14966537_1 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_14966537_1 WHERE opponent = "Chicago Bears" |
Write a SQL query that answers the following question: What was the final score of the game on October 4, 1970? | The relevant table was constructed using the following SQL : CREATE TABLE table_14966537_1 (result VARCHAR, date VARCHAR) | SELECT result FROM table_14966537_1 WHERE date = "October 4, 1970" |
Write a SQL query that answers the following question: Who was the team's opponent of October 25, 1970? | The relevant table was constructed using the following SQL : CREATE TABLE table_14966537_1 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_14966537_1 WHERE date = "October 25, 1970" |
Write a SQL query that answers the following question: Did Flamengo play in the Recopa Sudamericana in 1998 | The relevant table was constructed using the following SQL : CREATE TABLE table_14962316_9 (recopa_sudamericana_1998 VARCHAR, team VARCHAR) | SELECT recopa_sudamericana_1998 FROM table_14962316_9 WHERE team = "Flamengo" |
Write a SQL query that answers the following question: What were Cruzeiro results in the Copa Mercosur in 1998 | The relevant table was constructed using the following SQL : CREATE TABLE table_14962316_9 (copa_mercosur_1998 VARCHAR, team VARCHAR) | SELECT copa_mercosur_1998 FROM table_14962316_9 WHERE team = "Cruzeiro" |
Write a SQL query that answers the following question: Where is California Lutheran University located? | The relevant table was constructed using the following SQL : CREATE TABLE table_14976504_2 (location VARCHAR, institution VARCHAR) | SELECT COUNT(location) FROM table_14976504_2 WHERE institution = "California Lutheran University" |
Write a SQL query that answers the following question: What is the new classification for the University of Arizona Western in the Collegiate Lacrosse League? | The relevant table was constructed using the following SQL : CREATE TABLE table_14976504_2 (new_classification VARCHAR, institution VARCHAR) | SELECT new_classification FROM table_14976504_2 WHERE institution = "University of Arizona" |
Write a SQL query that answers the following question: What is California State University, Hayward's new conference for Western Collegiate Lacrosse? | The relevant table was constructed using the following SQL : CREATE TABLE table_14976504_2 (new_conference VARCHAR, institution VARCHAR) | SELECT new_conference FROM table_14976504_2 WHERE institution = "California State University, Hayward" |
Write a SQL query that answers the following question: Which new conference is the Toreros Western Collegiate Lacrosse team playing in? | The relevant table was constructed using the following SQL : CREATE TABLE table_14976504_2 (new_conference VARCHAR, team_nickname VARCHAR) | SELECT new_conference FROM table_14976504_2 WHERE team_nickname = "Toreros" |
Write a SQL query that answers the following question: In Ascot (UK), what was the result? | The relevant table was constructed using the following SQL : CREATE TABLE table_14981555_3 (result VARCHAR, venue VARCHAR) | SELECT result FROM table_14981555_3 WHERE venue = "Ascot (UK)" |
Write a SQL query that answers the following question: How many different jockeys ran on 17 Feb 2007? | The relevant table was constructed using the following SQL : CREATE TABLE table_14981555_3 (jockey VARCHAR, date VARCHAR) | SELECT COUNT(jockey) FROM table_14981555_3 WHERE date = "17 Feb 2007" |
Write a SQL query that answers the following question: How many venues were used on 10 Mar 2007? | The relevant table was constructed using the following SQL : CREATE TABLE table_14981555_3 (venue VARCHAR, date VARCHAR) | SELECT venue FROM table_14981555_3 WHERE date = "10 Mar 2007" |
Write a SQL query that answers the following question: How many jockeys are listed running at the Sir Rupert Clarke Stakes? | The relevant table was constructed using the following SQL : CREATE TABLE table_14981555_3 (jockey VARCHAR, race VARCHAR) | SELECT COUNT(jockey) FROM table_14981555_3 WHERE race = "Sir Rupert Clarke Stakes" |
Write a SQL query that answers the following question: How many venues had a race called the Australia Stakes? | The relevant table was constructed using the following SQL : CREATE TABLE table_14981555_3 (venue VARCHAR, race VARCHAR) | SELECT COUNT(venue) FROM table_14981555_3 WHERE race = "Australia Stakes" |
Write a SQL query that answers the following question: Where was the 1400 m held? | The relevant table was constructed using the following SQL : CREATE TABLE table_14981555_1 (venue VARCHAR, distance VARCHAR) | SELECT venue FROM table_14981555_1 WHERE distance = "1400 m" |
Write a SQL query that answers the following question: What is the group name when 3yo hcp restricted maiden was raced? | The relevant table was constructed using the following SQL : CREATE TABLE table_14981555_1 (group VARCHAR, race VARCHAR) | SELECT group FROM table_14981555_1 WHERE race = "3yo Hcp Restricted Maiden" |
Write a SQL query that answers the following question: When did the 55 kg participant race? | The relevant table was constructed using the following SQL : CREATE TABLE table_14981555_1 (date VARCHAR, weight__kg_ VARCHAR) | SELECT date FROM table_14981555_1 WHERE weight__kg_ = "55" |
Write a SQL query that answers the following question: Name the number of weeks for 50073 attendance | The relevant table was constructed using the following SQL : CREATE TABLE table_14984050_1 (week VARCHAR, attendance VARCHAR) | SELECT COUNT(week) FROM table_14984050_1 WHERE attendance = 50073 |
Write a SQL query that answers the following question: Name the result for milwaukee county stadium | The relevant table was constructed using the following SQL : CREATE TABLE table_14984050_1 (result VARCHAR, game_site VARCHAR) | SELECT result FROM table_14984050_1 WHERE game_site = "Milwaukee County Stadium" |
Write a SQL query that answers the following question: What was the record when the game was played at Cleveland Municipal Stadium? | The relevant table was constructed using the following SQL : CREATE TABLE table_14984078_1 (record VARCHAR, game_site VARCHAR) | SELECT record FROM table_14984078_1 WHERE game_site = "Cleveland Municipal Stadium" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.