question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
Name the m r romaja for kwanbuk | CREATE TABLE table_160510_5 (m_r_romaja VARCHAR, region VARCHAR) | {
"SQL_Query": "SELECT m_r_romaja FROM table_160510_5 WHERE region = \"Kwanbuk\""
} |
Name the population density where population % is 1.1% for slovakia | CREATE TABLE table_1606824_1 (pop_density_people_km_2 VARCHAR, population__percentage_of_eu VARCHAR, member_state VARCHAR) | {
"SQL_Query": "SELECT pop_density_people_km_2 FROM table_1606824_1 WHERE population__percentage_of_eu = \"1.1%\" AND member_state = \"Slovakia\""
} |
Name the population density people where population % eu for 1.7% | CREATE TABLE table_1606824_1 (pop_density_people_km_2 VARCHAR, population__percentage_of_eu VARCHAR) | {
"SQL_Query": "SELECT COUNT(pop_density_people_km_2) FROM table_1606824_1 WHERE population__percentage_of_eu = \"1.7%\""
} |
Name the number of area km 2 for population density is 87 | CREATE TABLE table_1606824_1 (area_km_2 VARCHAR, pop_density_people_km_2 VARCHAR) | {
"SQL_Query": "SELECT COUNT(area_km_2) FROM table_1606824_1 WHERE pop_density_people_km_2 = \"87\""
} |
Name the population % of eu for greece | CREATE TABLE table_1606824_1 (population__percentage_of_eu VARCHAR, member_state VARCHAR) | {
"SQL_Query": "SELECT population__percentage_of_eu FROM table_1606824_1 WHERE member_state = \"Greece\""
} |
How many networks are there that have a channel number 7? | CREATE TABLE table_160728_4 (network VARCHAR, channel VARCHAR) | {
"SQL_Query": "SELECT COUNT(network) FROM table_160728_4 WHERE channel = 7"
} |
What station on the network is tv3? | CREATE TABLE table_160728_4 (network VARCHAR, station VARCHAR) | {
"SQL_Query": "SELECT network FROM table_160728_4 WHERE station = \"TV3\""
} |
What year was the team named the Raiders established? | CREATE TABLE table_16078390_2 (founded INTEGER, team_nickname VARCHAR) | {
"SQL_Query": "SELECT MAX(founded) FROM table_16078390_2 WHERE team_nickname = \"Raiders\""
} |
What conference does Gonzaga University play in? | CREATE TABLE table_16078390_2 (primary_conference VARCHAR, institution VARCHAR) | {
"SQL_Query": "SELECT primary_conference FROM table_16078390_2 WHERE institution = \"Gonzaga University\""
} |
How many Universities were founded in Tacoma, Washington? | CREATE TABLE table_16078390_2 (founded VARCHAR, location VARCHAR) | {
"SQL_Query": "SELECT COUNT(founded) FROM table_16078390_2 WHERE location = \"Tacoma, Washington\""
} |
Which school's team has the nickname of the Wildcats? | CREATE TABLE table_16078390_2 (institution VARCHAR, team_nickname VARCHAR) | {
"SQL_Query": "SELECT institution FROM table_16078390_2 WHERE team_nickname = \"Wildcats\""
} |
What year was the university that is located in Ellensburg, Washington established? | CREATE TABLE table_16078390_2 (founded INTEGER, location VARCHAR) | {
"SQL_Query": "SELECT MIN(founded) FROM table_16078390_2 WHERE location = \"Ellensburg, Washington\""
} |
Where is the university located that's nicknamed the Wolves? | CREATE TABLE table_16078390_2 (location VARCHAR, team_nickname VARCHAR) | {
"SQL_Query": "SELECT location FROM table_16078390_2 WHERE team_nickname = \"Wolves\""
} |
What is the total number of viewers where the share is 7 and the week rank is 64? | CREATE TABLE table_16072430_1 (viewers VARCHAR, share VARCHAR, weekly_rank VARCHAR) | {
"SQL_Query": "SELECT COUNT(viewers) FROM table_16072430_1 WHERE share = 7 AND weekly_rank = \"64\""
} |
How many episodes have a share bigger than 7.0? | CREATE TABLE table_16072430_1 (_number VARCHAR, share INTEGER) | {
"SQL_Query": "SELECT COUNT(_number) FROM table_16072430_1 WHERE share > 7.0"
} |
How many episodes have a weekly rank tba and are broadcast at 8:00 p.m.? | CREATE TABLE table_16072430_1 (_number VARCHAR, weekly_rank VARCHAR, timeslot VARCHAR) | {
"SQL_Query": "SELECT COUNT(_number) FROM table_16072430_1 WHERE weekly_rank = \"TBA\" AND timeslot = \"8:00 P.M.\""
} |
What are the timeslot(s) for broadcast on February 22, 2008? | CREATE TABLE table_16072430_1 (timeslot VARCHAR, air_date VARCHAR) | {
"SQL_Query": "SELECT timeslot FROM table_16072430_1 WHERE air_date = \"February 22, 2008\""
} |
What broadcast dates have a weekly rank of 73? | CREATE TABLE table_16072430_1 (air_date VARCHAR, weekly_rank VARCHAR) | {
"SQL_Query": "SELECT COUNT(air_date) FROM table_16072430_1 WHERE weekly_rank = \"73\""
} |
When was the date of appointment for St. Johnstone's manager? | CREATE TABLE table_16075179_6 (date_of_appointment VARCHAR, team VARCHAR) | {
"SQL_Query": "SELECT date_of_appointment FROM table_16075179_6 WHERE team = \"St. Johnstone\""
} |
Who was the outgoing manager for Aberdeen? | CREATE TABLE table_16075179_6 (outgoing_manager VARCHAR, team VARCHAR) | {
"SQL_Query": "SELECT outgoing_manager FROM table_16075179_6 WHERE team = \"Aberdeen\""
} |
When was the date of appointment for the manager replacing Wim Jansen? | CREATE TABLE table_16075179_6 (date_of_appointment VARCHAR, outgoing_manager VARCHAR) | {
"SQL_Query": "SELECT date_of_appointment FROM table_16075179_6 WHERE outgoing_manager = \"Wim Jansen\""
} |
What is the result for salmonella spp. if you use citrate? | CREATE TABLE table_16083989_1 (citrate VARCHAR, species VARCHAR) | {
"SQL_Query": "SELECT COUNT(citrate) FROM table_16083989_1 WHERE species = \"Salmonella spp.\""
} |
Which species show a negative result with both voges-proskauer and indole? | CREATE TABLE table_16083989_1 (species VARCHAR, voges_proskauer VARCHAR, indole VARCHAR) | {
"SQL_Query": "SELECT species FROM table_16083989_1 WHERE voges_proskauer = \"Negative\" AND indole = \"Negative\""
} |
What are the results for testing the species with voges-proskauer when citrate yields a positive result? | CREATE TABLE table_16083989_1 (voges_proskauer VARCHAR, citrate VARCHAR) | {
"SQL_Query": "SELECT voges_proskauer FROM table_16083989_1 WHERE citrate = \"Positive\""
} |
What is the result of proteus mirabilis tested with indole? | CREATE TABLE table_16083989_1 (indole VARCHAR, species VARCHAR) | {
"SQL_Query": "SELECT indole FROM table_16083989_1 WHERE species = \"Proteus mirabilis\""
} |
When was the show originally aired that had a TV broadcast of S07E04? | CREATE TABLE table_16090262_1 (originalairdate VARCHAR, tv_broadcast VARCHAR) | {
"SQL_Query": "SELECT originalairdate FROM table_16090262_1 WHERE tv_broadcast = \"S07E04\""
} |
Which title was No. 4 in season? | CREATE TABLE table_16090262_1 (title VARCHAR, no_in_season VARCHAR) | {
"SQL_Query": "SELECT title FROM table_16090262_1 WHERE no_in_season = 4"
} |
Who directed the show that had a TV broadcast of S07E04? | CREATE TABLE table_16090262_1 (directed_by VARCHAR, tv_broadcast VARCHAR) | {
"SQL_Query": "SELECT directed_by FROM table_16090262_1 WHERE tv_broadcast = \"S07E04\""
} |
What was the emission rating in Mid-Atlantic South for the vehicle that was rated 90 g/mi (56 g/km) in Alaska and 110 g/mi (68 g/km) in California? | CREATE TABLE table_16105186_2 (mid_atlantic_south__washington VARCHAR, _dc_ VARCHAR, alaska___juneau__ VARCHAR, california__san_francisco_ VARCHAR) | {
"SQL_Query": "SELECT mid_atlantic_south__washington, _dc_ FROM table_16105186_2 WHERE alaska___juneau__ = \"90 g/mi (56 g/km)\" AND california__san_francisco_ = \"110 g/mi (68 g/km)\""
} |
What was the emission rating in Mid-Atlantic South for the vehicle that was rated 300 g/mi (186 g/km) in the Midwest? | CREATE TABLE table_16105186_2 (mid_atlantic_south__washington VARCHAR, _dc_ VARCHAR, midwest__des_moines_ VARCHAR) | {
"SQL_Query": "SELECT mid_atlantic_south__washington, _dc_ FROM table_16105186_2 WHERE midwest__des_moines_ = \"300 g/mi (186 g/km)\""
} |
What was the US national average electric mix rating for the vehicle that was rated 280 g/mi (174 g/km) in the Midwest? | CREATE TABLE table_16105186_2 (us_national_average_electric_mix VARCHAR, midwest__des_moines_ VARCHAR) | {
"SQL_Query": "SELECT us_national_average_electric_mix FROM table_16105186_2 WHERE midwest__des_moines_ = \"280 g/mi (174 g/km)\""
} |
How many Ford Focus electric vehicle emission test scores were recorded in California? | CREATE TABLE table_16105186_2 (california__san_francisco_ VARCHAR, vehicle VARCHAR) | {
"SQL_Query": "SELECT COUNT(california__san_francisco_) FROM table_16105186_2 WHERE vehicle = \"Ford Focus Electric\""
} |
What was the emission rating in California for the vehicle that was rated 80 g/mi (50 g/km) in Alaska and 250 g/mi (155 g/km) in the Southeast ? | CREATE TABLE table_16105186_2 (california__san_francisco_ VARCHAR, alaska___juneau__ VARCHAR, southeast__atlanta_ VARCHAR) | {
"SQL_Query": "SELECT california__san_francisco_ FROM table_16105186_2 WHERE alaska___juneau__ = \"80 g/mi (50 g/km)\" AND southeast__atlanta_ = \"250 g/mi (155 g/km)\""
} |
What was the lowest no. of attendance on record? | CREATE TABLE table_16119656_1 (attendance INTEGER) | {
"SQL_Query": "SELECT MIN(attendance) FROM table_16119656_1"
} |
When was the game played if the attendance is less than 6427.0? | CREATE TABLE table_16119656_1 (date VARCHAR, attendance INTEGER) | {
"SQL_Query": "SELECT date FROM table_16119656_1 WHERE attendance < 6427.0"
} |
How many were in attendance during the game on January 9, 1988? | CREATE TABLE table_16119656_1 (attendance VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT attendance FROM table_16119656_1 WHERE date = \"January 9, 1988\""
} |
Where is the headquarters of the place whose abbreviation is hy? | CREATE TABLE table_1610301_1 (headquarters VARCHAR, code VARCHAR) | {
"SQL_Query": "SELECT headquarters FROM table_1610301_1 WHERE code = \"HY\""
} |
Where is the headquarters of the place whose population in 2011 was 3811738? | CREATE TABLE table_1610301_1 (headquarters VARCHAR, population__2011_ VARCHAR) | {
"SQL_Query": "SELECT headquarters FROM table_1610301_1 WHERE population__2011_ = 3811738"
} |
What was the minimum population in 2011 of the district of Prakasam? | CREATE TABLE table_1610301_1 (population__2011_ INTEGER, district VARCHAR) | {
"SQL_Query": "SELECT MIN(population__2011_) FROM table_1610301_1 WHERE district = \"Prakasam\""
} |
What is the abbreviation of the district of Mahbubnagar? | CREATE TABLE table_1610301_1 (code VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT code FROM table_1610301_1 WHERE district = \"Mahbubnagar\""
} |
What is the 2011 population of the district of East Godavari? | CREATE TABLE table_1610301_1 (population__2011_ VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT population__2011_ FROM table_1610301_1 WHERE district = \"East Godavari\""
} |
What is the adjusted GDP when the nominal GDP per capita is 2874? | CREATE TABLE table_1610496_3 (gdp_adjusted__$_billions_ VARCHAR, gdp_per_capita_nominal__$_ VARCHAR) | {
"SQL_Query": "SELECT gdp_adjusted__$_billions_ FROM table_1610496_3 WHERE gdp_per_capita_nominal__$_ = 2874"
} |
What is the adjusted GDP per capita when the population is 37.376 million? | CREATE TABLE table_1610496_3 (gdp_per_capita_adjusted__$_ VARCHAR, population__millions_ VARCHAR) | {
"SQL_Query": "SELECT gdp_per_capita_adjusted__$_ FROM table_1610496_3 WHERE population__millions_ = \"37.376\""
} |
What is the nominal GDP per capita when the population is 63.056 million? | CREATE TABLE table_1610496_3 (gdp_per_capita_nominal__ INTEGER, population__millions_ VARCHAR) | {
"SQL_Query": "SELECT MIN(gdp_per_capita_nominal__) AS $_ FROM table_1610496_3 WHERE population__millions_ = \"63.056\""
} |
What is the adjusted GDP when the population is 5.141 million? | CREATE TABLE table_1610496_3 (gdp_adjusted__$_billions_ VARCHAR, population__millions_ VARCHAR) | {
"SQL_Query": "SELECT gdp_adjusted__$_billions_ FROM table_1610496_3 WHERE population__millions_ = \"5.141\""
} |
What is the population in millions when the adjusted GDP is 492 billion? | CREATE TABLE table_1610496_3 (population__millions_ VARCHAR, gdp_adjusted__$_billions_ VARCHAR) | {
"SQL_Query": "SELECT population__millions_ FROM table_1610496_3 WHERE gdp_adjusted__$_billions_ = \"492\""
} |
What is the adjusted GDP when the nominal GDP is 8.43 (in billions)? | CREATE TABLE table_1610496_3 (gdp_adjusted__$_billions_ VARCHAR, gdp_nominal__$_billions_ VARCHAR) | {
"SQL_Query": "SELECT gdp_adjusted__$_billions_ FROM table_1610496_3 WHERE gdp_nominal__$_billions_ = \"8.43\""
} |
What was the opearint profit (s$m) associated with an expenditure (s$m) of 12,127.8? | CREATE TABLE table_161591_2 (operating_profit__s$m_ VARCHAR, expenditure__s$m_ VARCHAR) | {
"SQL_Query": "SELECT operating_profit__s$m_ FROM table_161591_2 WHERE expenditure__s$m_ = \"12,127.8\""
} |
What was the expenditure (s$m) associated with an operating profit (s$m) of 717.1? | CREATE TABLE table_161591_2 (expenditure__s$m_ VARCHAR, operating_profit__s$m_ VARCHAR) | {
"SQL_Query": "SELECT expenditure__s$m_ FROM table_161591_2 WHERE operating_profit__s$m_ = \"717.1\""
} |
How many years was the operating profit (s$m) 717.1? | CREATE TABLE table_161591_2 (profit_before_taxation__s VARCHAR, operating_profit__s$m_ VARCHAR) | {
"SQL_Query": "SELECT COUNT(profit_before_taxation__s) AS $m_ FROM table_161591_2 WHERE operating_profit__s$m_ = \"717.1\""
} |
Name the simplified characters for wade giles is ch'ing-yüan … i-ma | CREATE TABLE table_16162581_1 (simplified_characters VARCHAR, wade_giles VARCHAR) | {
"SQL_Query": "SELECT simplified_characters FROM table_16162581_1 WHERE wade_giles = \"ch'ing-yüan … i-ma\""
} |
Name the pinyin for 657 date | CREATE TABLE table_16162581_1 (pinyin VARCHAR, date__ce_ VARCHAR) | {
"SQL_Query": "SELECT pinyin FROM table_16162581_1 WHERE date__ce_ = \"657\""
} |
Name the text for 心猿意马 | CREATE TABLE table_16162581_1 (text VARCHAR, simplified_characters VARCHAR) | {
"SQL_Query": "SELECT text FROM table_16162581_1 WHERE simplified_characters = \"心猿意马\""
} |
Name the simplified charaacters being hsin-yüan … i-ma | CREATE TABLE table_16162581_1 (simplified_characters VARCHAR, wade_giles VARCHAR) | {
"SQL_Query": "SELECT simplified_characters FROM table_16162581_1 WHERE wade_giles = \"hsin-yüan … i-ma\""
} |
Name the total number of pinyin for hsin-yüan-i-ma | CREATE TABLE table_16162581_1 (pinyin VARCHAR, wade_giles VARCHAR) | {
"SQL_Query": "SELECT COUNT(pinyin) FROM table_16162581_1 WHERE wade_giles = \"hsin-yüan-i-ma\""
} |
Name the date for qíngyuán … yìmǎ | CREATE TABLE table_16162581_1 (date__ce_ VARCHAR, pinyin VARCHAR) | {
"SQL_Query": "SELECT date__ce_ FROM table_16162581_1 WHERE pinyin = \"qíngyuán … yìmǎ\""
} |
Which line offers Fast to Norwood Junction? | CREATE TABLE table_1612760_1 (line VARCHAR, service_pattern VARCHAR) | {
"SQL_Query": "SELECT line FROM table_1612760_1 WHERE service_pattern = \"Fast to Norwood Junction\""
} |
Who is the operator to Highbury & Islington? | CREATE TABLE table_1612760_1 (operator VARCHAR, destination VARCHAR) | {
"SQL_Query": "SELECT operator FROM table_1612760_1 WHERE destination = \"Highbury & Islington\""
} |
How many frequency figures are given for next station service pattern? | CREATE TABLE table_1612760_1 (frequency__per_hour_ VARCHAR, service_pattern VARCHAR) | {
"SQL_Query": "SELECT COUNT(frequency__per_hour_) FROM table_1612760_1 WHERE service_pattern = \"Next station\""
} |
Who is the operator to destination Dalston Junction? | CREATE TABLE table_1612760_1 (operator VARCHAR, destination VARCHAR) | {
"SQL_Query": "SELECT operator FROM table_1612760_1 WHERE destination = \"Dalston Junction\""
} |
How many tournament wins were at Volvo Masters Andalucia? | CREATE TABLE table_1615980_4 (no VARCHAR, tournament VARCHAR) | {
"SQL_Query": "SELECT COUNT(no) FROM table_1615980_4 WHERE tournament = \"Volvo Masters Andalucia\""
} |
Who was the runner up at the Volvo Masters Andalucia? | CREATE TABLE table_1615980_4 (runner_s__up VARCHAR, tournament VARCHAR) | {
"SQL_Query": "SELECT runner_s__up FROM table_1615980_4 WHERE tournament = \"Volvo Masters Andalucia\""
} |
In what tournament was the winning score 68-67-65-66=266? | CREATE TABLE table_1615980_4 (tournament VARCHAR, winning_score VARCHAR) | {
"SQL_Query": "SELECT tournament FROM table_1615980_4 WHERE winning_score = 68 - 67 - 65 - 66 = 266"
} |
Name the joined for blue hose | CREATE TABLE table_16168849_1 (joined VARCHAR, nickname VARCHAR) | {
"SQL_Query": "SELECT joined FROM table_16168849_1 WHERE nickname = \"Blue Hose\""
} |
Name the maximum founded for blue hose | CREATE TABLE table_16168849_1 (founded INTEGER, nickname VARCHAR) | {
"SQL_Query": "SELECT MAX(founded) FROM table_16168849_1 WHERE nickname = \"Blue Hose\""
} |
Name the maximum enrollment for st. andrews university | CREATE TABLE table_16168849_1 (enrollment INTEGER, institution VARCHAR) | {
"SQL_Query": "SELECT MAX(enrollment) FROM table_16168849_1 WHERE institution = \"St. Andrews University\""
} |
Name the current conference for 1974, 1989 | CREATE TABLE table_16168849_1 (current_conference VARCHAR, left VARCHAR) | {
"SQL_Query": "SELECT current_conference FROM table_16168849_1 WHERE left = \"1974, 1989\""
} |
What is the total number of episodes where alexa wyatt is the writer? | CREATE TABLE table_16175064_3 (series__number VARCHAR, writer_s_ VARCHAR) | {
"SQL_Query": "SELECT COUNT(series__number) FROM table_16175064_3 WHERE writer_s_ = \"Alexa Wyatt\""
} |
Who is the director when Chris Hawkshaw is the writer? | CREATE TABLE table_16175064_3 (director_s_ VARCHAR, writer_s_ VARCHAR) | {
"SQL_Query": "SELECT director_s_ FROM table_16175064_3 WHERE writer_s_ = \"Chris Hawkshaw\""
} |
What is the season number of the episode directed by Donald Crombie and the series number is 40? | CREATE TABLE table_16175064_3 (season__number VARCHAR, director_s_ VARCHAR, series__number VARCHAR) | {
"SQL_Query": "SELECT season__number FROM table_16175064_3 WHERE director_s_ = \"Donald Crombie\" AND series__number = 40"
} |
What is the released date for Super Mario 64 DS? | CREATE TABLE table_1616608_2 (released_date VARCHAR, western_title VARCHAR) | {
"SQL_Query": "SELECT released_date FROM table_1616608_2 WHERE western_title = \"Super Mario 64 DS\""
} |
What are the game modes for the game released in 2007? | CREATE TABLE table_1616608_2 (game_modes VARCHAR, released_date VARCHAR) | {
"SQL_Query": "SELECT game_modes FROM table_1616608_2 WHERE released_date = \"2007\""
} |
How many games share their western title with the Chinese title of 摸摸耀西-云中漫步 ? | CREATE TABLE table_1616608_2 (western_title VARCHAR, chinese_title VARCHAR) | {
"SQL_Query": "SELECT COUNT(western_title) FROM table_1616608_2 WHERE chinese_title = \"摸摸耀西-云中漫步\""
} |
What was the released date of Polarium? | CREATE TABLE table_1616608_2 (released_date VARCHAR, western_title VARCHAR) | {
"SQL_Query": "SELECT released_date FROM table_1616608_2 WHERE western_title = \"Polarium\""
} |
What game modes are there when the pinyin is zhígǎn yī bǐ ? | CREATE TABLE table_1616608_2 (game_modes VARCHAR, pinyin VARCHAR) | {
"SQL_Query": "SELECT game_modes FROM table_1616608_2 WHERE pinyin = \"Zhígǎn Yī Bǐ\""
} |
What is the status of donor payment in the country where there are 6 children per donor and no data on allowed recipients? | CREATE TABLE table_16175217_1 (donor_payment VARCHAR, children_per_donor VARCHAR, allowed_recipients VARCHAR) | {
"SQL_Query": "SELECT donor_payment FROM table_16175217_1 WHERE children_per_donor = \"6 children\" AND allowed_recipients = \"no data\""
} |
What are donor payments in the country where there are 12 children to 6 families (2 per family)? | CREATE TABLE table_16175217_1 (donor_payment VARCHAR, children_per_donor VARCHAR) | {
"SQL_Query": "SELECT donor_payment FROM table_16175217_1 WHERE children_per_donor = \"12 children to 6 families (2 per family)\""
} |
What is the donor payment in Belgium? | CREATE TABLE table_16175217_1 (donor_payment VARCHAR, country VARCHAR) | {
"SQL_Query": "SELECT donor_payment FROM table_16175217_1 WHERE country = \"Belgium\""
} |
What is the country where there are 8 children per donor and no data for donor payments? | CREATE TABLE table_16175217_1 (country VARCHAR, children_per_donor VARCHAR, donor_payment VARCHAR) | {
"SQL_Query": "SELECT country FROM table_16175217_1 WHERE children_per_donor = \"8 children\" AND donor_payment = \"no data\""
} |
What are the children per donor in the country where the allowed recipients are married or in cohabitation? | CREATE TABLE table_16175217_1 (children_per_donor VARCHAR, allowed_recipients VARCHAR) | {
"SQL_Query": "SELECT children_per_donor FROM table_16175217_1 WHERE allowed_recipients = \"Married or in cohabitation\""
} |
List the possible children per donor levels for countries where the allowed recipients is no data. | CREATE TABLE table_16175217_1 (children_per_donor VARCHAR, allowed_recipients VARCHAR) | {
"SQL_Query": "SELECT children_per_donor FROM table_16175217_1 WHERE allowed_recipients = \"no data\""
} |
Against which team does Missouri Tigers have a record of mu, 2-1 at a neutral site? | CREATE TABLE table_16201038_4 (missouri_vs VARCHAR, at_neutral_site VARCHAR) | {
"SQL_Query": "SELECT missouri_vs FROM table_16201038_4 WHERE at_neutral_site = \"MU, 2-1\""
} |
Which is the team against which Missouri Tigers have a record of ui, 4-1 at the opponent's venue?How | CREATE TABLE table_16201038_4 (missouri_vs VARCHAR, at_opponents_venue VARCHAR) | {
"SQL_Query": "SELECT missouri_vs FROM table_16201038_4 WHERE at_opponents_venue = \"UI, 4-1\""
} |
How many times did the team achieve an overrall record of mu, 21-19? | CREATE TABLE table_16201038_4 (last_5_meetings VARCHAR, overall_record VARCHAR) | {
"SQL_Query": "SELECT COUNT(last_5_meetings) FROM table_16201038_4 WHERE overall_record = \"MU, 21-19\""
} |
What is the record at the neutral site for when the overall record is ui, 27-16? | CREATE TABLE table_16201038_4 (at_neutral_site VARCHAR, overall_record VARCHAR) | {
"SQL_Query": "SELECT at_neutral_site FROM table_16201038_4 WHERE overall_record = \"UI, 27-16\""
} |
What is the record at the opponent's venue against the team for which the record for the last 5 meetings is mu, 4-1 and the record at the neutral site is tied, 0-0? | CREATE TABLE table_16201038_4 (at_opponents_venue VARCHAR, last_5_meetings VARCHAR, at_neutral_site VARCHAR) | {
"SQL_Query": "SELECT at_opponents_venue FROM table_16201038_4 WHERE last_5_meetings = \"MU, 4-1\" AND at_neutral_site = \"Tied, 0-0\""
} |
What is the stamp duty reserve tax when the percentage over total tax revenue is 0.79? | CREATE TABLE table_1618358_1 (stamp_duty_reserve_tax VARCHAR, over_total_tax_revenue__in__percentage_ VARCHAR) | {
"SQL_Query": "SELECT stamp_duty_reserve_tax FROM table_1618358_1 WHERE over_total_tax_revenue__in__percentage_ = \"0.79\""
} |
When the standard stamp duty is 367 what is the percentage over gdp? | CREATE TABLE table_1618358_1 (over_gdp__in__percentage_ VARCHAR, standard_stamp_duty VARCHAR) | {
"SQL_Query": "SELECT over_gdp__in__percentage_ FROM table_1618358_1 WHERE standard_stamp_duty = \"367\""
} |
When the stamp duty reserve tax is 3,669 what is the percentage over gdp? | CREATE TABLE table_1618358_1 (over_gdp__in__percentage_ VARCHAR, stamp_duty_reserve_tax VARCHAR) | {
"SQL_Query": "SELECT over_gdp__in__percentage_ FROM table_1618358_1 WHERE stamp_duty_reserve_tax = \"3,669\""
} |
During what years are the percentage over total tax revenue is 0.65? | CREATE TABLE table_1618358_1 (year VARCHAR, over_total_tax_revenue__in__percentage_ VARCHAR) | {
"SQL_Query": "SELECT year FROM table_1618358_1 WHERE over_total_tax_revenue__in__percentage_ = \"0.65\""
} |
Name the total number of opponets venue for oklahoma | CREATE TABLE table_16201038_3 (at_opponents_venue VARCHAR, missouri_vs VARCHAR) | {
"SQL_Query": "SELECT COUNT(at_opponents_venue) FROM table_16201038_3 WHERE missouri_vs = \"Oklahoma\""
} |
Name the total number of last 5 meetings for texas tech | CREATE TABLE table_16201038_3 (last_5_meetings VARCHAR, missouri_vs VARCHAR) | {
"SQL_Query": "SELECT COUNT(last_5_meetings) FROM table_16201038_3 WHERE missouri_vs = \"Texas Tech\""
} |
Name the total number of series sorted for when released is april 2010 | CREATE TABLE table_1620397_2 (series_sorted VARCHAR, released VARCHAR) | {
"SQL_Query": "SELECT COUNT(series_sorted) FROM table_1620397_2 WHERE released = \"April 2010\""
} |
Name the author for 6y/ae | CREATE TABLE table_1620397_2 (author VARCHAR, series_sorted VARCHAR) | {
"SQL_Query": "SELECT author FROM table_1620397_2 WHERE series_sorted = \"6Y/AE\""
} |
Name the author for peri and april 2010 | CREATE TABLE table_1620397_2 (author VARCHAR, featuring VARCHAR, released VARCHAR) | {
"SQL_Query": "SELECT author FROM table_1620397_2 WHERE featuring = \"Peri\" AND released = \"April 2010\""
} |
Name the released for pat mills | CREATE TABLE table_1620397_2 (released VARCHAR, author VARCHAR) | {
"SQL_Query": "SELECT released FROM table_1620397_2 WHERE author = \"Pat Mills\""
} |
Name the featuring for pat mills | CREATE TABLE table_1620397_2 (featuring VARCHAR, author VARCHAR) | {
"SQL_Query": "SELECT featuring FROM table_1620397_2 WHERE author = \"Pat Mills\""
} |
What are the outcomes of the last 5 meetings where the overall record is UM, 2-1? | CREATE TABLE table_16201038_5 (last_5_meetings VARCHAR, overall_record VARCHAR) | {
"SQL_Query": "SELECT last_5_meetings FROM table_16201038_5 WHERE overall_record = \"UM, 2-1\""
} |
What is the record of wins/losses that were played at opponents venue (uf, 1-0) | CREATE TABLE table_16201038_5 (overall_record VARCHAR, at_opponents_venue VARCHAR) | {
"SQL_Query": "SELECT overall_record FROM table_16201038_5 WHERE at_opponents_venue = \"UF, 1-0\""
} |
Who are the opponents of Missouri that have an overall record of MU, 3-1? | CREATE TABLE table_16201038_5 (missouri_vs VARCHAR, overall_record VARCHAR) | {
"SQL_Query": "SELECT missouri_vs FROM table_16201038_5 WHERE overall_record = \"MU, 3-1\""
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.