instruction stringlengths 67 299 | input stringlengths 88 550 | output stringlengths 32 484 |
|---|---|---|
Write a SQL query that answers the following question: Who was the incumbent in the Ohio 16 district? | The relevant table was constructed using the following SQL : CREATE TABLE table_1434788_5 (incumbent VARCHAR, district VARCHAR) | SELECT incumbent FROM table_1434788_5 WHERE district = "Ohio 16" |
Write a SQL query that answers the following question: What is the result in 91-92 for the team with a 1.053 average? | The relevant table was constructed using the following SQL : CREATE TABLE table_14368332_1 (average VARCHAR) | SELECT 1991 AS _92 FROM table_14368332_1 WHERE average = "1.053" |
Write a SQL query that answers the following question: Name the birth date for shirt number 7 | The relevant table was constructed using the following SQL : CREATE TABLE table_14363116_1 (birth_date VARCHAR, shirt_no VARCHAR) | SELECT birth_date FROM table_14363116_1 WHERE shirt_no = 7 |
Write a SQL query that answers the following question: Name the maximum height for yury berezhko | The relevant table was constructed using the following SQL : CREATE TABLE table_14363116_1 (height INTEGER, player VARCHAR) | SELECT MAX(height) FROM table_14363116_1 WHERE player = "Yury Berezhko" |
Write a SQL query that answers the following question: Name the 1991-1992 for river plate | The relevant table was constructed using the following SQL : CREATE TABLE table_14390413_1 (team VARCHAR) | SELECT 1991 AS _1992 FROM table_14390413_1 WHERE team = "River Plate" |
Write a SQL query that answers the following question: Which version of opengl is used by model sgx520? | The relevant table was constructed using the following SQL : CREATE TABLE table_1439045_5 (opengl VARCHAR, model VARCHAR) | SELECT opengl AS ES FROM table_1439045_5 WHERE model = "SGX520" |
Write a SQL query that answers the following question: What is the die size(mm 2) for model sgx531? | The relevant table was constructed using the following SQL : CREATE TABLE table_1439045_5 (die_size__mm_2___ VARCHAR, model VARCHAR) | SELECT die_size__mm_2___[1] FROM table_1439045_5 WHERE model = "SGX531" |
Write a SQL query that answers the following question: Name the number of nationality is tom hilde | The relevant table was constructed using the following SQL : CREATE TABLE table_14407512_23 (nationality VARCHAR, name VARCHAR) | SELECT COUNT(nationality) FROM table_14407512_23 WHERE name = "Tom Hilde" |
Write a SQL query that answers the following question: Who was the director of the episode originally aired on 26 October 1969? | The relevant table was constructed using the following SQL : CREATE TABLE table_1439096_1 (director VARCHAR, original_air_date__atv_ VARCHAR) | SELECT director FROM table_1439096_1 WHERE original_air_date__atv_ = "26 October 1969" |
Write a SQL query that answers the following question: What is the lowest production number? | The relevant table was constructed using the following SQL : CREATE TABLE table_1439096_1 (production_no INTEGER) | SELECT MIN(production_no) FROM table_1439096_1 |
Write a SQL query that answers the following question: What is the title of the episode with the original air date of 28 September 1969? | The relevant table was constructed using the following SQL : CREATE TABLE table_1439096_1 (title VARCHAR, original_air_date__atv_ VARCHAR) | SELECT title FROM table_1439096_1 WHERE original_air_date__atv_ = "28 September 1969" |
Write a SQL query that answers the following question: What was the original air date (atv) of episode 1? | The relevant table was constructed using the following SQL : CREATE TABLE table_1439096_1 (original_air_date__atv_ VARCHAR, episode_no VARCHAR) | SELECT original_air_date__atv_ FROM table_1439096_1 WHERE episode_no = 1 |
Write a SQL query that answers the following question: What was the length of the jumper representing FIN, in meters? | The relevant table was constructed using the following SQL : CREATE TABLE table_14407512_4 (nationality VARCHAR) | SELECT 1 AS st__m_ FROM table_14407512_4 WHERE nationality = "FIN" |
Write a SQL query that answers the following question: What is the 1st(m) score for the Person who had a total points of 272.7 | The relevant table was constructed using the following SQL : CREATE TABLE table_14407512_9 (points VARCHAR) | SELECT 1 AS st__m_ FROM table_14407512_9 WHERE points = "272.7" |
Write a SQL query that answers the following question: Name the opponent for week 12 | The relevant table was constructed using the following SQL : CREATE TABLE table_14418812_1 (opponent VARCHAR, week VARCHAR) | SELECT opponent FROM table_14418812_1 WHERE week = 12 |
Write a SQL query that answers the following question: Name the number of date for shea stadium | The relevant table was constructed using the following SQL : CREATE TABLE table_14418812_1 (date VARCHAR, game_site VARCHAR) | SELECT COUNT(date) FROM table_14418812_1 WHERE game_site = "Shea Stadium" |
Write a SQL query that answers the following question: Name the opponent for astrodome | The relevant table was constructed using the following SQL : CREATE TABLE table_14418812_1 (opponent VARCHAR, game_site VARCHAR) | SELECT opponent FROM table_14418812_1 WHERE game_site = "Astrodome" |
Write a SQL query that answers the following question: How many home team scores have a time of 4:40 PM? | The relevant table was constructed using the following SQL : CREATE TABLE table_14425454_1 (home_team VARCHAR, time VARCHAR) | SELECT COUNT(home_team) AS score FROM table_14425454_1 WHERE time = "4:40 PM" |
Write a SQL query that answers the following question: What stadiums had an attendance of 8,256? | The relevant table was constructed using the following SQL : CREATE TABLE table_14425454_1 (ground VARCHAR, crowd VARCHAR) | SELECT ground FROM table_14425454_1 WHERE crowd = "8,256" |
Write a SQL query that answers the following question: What is the total number of attendees where the home team was Port Adelaide? | The relevant table was constructed using the following SQL : CREATE TABLE table_14425454_1 (crowd VARCHAR, home_team VARCHAR) | SELECT COUNT(crowd) FROM table_14425454_1 WHERE home_team = "Port Adelaide" |
Write a SQL query that answers the following question: Which team did they play at Rich Stadium? | The relevant table was constructed using the following SQL : CREATE TABLE table_14423274_3 (opponent VARCHAR, game_site VARCHAR) | SELECT opponent FROM table_14423274_3 WHERE game_site = "Rich Stadium" |
Write a SQL query that answers the following question: What date did they play in Cleveland Municipal Stadium? | The relevant table was constructed using the following SQL : CREATE TABLE table_14423274_3 (date VARCHAR, game_site VARCHAR) | SELECT date FROM table_14423274_3 WHERE game_site = "Cleveland Municipal Stadium" |
Write a SQL query that answers the following question: Name the year model for 4-cyl straight engine dohc 16v and 1.5 crdi | The relevant table was constructed using the following SQL : CREATE TABLE table_1444201_1 (year_model VARCHAR, engine VARCHAR, model VARCHAR) | SELECT year_model FROM table_1444201_1 WHERE engine = "4-cyl Straight engine DOHC 16V" AND model = "1.5 CRDi" |
Write a SQL query that answers the following question: Name the year model for 1.3 | The relevant table was constructed using the following SQL : CREATE TABLE table_1444201_1 (year_model VARCHAR, model VARCHAR) | SELECT year_model FROM table_1444201_1 WHERE model = "1.3" |
Write a SQL query that answers the following question: what is the minimum pos with clubs being 16 | The relevant table was constructed using the following SQL : CREATE TABLE table_14460937_2 (pos INTEGER, clubs VARCHAR) | SELECT MIN(pos) FROM table_14460937_2 WHERE clubs = "16" |
Write a SQL query that answers the following question: what is the maximum value for afc cup | The relevant table was constructed using the following SQL : CREATE TABLE table_14460937_2 (afc_cup INTEGER) | SELECT MAX(afc_cup) FROM table_14460937_2 |
Write a SQL query that answers the following question: how many pos with member association being china pr | The relevant table was constructed using the following SQL : CREATE TABLE table_14460937_2 (pos VARCHAR, member_association VARCHAR) | SELECT COUNT(pos) FROM table_14460937_2 WHERE member_association = "China PR" |
Write a SQL query that answers the following question: how many points (total 500) with pos being 11 | The relevant table was constructed using the following SQL : CREATE TABLE table_14460937_2 (points__total_500_ VARCHAR, pos VARCHAR) | SELECT COUNT(points__total_500_) FROM table_14460937_2 WHERE pos = 11 |
Write a SQL query that answers the following question: How many points in 87/88 for racing de córdoba? | The relevant table was constructed using the following SQL : CREATE TABLE table_14460085_3 (team VARCHAR) | SELECT 1987 AS _88 FROM table_14460085_3 WHERE team = "Racing de Córdoba" |
Write a SQL query that answers the following question: What is the lowest number of games played for deportivo español? | The relevant table was constructed using the following SQL : CREATE TABLE table_14460085_3 (played INTEGER, team VARCHAR) | SELECT MIN(played) FROM table_14460085_3 WHERE team = "Deportivo Español" |
Write a SQL query that answers the following question: How many points total for san lorenzo? | The relevant table was constructed using the following SQL : CREATE TABLE table_14460085_3 (points VARCHAR, team VARCHAR) | SELECT COUNT(points) FROM table_14460085_3 WHERE team = "San Lorenzo" |
Write a SQL query that answers the following question: Name the telephone 052 for area km2 being 5.42 | The relevant table was constructed using the following SQL : CREATE TABLE table_14465924_1 (telephone__052_ VARCHAR, area__km_2__ VARCHAR) | SELECT telephone__052_ FROM table_14465924_1 WHERE area__km_2__ = "5.42" |
Write a SQL query that answers the following question: Name the population of people for area being 24.35 | The relevant table was constructed using the following SQL : CREATE TABLE table_14465924_1 (population__people_ VARCHAR, area__km_2__ VARCHAR) | SELECT population__people_ FROM table_14465924_1 WHERE area__km_2__ = "24.35" |
Write a SQL query that answers the following question: Name the total number of telephone 052 for 362.81 | The relevant table was constructed using the following SQL : CREATE TABLE table_14465924_1 (telephone__052_ VARCHAR, area__km_2__ VARCHAR) | SELECT COUNT(telephone__052_) FROM table_14465924_1 WHERE area__km_2__ = "362.81" |
Write a SQL query that answers the following question: Name the number of administrative unit for number 4 | The relevant table was constructed using the following SQL : CREATE TABLE table_14465924_1 (name_of_administrative_unit VARCHAR, number VARCHAR) | SELECT name_of_administrative_unit FROM table_14465924_1 WHERE number = 4 |
Write a SQL query that answers the following question: Name the name of administrative unit for 3464 people | The relevant table was constructed using the following SQL : CREATE TABLE table_14465924_1 (name_of_administrative_unit VARCHAR, population__people_ VARCHAR) | SELECT name_of_administrative_unit FROM table_14465924_1 WHERE population__people_ = 3464 |
Write a SQL query that answers the following question: How many of the cmdlets are the 2008 version? | The relevant table was constructed using the following SQL : CREATE TABLE table_14465871_2 (cmdlets VARCHAR, version VARCHAR) | SELECT COUNT(cmdlets) FROM table_14465871_2 WHERE version = "2008" |
Write a SQL query that answers the following question: Which providers use exchange server? | The relevant table was constructed using the following SQL : CREATE TABLE table_14465871_2 (provider VARCHAR, application VARCHAR) | SELECT provider FROM table_14465871_2 WHERE application = "Exchange Server" |
Write a SQL query that answers the following question: Which providers use version 2008? | The relevant table was constructed using the following SQL : CREATE TABLE table_14465871_2 (provider VARCHAR, version VARCHAR) | SELECT provider FROM table_14465871_2 WHERE version = "2008" |
Write a SQL query that answers the following question: how many points did the argentinos juniors team score during the 1986-87 season? | The relevant table was constructed using the following SQL : CREATE TABLE table_14489821_1 (team VARCHAR) | SELECT 1986 AS _87 FROM table_14489821_1 WHERE team = "Argentinos Juniors" |
Write a SQL query that answers the following question: what is the maximum number of matches played by a team? | The relevant table was constructed using the following SQL : CREATE TABLE table_14489821_1 (played INTEGER) | SELECT MAX(played) FROM table_14489821_1 |
Write a SQL query that answers the following question: list the number of matches played by the teams that got an average of 1.079 | The relevant table was constructed using the following SQL : CREATE TABLE table_14489821_1 (average VARCHAR) | SELECT 1986 AS _87 FROM table_14489821_1 WHERE average = "1.079" |
Write a SQL query that answers the following question: Name the womens singles for korea open super series | The relevant table was constructed using the following SQL : CREATE TABLE table_14496232_2 (womens_singles VARCHAR, tour VARCHAR) | SELECT womens_singles FROM table_14496232_2 WHERE tour = "Korea Open Super Series" |
Write a SQL query that answers the following question: Name the tour when mens singles is chen jin and womens doubles is zhang yawen zhao tingting | The relevant table was constructed using the following SQL : CREATE TABLE table_14496232_2 (tour VARCHAR, mens_singles VARCHAR, womens_doubles VARCHAR) | SELECT tour FROM table_14496232_2 WHERE mens_singles = "Chen Jin" AND womens_doubles = "Zhang Yawen Zhao Tingting" |
Write a SQL query that answers the following question: Name the womens doubles when tour is malaysia super series | The relevant table was constructed using the following SQL : CREATE TABLE table_14496232_2 (womens_doubles VARCHAR, tour VARCHAR) | SELECT womens_doubles FROM table_14496232_2 WHERE tour = "Malaysia Super Series" |
Write a SQL query that answers the following question: Name the mens singles when womens singles is wang lin and mixed doubles is joachim fischer nielsen christinna pedersen | The relevant table was constructed using the following SQL : CREATE TABLE table_14496232_2 (mens_singles VARCHAR, womens_singles VARCHAR, mixed_doubles VARCHAR) | SELECT mens_singles FROM table_14496232_2 WHERE womens_singles = "Wang Lin" AND mixed_doubles = "Joachim Fischer Nielsen Christinna Pedersen" |
Write a SQL query that answers the following question: Name the mixed doubles when tour is hong kong super series | The relevant table was constructed using the following SQL : CREATE TABLE table_14496232_2 (mixed_doubles VARCHAR, tour VARCHAR) | SELECT mixed_doubles FROM table_14496232_2 WHERE tour = "Hong Kong Super Series" |
Write a SQL query that answers the following question: Name the mixed doubles for zhu lin | The relevant table was constructed using the following SQL : CREATE TABLE table_14496232_2 (mixed_doubles VARCHAR, womens_singles VARCHAR) | SELECT mixed_doubles FROM table_14496232_2 WHERE womens_singles = "Zhu Lin" |
Write a SQL query that answers the following question: Name the week for kingdome | The relevant table was constructed using the following SQL : CREATE TABLE table_14520977_1 (week VARCHAR, location VARCHAR) | SELECT week FROM table_14520977_1 WHERE location = "Kingdome" |
Write a SQL query that answers the following question: Name the date when result is l 13–10 ot | The relevant table was constructed using the following SQL : CREATE TABLE table_14520977_1 (date VARCHAR, result VARCHAR) | SELECT date FROM table_14520977_1 WHERE result = "L 13–10 OT" |
Write a SQL query that answers the following question: Name the record for l 24–22 | The relevant table was constructed using the following SQL : CREATE TABLE table_14520977_1 (record VARCHAR, result VARCHAR) | SELECT record FROM table_14520977_1 WHERE result = "L 24–22" |
Write a SQL query that answers the following question: Which Country is the show aired on Fox? | The relevant table was constructed using the following SQL : CREATE TABLE table_14523485_9 (country VARCHAR, channel VARCHAR) | SELECT country FROM table_14523485_9 WHERE channel = "Fox" |
Write a SQL query that answers the following question: Where is the show aired in New Zealand? | The relevant table was constructed using the following SQL : CREATE TABLE table_14523485_9 (channel VARCHAR, country VARCHAR) | SELECT channel FROM table_14523485_9 WHERE country = "New Zealand" |
Write a SQL query that answers the following question: What channel had the prize of €100,000? | The relevant table was constructed using the following SQL : CREATE TABLE table_14523485_9 (channel VARCHAR, top_prize VARCHAR) | SELECT channel FROM table_14523485_9 WHERE top_prize = "€100,000" |
Write a SQL query that answers the following question: How many hosts were on Seven Network? | The relevant table was constructed using the following SQL : CREATE TABLE table_14523485_9 (host VARCHAR, channel VARCHAR) | SELECT COUNT(host) FROM table_14523485_9 WHERE channel = "Seven Network" |
Write a SQL query that answers the following question: What country is the show aired on TVNZ? | The relevant table was constructed using the following SQL : CREATE TABLE table_14523485_9 (country VARCHAR, channel VARCHAR) | SELECT country FROM table_14523485_9 WHERE channel = "TVNZ" |
Write a SQL query that answers the following question: What is the capital of Umbria? | The relevant table was constructed using the following SQL : CREATE TABLE table_14532_1 (capital VARCHAR, region VARCHAR) | SELECT capital FROM table_14532_1 WHERE region = "Umbria" |
Write a SQL query that answers the following question: What is the region where Milan is located? | The relevant table was constructed using the following SQL : CREATE TABLE table_14532_1 (region VARCHAR, capital VARCHAR) | SELECT region FROM table_14532_1 WHERE capital = "Milan" |
Write a SQL query that answers the following question: What is the area of Tuscany? | The relevant table was constructed using the following SQL : CREATE TABLE table_14532_1 (area__km²_ INTEGER, region VARCHAR) | SELECT MAX(area__km²_) FROM table_14532_1 WHERE region = "Tuscany" |
Write a SQL query that answers the following question: Name the minimum for 2500-3000 ft for scotland | The relevant table was constructed using the following SQL : CREATE TABLE table_1456056_1 (country VARCHAR) | SELECT MIN(2500 AS _3000ft) FROM table_1456056_1 WHERE country = "Scotland" |
Write a SQL query that answers the following question: Name the most of 2500-3000ft | The relevant table was constructed using the following SQL : CREATE TABLE table_1456056_1 (Id VARCHAR) | SELECT MAX(2500 AS _3000ft) FROM table_1456056_1 |
Write a SQL query that answers the following question: Name the minimum total for ireland | The relevant table was constructed using the following SQL : CREATE TABLE table_1456056_1 (total INTEGER, country VARCHAR) | SELECT MIN(total) FROM table_1456056_1 WHERE country = "Ireland" |
Write a SQL query that answers the following question: Who directed all the episodes that were written by aaron ehasz & john o'bryan? | The relevant table was constructed using the following SQL : CREATE TABLE table_14562722_1 (directed_by VARCHAR, written_by VARCHAR) | SELECT directed_by FROM table_14562722_1 WHERE written_by = "Aaron Ehasz & John O'Bryan" |
Write a SQL query that answers the following question: What was the production code of the episode that was written by michael dante dimartino and directed by lauren macmullan? | The relevant table was constructed using the following SQL : CREATE TABLE table_14562722_1 (production_code VARCHAR, written_by VARCHAR, directed_by VARCHAR) | SELECT production_code FROM table_14562722_1 WHERE written_by = "Michael Dante DiMartino" AND directed_by = "Lauren MacMullan" |
Write a SQL query that answers the following question: What was the airdate of the episode that was directed by giancarlo volpe and written by is john o'bryan? | The relevant table was constructed using the following SQL : CREATE TABLE table_14562722_1 (original_air_date VARCHAR, directed_by VARCHAR, written_by VARCHAR) | SELECT original_air_date FROM table_14562722_1 WHERE directed_by = "Giancarlo Volpe" AND written_by = "John O'Bryan" |
Write a SQL query that answers the following question: Which situation has an original u.s. airdate of December 5, 2007? | The relevant table was constructed using the following SQL : CREATE TABLE table_14570857_1 (situation VARCHAR, original_us_airdate VARCHAR) | SELECT situation FROM table_14570857_1 WHERE original_us_airdate = "December 5, 2007" |
Write a SQL query that answers the following question: Name the circuit for gt3 alex mortimer bradley ellis | The relevant table was constructed using the following SQL : CREATE TABLE table_14574130_3 (circuit VARCHAR, gt3_winner VARCHAR) | SELECT circuit FROM table_14574130_3 WHERE gt3_winner = "Alex Mortimer Bradley Ellis" |
Write a SQL query that answers the following question: Name the episodes when region 1 is september 19, 2006 | The relevant table was constructed using the following SQL : CREATE TABLE table_14562722_2 (episodes VARCHAR, region_1 VARCHAR) | SELECT episodes FROM table_14562722_2 WHERE region_1 = "September 19, 2006" |
Write a SQL query that answers the following question: Name the maximum discs | The relevant table was constructed using the following SQL : CREATE TABLE table_14562722_2 (discs INTEGER) | SELECT MAX(discs) FROM table_14562722_2 |
Write a SQL query that answers the following question: Name the most epiosdes when region 4 is march 13, 2008 | The relevant table was constructed using the following SQL : CREATE TABLE table_14562722_2 (episodes INTEGER, region_4 VARCHAR) | SELECT MAX(episodes) FROM table_14562722_2 WHERE region_4 = "March 13, 2008" |
Write a SQL query that answers the following question: what's the individual winners with nation being australia | The relevant table was constructed using the following SQL : CREATE TABLE table_1458666_4 (individual_winners VARCHAR, nation VARCHAR) | SELECT individual_winners FROM table_1458666_4 WHERE nation = "Australia" |
Write a SQL query that answers the following question: what is the value for minimum total wins | The relevant table was constructed using the following SQL : CREATE TABLE table_1458666_4 (total_wins INTEGER) | SELECT MIN(total_wins) FROM table_1458666_4 |
Write a SQL query that answers the following question: What is the total amount o teams where winnings is $1,752,299? | The relevant table was constructed using the following SQL : CREATE TABLE table_1458412_1 (team_s_ VARCHAR, winnings VARCHAR) | SELECT COUNT(team_s_) FROM table_1458412_1 WHERE winnings = "$1,752,299" |
Write a SQL query that answers the following question: What is the avg start that starts at 30? | The relevant table was constructed using the following SQL : CREATE TABLE table_1458412_1 (avg_start VARCHAR, starts VARCHAR) | SELECT avg_start FROM table_1458412_1 WHERE starts = 30 |
Write a SQL query that answers the following question: What is the totl amount of years where avg start is 27.3? | The relevant table was constructed using the following SQL : CREATE TABLE table_1458412_1 (year VARCHAR, avg_start VARCHAR) | SELECT COUNT(year) FROM table_1458412_1 WHERE avg_start = "27.3" |
Write a SQL query that answers the following question: What coach had 15 wins? | The relevant table was constructed using the following SQL : CREATE TABLE table_14594528_6 (name__alma_mater_ VARCHAR, wins VARCHAR) | SELECT name__alma_mater_ FROM table_14594528_6 WHERE wins = 15 |
Write a SQL query that answers the following question: How many losses for the coach that coached 19 games? | The relevant table was constructed using the following SQL : CREATE TABLE table_14594528_6 (losses VARCHAR, games VARCHAR) | SELECT losses FROM table_14594528_6 WHERE games = 19 |
Write a SQL query that answers the following question: Name the number of class aa for bridgeport and 1999-2000 | The relevant table was constructed using the following SQL : CREATE TABLE table_14601528_2 (class_aA VARCHAR, class_aAA VARCHAR, Bridgeport VARCHAR, school_year VARCHAR) | SELECT COUNT(class_aA) FROM table_14601528_2 WHERE class_aAA = Bridgeport AND school_year = "1999-2000" |
Write a SQL query that answers the following question: Name the class aa for 1998-99 | The relevant table was constructed using the following SQL : CREATE TABLE table_14601528_2 (class_aA VARCHAR, school_year VARCHAR) | SELECT class_aA FROM table_14601528_2 WHERE school_year = "1998-99" |
Write a SQL query that answers the following question: Name the class a for pearland | The relevant table was constructed using the following SQL : CREATE TABLE table_14601528_2 (class_a VARCHAR, class_aAAAA VARCHAR, Pearland VARCHAR) | SELECT class_a FROM table_14601528_2 WHERE class_aAAAA = Pearland |
Write a SQL query that answers the following question: Name the class aaaaa for 2005-06 | The relevant table was constructed using the following SQL : CREATE TABLE table_14601528_2 (class_aAAAA VARCHAR, school_year VARCHAR) | SELECT class_aAAAA FROM table_14601528_2 WHERE school_year = "2005-06" |
Write a SQL query that answers the following question: Name the number of class aaaaa for 1988-89 | The relevant table was constructed using the following SQL : CREATE TABLE table_14601528_2 (class_aAAAA VARCHAR, school_year VARCHAR) | SELECT COUNT(class_aAAAA) FROM table_14601528_2 WHERE school_year = "1988-89" |
Write a SQL query that answers the following question: What is the percentage of females where in India and are maharashtra? | The relevant table was constructed using the following SQL : CREATE TABLE table_14598_9 (females___percentage_ VARCHAR, india_state_ut VARCHAR) | SELECT females___percentage_ FROM table_14598_9 WHERE india_state_ut = "Maharashtra" |
Write a SQL query that answers the following question: What is the percentage of all females that are literate people have a percentage of 68.74? | The relevant table was constructed using the following SQL : CREATE TABLE table_14598_9 (females___percentage_ VARCHAR, literate_persons___percentage_ VARCHAR) | SELECT females___percentage_ FROM table_14598_9 WHERE literate_persons___percentage_ = "68.74" |
Write a SQL query that answers the following question: What is the percentage of females where the state code is a 4? | The relevant table was constructed using the following SQL : CREATE TABLE table_14598_9 (females___percentage_ VARCHAR, state_ut_code VARCHAR) | SELECT females___percentage_ FROM table_14598_9 WHERE state_ut_code = 4 |
Write a SQL query that answers the following question: What is the percentage of all the literate people where females are 73.17? | The relevant table was constructed using the following SQL : CREATE TABLE table_14598_9 (literate_persons___percentage_ VARCHAR, females___percentage_ VARCHAR) | SELECT literate_persons___percentage_ FROM table_14598_9 WHERE females___percentage_ = "73.17" |
Write a SQL query that answers the following question: What is the percentage of literate people where india is andaman and Nicobar Islands? | The relevant table was constructed using the following SQL : CREATE TABLE table_14598_9 (literate_persons___percentage_ VARCHAR, india_state_ut VARCHAR) | SELECT literate_persons___percentage_ FROM table_14598_9 WHERE india_state_ut = "Andaman and Nicobar Islands" |
Write a SQL query that answers the following question: Who was the Class AAAA champion in 2006-07? | The relevant table was constructed using the following SQL : CREATE TABLE table_14603057_2 (class_aAAA VARCHAR, school_year VARCHAR) | SELECT class_aAAA FROM table_14603057_2 WHERE school_year = "2006-07" |
Write a SQL query that answers the following question: How many times was there a class A winner when Gregory-Portland was the class AAAA? | The relevant table was constructed using the following SQL : CREATE TABLE table_14603057_2 (class_a VARCHAR, class_aAAA VARCHAR, Gregory VARCHAR, Portland VARCHAR) | SELECT COUNT(class_a) FROM table_14603057_2 WHERE class_aAAA = Gregory - Portland |
Write a SQL query that answers the following question: How many Class AAAA winners where in 2002-03? | The relevant table was constructed using the following SQL : CREATE TABLE table_14603057_2 (class_aAAA VARCHAR, school_year VARCHAR) | SELECT COUNT(class_aAAA) FROM table_14603057_2 WHERE school_year = "2002-03" |
Write a SQL query that answers the following question: Who was the class AAAAA in 2008-09? | The relevant table was constructed using the following SQL : CREATE TABLE table_14603057_2 (class_aAAAA VARCHAR, school_year VARCHAR) | SELECT class_aAAAA FROM table_14603057_2 WHERE school_year = "2008-09" |
Write a SQL query that answers the following question: Who was the Class AA winner when Plains was Class A winner and Lubbock was Class AAAAA winner? | The relevant table was constructed using the following SQL : CREATE TABLE table_14603057_2 (class_aA VARCHAR, class_a VARCHAR, class_aAAAA VARCHAR, Lubbock VARCHAR) | SELECT class_aA FROM table_14603057_2 WHERE class_a = "Plains" AND class_aAAAA = Lubbock |
Write a SQL query that answers the following question: Who was the Class A winner in 2006-07? | The relevant table was constructed using the following SQL : CREATE TABLE table_14603057_2 (class_a VARCHAR, school_year VARCHAR) | SELECT class_a FROM table_14603057_2 WHERE school_year = "2006-07" |
Write a SQL query that answers the following question: If class a is canadian and class aaa is wimberley, which possible school years could this fall on? | The relevant table was constructed using the following SQL : CREATE TABLE table_14603212_1 (school_year VARCHAR, class_aAA VARCHAR, Wimberley VARCHAR, class_a VARCHAR) | SELECT school_year FROM table_14603212_1 WHERE class_aAA = Wimberley AND class_a = "Canadian" |
Write a SQL query that answers the following question: For franklin of class aa, which school years does this occur? | The relevant table was constructed using the following SQL : CREATE TABLE table_14603212_1 (school_year VARCHAR, class_aA VARCHAR, Franklin VARCHAR) | SELECT school_year FROM table_14603212_1 WHERE class_aA = Franklin |
Write a SQL query that answers the following question: Which school years have a class a being lindsay and a class aaa being cuero? | The relevant table was constructed using the following SQL : CREATE TABLE table_14603212_1 (school_year VARCHAR, class_a VARCHAR, class_aAA VARCHAR, Cuero VARCHAR) | SELECT school_year FROM table_14603212_1 WHERE class_a = "Lindsay" AND class_aAA = Cuero |
Write a SQL query that answers the following question: What season was the overall record 29-7? | The relevant table was constructed using the following SQL : CREATE TABLE table_14609295_4 (season VARCHAR, overall VARCHAR) | SELECT season FROM table_14609295_4 WHERE overall = "29-7" |
Write a SQL query that answers the following question: How far into the postseason did the Rams go when their record was 29-7? | The relevant table was constructed using the following SQL : CREATE TABLE table_14609295_4 (postseason VARCHAR, overall VARCHAR) | SELECT postseason FROM table_14609295_4 WHERE overall = "29-7" |
Write a SQL query that answers the following question: What was the Ram's conference record when they were the CBI champions? | The relevant table was constructed using the following SQL : CREATE TABLE table_14609295_4 (conference VARCHAR, postseason VARCHAR) | SELECT conference FROM table_14609295_4 WHERE postseason = "CBI Champions" |
Write a SQL query that answers the following question: What season was the overall record 24-10? | The relevant table was constructed using the following SQL : CREATE TABLE table_14609295_4 (season VARCHAR, overall VARCHAR) | SELECT season FROM table_14609295_4 WHERE overall = "24-10" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.