question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
Name the most times contested for montgomeryshire | CREATE TABLE table_24329520_4 (times_contested INTEGER, county VARCHAR) | {
"SQL_Query": "SELECT MAX(times_contested) FROM table_24329520_4 WHERE county = \"Montgomeryshire\""
} |
Name the fate in 1832 for pembrokeshire | CREATE TABLE table_24329520_4 (fate_in_1832 VARCHAR, county VARCHAR) | {
"SQL_Query": "SELECT fate_in_1832 FROM table_24329520_4 WHERE county = \"Pembrokeshire\""
} |
what is the least number of podiums for a formula BMW Americas series? | CREATE TABLE table_24330803_1 (podiums INTEGER, series VARCHAR) | {
"SQL_Query": "SELECT MIN(podiums) FROM table_24330803_1 WHERE series = \"Formula BMW Americas\""
} |
What is the maximum number of wins in the formula 3 euro series? | CREATE TABLE table_24330803_1 (wins INTEGER, series VARCHAR) | {
"SQL_Query": "SELECT MAX(wins) FROM table_24330803_1 WHERE series = \"Formula 3 Euro series\""
} |
How many positions were given when 30 points were won? | CREATE TABLE table_24330803_1 (position VARCHAR, points VARCHAR) | {
"SQL_Query": "SELECT COUNT(position) FROM table_24330803_1 WHERE points = \"30\""
} |
How many pole positions were there for the 2011 season? | CREATE TABLE table_24330803_1 (poles INTEGER, season VARCHAR) | {
"SQL_Query": "SELECT MAX(poles) FROM table_24330803_1 WHERE season = 2011"
} |
List the tournament that kent state won? | CREATE TABLE table_24348134_3 (conference VARCHAR, tournament_winner VARCHAR) | {
"SQL_Query": "SELECT conference AS Tournament FROM table_24348134_3 WHERE tournament_winner = \"Kent State\""
} |
What team won the regular season when georgia state won the tournament? | CREATE TABLE table_24348134_3 (regular_season_winner VARCHAR, tournament_winner VARCHAR) | {
"SQL_Query": "SELECT regular_season_winner FROM table_24348134_3 WHERE tournament_winner = \"Georgia State\""
} |
In what city did oklahoma win the tournament. | CREATE TABLE table_24348134_3 (tournament_venue__city_ VARCHAR, tournament_winner VARCHAR) | {
"SQL_Query": "SELECT tournament_venue__city_ FROM table_24348134_3 WHERE tournament_winner = \"Oklahoma\""
} |
List the number of tournament winners when iona , siena & niagara won in the regular season. | CREATE TABLE table_24348134_3 (tournament_winner VARCHAR, regular_season_winner VARCHAR) | {
"SQL_Query": "SELECT COUNT(tournament_winner) FROM table_24348134_3 WHERE regular_season_winner = \"Iona , Siena & Niagara\""
} |
Name the real life for eventual outcome is amtrak | CREATE TABLE table_243664_1 (real_life_eventual_outcome VARCHAR, currently¹_part_of VARCHAR) | {
"SQL_Query": "SELECT real_life_eventual_outcome FROM table_243664_1 WHERE currently¹_part_of = \"Amtrak\""
} |
Name the real life years of operation for amtrak | CREATE TABLE table_243664_1 (real_life_years_of_operation VARCHAR, currently¹_part_of VARCHAR) | {
"SQL_Query": "SELECT real_life_years_of_operation FROM table_243664_1 WHERE currently¹_part_of = \"Amtrak\""
} |
Name the game coast for chicago and north western | CREATE TABLE table_243664_1 (game_cost VARCHAR, railroad VARCHAR) | {
"SQL_Query": "SELECT game_cost FROM table_243664_1 WHERE railroad = \"Chicago and North Western\""
} |
Name the game cost for merged with new york central to form penn central | CREATE TABLE table_243664_1 (game_cost VARCHAR, real_life_eventual_outcome VARCHAR) | {
"SQL_Query": "SELECT game_cost FROM table_243664_1 WHERE real_life_eventual_outcome = \"Merged with New York Central to form Penn Central\""
} |
What is the minimum 2007 USD in Kabardino-Balkaria? | CREATE TABLE table_24364690_1 (federal_subjects VARCHAR) | {
"SQL_Query": "SELECT MIN(2007 AS __usd_) FROM table_24364690_1 WHERE federal_subjects = \"Kabardino-Balkaria\""
} |
What is every amount for weight lost if the starting weight is 97.4? | CREATE TABLE table_24370270_10 (weight_lost__kg_ VARCHAR, starting_weight__kg_ VARCHAR) | {
"SQL_Query": "SELECT weight_lost__kg_ FROM table_24370270_10 WHERE starting_weight__kg_ = \"97.4\""
} |
What is the starting weight if weight lost is 54.6? | CREATE TABLE table_24370270_10 (starting_weight__kg_ VARCHAR, weight_lost__kg_ VARCHAR) | {
"SQL_Query": "SELECT starting_weight__kg_ FROM table_24370270_10 WHERE weight_lost__kg_ = \"54.6\""
} |
What is the final weight for contestant Chris? | CREATE TABLE table_24370270_10 (final_weight__kg_ VARCHAR, contestant VARCHAR) | {
"SQL_Query": "SELECT final_weight__kg_ FROM table_24370270_10 WHERE contestant = \"Chris\""
} |
How many times did the sounddock series II aux in? | CREATE TABLE table_24384861_1 (aux_in VARCHAR, version VARCHAR) | {
"SQL_Query": "SELECT COUNT(aux_in) FROM table_24384861_1 WHERE version = \"SoundDock series II\""
} |
Was the sounddock series I v2 iphone certified? | CREATE TABLE table_24384861_1 (iphone_certified VARCHAR, version VARCHAR) | {
"SQL_Query": "SELECT iphone_certified FROM table_24384861_1 WHERE version = \"SoundDock series I v2\""
} |
How many connections aux in using FIrewire? | CREATE TABLE table_24384861_1 (aux_in VARCHAR, dock_connection VARCHAR) | {
"SQL_Query": "SELECT COUNT(aux_in) FROM table_24384861_1 WHERE dock_connection = \"FireWire\""
} |
how many video out connections does the sounddock portable have? | CREATE TABLE table_24384861_1 (video_out VARCHAR, version VARCHAR) | {
"SQL_Query": "SELECT COUNT(video_out) FROM table_24384861_1 WHERE version = \"SoundDock Portable\""
} |
Does the sounddock series I v2 have dual voltage? | CREATE TABLE table_24384861_1 (dual_voltage VARCHAR, version VARCHAR) | {
"SQL_Query": "SELECT dual_voltage FROM table_24384861_1 WHERE version = \"SoundDock series I v2\""
} |
What type of dock connection does the sounddock series III have? | CREATE TABLE table_24384861_1 (dock_connection VARCHAR, version VARCHAR) | {
"SQL_Query": "SELECT dock_connection FROM table_24384861_1 WHERE version = \"SoundDock series III\""
} |
Where was the game played that started at 7:00 p.m.? | CREATE TABLE table_24396664_2 (game_site VARCHAR, kickoff VARCHAR) | {
"SQL_Query": "SELECT game_site FROM table_24396664_2 WHERE kickoff = \"7:00 p.m.\""
} |
how many varsity teams are in west roxbury, ma? | CREATE TABLE table_2439728_1 (varsity_teams INTEGER, location VARCHAR) | {
"SQL_Query": "SELECT MAX(varsity_teams) FROM table_2439728_1 WHERE location = \"West Roxbury, MA\""
} |
what is the mascot of st. paul's school? | CREATE TABLE table_2439728_1 (mascot VARCHAR, school VARCHAR) | {
"SQL_Query": "SELECT mascot FROM table_2439728_1 WHERE school = \"St. Paul's school\""
} |
where are dragons used as mascots? | CREATE TABLE table_2439728_1 (location VARCHAR, mascot VARCHAR) | {
"SQL_Query": "SELECT location FROM table_2439728_1 WHERE mascot = \"Dragons\""
} |
when was lawrence academy at groton established? | CREATE TABLE table_2439728_1 (founded INTEGER, school VARCHAR) | {
"SQL_Query": "SELECT MIN(founded) FROM table_2439728_1 WHERE school = \"Lawrence Academy at Groton\""
} |
name the school located at Milton, ma. | CREATE TABLE table_2439728_1 (school VARCHAR, location VARCHAR) | {
"SQL_Query": "SELECT school FROM table_2439728_1 WHERE location = \"Milton, MA\""
} |
how many places have 17 varsity teams? | CREATE TABLE table_2439728_1 (location VARCHAR, varsity_teams VARCHAR) | {
"SQL_Query": "SELECT COUNT(location) FROM table_2439728_1 WHERE varsity_teams = 17"
} |
Which episode had bbc ranking and canle ranking of n/a? | CREATE TABLE table_24399615_10 (episode_no VARCHAR, bbc_three_weekly_ranking VARCHAR, cable_rank VARCHAR) | {
"SQL_Query": "SELECT COUNT(episode_no) FROM table_24399615_10 WHERE bbc_three_weekly_ranking = \"N/A\" AND cable_rank = \"N/A\""
} |
List the number of bbc rankings with cable rankings of 6. | CREATE TABLE table_24399615_10 (bbc_three_weekly_ranking VARCHAR, cable_rank VARCHAR) | {
"SQL_Query": "SELECT bbc_three_weekly_ranking FROM table_24399615_10 WHERE cable_rank = \"6\""
} |
List the number of viewers when the cable rank for Russell Howard's Good New was 5. | CREATE TABLE table_24399615_10 (viewers VARCHAR, cable_rank VARCHAR) | {
"SQL_Query": "SELECT viewers FROM table_24399615_10 WHERE cable_rank = \"5\""
} |
How many individuals watched the show that had a bbc ranking of 6? | CREATE TABLE table_24399615_10 (viewers VARCHAR, bbc_three_weekly_ranking VARCHAR) | {
"SQL_Query": "SELECT COUNT(viewers) FROM table_24399615_10 WHERE bbc_three_weekly_ranking = \"6\""
} |
How many times did episode number 8 air? | CREATE TABLE table_24399615_5 (cable_rank VARCHAR, episode_no VARCHAR) | {
"SQL_Query": "SELECT COUNT(cable_rank) FROM table_24399615_5 WHERE episode_no = 8"
} |
When did episode number 6 air? | CREATE TABLE table_24399615_5 (airdate VARCHAR, episode_no VARCHAR) | {
"SQL_Query": "SELECT airdate FROM table_24399615_5 WHERE episode_no = 6"
} |
How many items are listed under viewers column when the bbd three weekly ranking was 1? | CREATE TABLE table_24399615_4 (viewers VARCHAR, bbc_three_weekly_ranking VARCHAR) | {
"SQL_Query": "SELECT COUNT(viewers) FROM table_24399615_4 WHERE bbc_three_weekly_ranking = \"1\""
} |
What episode number had a cable ranking of 8? | CREATE TABLE table_24399615_4 (episode_no INTEGER, cable_rank VARCHAR) | {
"SQL_Query": "SELECT MIN(episode_no) FROM table_24399615_4 WHERE cable_rank = \"8\""
} |
What date did the episode air that had n/a for it's bbc three weekly ranking? | CREATE TABLE table_24399615_4 (airdate VARCHAR, bbc_three_weekly_ranking VARCHAR) | {
"SQL_Query": "SELECT airdate FROM table_24399615_4 WHERE bbc_three_weekly_ranking = \"N/A\""
} |
What date did the episode air that had a ranking of 17 for cable? | CREATE TABLE table_24399615_4 (airdate VARCHAR, cable_rank VARCHAR) | {
"SQL_Query": "SELECT airdate FROM table_24399615_4 WHERE cable_rank = \"17\""
} |
When 3 is the bbc three weekly ranking what is the airdate? | CREATE TABLE table_24399615_8 (airdate VARCHAR, bbc_three_weekly_ranking VARCHAR) | {
"SQL_Query": "SELECT airdate FROM table_24399615_8 WHERE bbc_three_weekly_ranking = \"3\""
} |
When 656000 is the amount of viewers and n/a is the cable rank what is the airdate? | CREATE TABLE table_24399615_8 (airdate VARCHAR, cable_rank VARCHAR, viewers VARCHAR) | {
"SQL_Query": "SELECT airdate FROM table_24399615_8 WHERE cable_rank = \"N/A\" AND viewers = 656000"
} |
List the states that have entry times of 49years, 29days | CREATE TABLE table_24415627_2 (state_served VARCHAR, time_since_entry VARCHAR) | {
"SQL_Query": "SELECT state_served FROM table_24415627_2 WHERE time_since_entry = \"49years, 29days\""
} |
Of which part does congressman dick clark belong to? | CREATE TABLE table_24415627_2 (party VARCHAR, senator VARCHAR) | {
"SQL_Query": "SELECT party FROM table_24415627_2 WHERE senator = \"Dick Clark\""
} |
On what date did congressman joseph tydings enter take his seat? | CREATE TABLE table_24415627_2 (entered_senate VARCHAR, senator VARCHAR) | {
"SQL_Query": "SELECT entered_senate FROM table_24415627_2 WHERE senator = \"Joseph Tydings\""
} |
What are the lowest points when poles were 0 and races were 10? | CREATE TABLE table_24405773_1 (points INTEGER, poles VARCHAR, races VARCHAR) | {
"SQL_Query": "SELECT MIN(points) FROM table_24405773_1 WHERE poles = 0 AND races = 10"
} |
What was the highest number of points when flaps were 0? | CREATE TABLE table_24405773_1 (points INTEGER, flaps VARCHAR) | {
"SQL_Query": "SELECT MAX(points) FROM table_24405773_1 WHERE flaps = 0"
} |
Who played 20 questions during the issue in which Pamela Horton is on the cover? | CREATE TABLE table_24425491_3 (cover_model VARCHAR) | {
"SQL_Query": "SELECT 20 AS _questions FROM table_24425491_3 WHERE cover_model = \"Pamela Horton\""
} |
When the power kw is 5kw, what is the frequency? | CREATE TABLE table_24418525_1 (frequency VARCHAR, power_kw VARCHAR) | {
"SQL_Query": "SELECT frequency FROM table_24418525_1 WHERE power_kw = \"5kW\""
} |
when coverage is dumaguete central visayas region, what is the callsign? | CREATE TABLE table_24418525_1 (callsign VARCHAR, coverage VARCHAR) | {
"SQL_Query": "SELECT callsign FROM table_24418525_1 WHERE coverage = \"Dumaguete Central Visayas Region\""
} |
How much power covers dumaguete central visayas region? | CREATE TABLE table_24418525_1 (power_kw VARCHAR, coverage VARCHAR) | {
"SQL_Query": "SELECT COUNT(power_kw) FROM table_24418525_1 WHERE coverage = \"Dumaguete Central Visayas Region\""
} |
What frequency is mega manila set to? | CREATE TABLE table_24418525_1 (frequency VARCHAR, coverage VARCHAR) | {
"SQL_Query": "SELECT frequency FROM table_24418525_1 WHERE coverage = \"Mega Manila\""
} |
What original air date was for the episode with production code of 108? | CREATE TABLE table_24425976_2 (original_air_date VARCHAR, production_code VARCHAR) | {
"SQL_Query": "SELECT original_air_date FROM table_24425976_2 WHERE production_code = \"108\""
} |
How many production codes are there for episode 10 in the season? | CREATE TABLE table_24425976_2 (production_code VARCHAR, season VARCHAR) | {
"SQL_Query": "SELECT COUNT(production_code) FROM table_24425976_2 WHERE season = \"10\""
} |
What date did the episode with code 110 originally air? | CREATE TABLE table_24425976_2 (original_air_date VARCHAR, production_code VARCHAR) | {
"SQL_Query": "SELECT original_air_date FROM table_24425976_2 WHERE production_code = \"110\""
} |
What is the name of the episode with a production code of 107? | CREATE TABLE table_24425976_2 (episode_title VARCHAR, production_code VARCHAR) | {
"SQL_Query": "SELECT episode_title FROM table_24425976_2 WHERE production_code = \"107\""
} |
How many episodes in the series has a production code of 111? | CREATE TABLE table_24425976_2 (series VARCHAR, production_code VARCHAR) | {
"SQL_Query": "SELECT COUNT(series) FROM table_24425976_2 WHERE production_code = \"111\""
} |
Name the total number of payout for december 28, 2009 | CREATE TABLE table_24427210_1 (payout___us VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT COUNT(payout___us) AS $__ FROM table_24427210_1 WHERE date = \"December 28, 2009\""
} |
Name the payout for espn for music city bowl | CREATE TABLE table_24427210_1 (payout___us$__ VARCHAR, tv VARCHAR, bowl_game VARCHAR) | {
"SQL_Query": "SELECT payout___us$__ FROM table_24427210_1 WHERE tv = \"ESPN\" AND bowl_game = \"Music City Bowl\""
} |
Name the date for raymond james stadium | CREATE TABLE table_24427210_1 (date VARCHAR, stadium VARCHAR) | {
"SQL_Query": "SELECT date FROM table_24427210_1 WHERE stadium = \"Raymond James stadium\""
} |
What date did episode 4 in the season originally air? | CREATE TABLE table_24425976_7 (original_air_date VARCHAR, season VARCHAR) | {
"SQL_Query": "SELECT original_air_date FROM table_24425976_7 WHERE season = 4"
} |
What date did episode 115 in the series originally air? | CREATE TABLE table_24425976_7 (original_air_date VARCHAR, series VARCHAR) | {
"SQL_Query": "SELECT original_air_date FROM table_24425976_7 WHERE series = 115"
} |
What was the 2nd leg for team #1 River Plate? | CREATE TABLE table_24426072_1 (team__number1 VARCHAR) | {
"SQL_Query": "SELECT 2 AS nd_leg FROM table_24426072_1 WHERE team__number1 = \"River Plate\""
} |
What was team number 2's Fluminense's 2nd leg? | CREATE TABLE table_24426072_1 (team__number2 VARCHAR) | {
"SQL_Query": "SELECT 2 AS nd_leg FROM table_24426072_1 WHERE team__number2 = \"Fluminense\""
} |
What was david ferrer seeded? | CREATE TABLE table_24431264_16 (seed INTEGER, player VARCHAR) | {
"SQL_Query": "SELECT MAX(seed) FROM table_24431264_16 WHERE player = \"David Ferrer\""
} |
What player had 1420 points coming in? | CREATE TABLE table_24431264_16 (player VARCHAR, points VARCHAR) | {
"SQL_Query": "SELECT player FROM table_24431264_16 WHERE points = 1420"
} |
How many players named victor hănescu played? | CREATE TABLE table_24431264_16 (points VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT COUNT(points) AS won FROM table_24431264_16 WHERE player = \"Victor Hănescu\""
} |
Name the kurdistan democratic party for kurdistan list being 10 | CREATE TABLE table_24440361_1 (kurdistan_democratic_party INTEGER, total_kurdistan_list VARCHAR) | {
"SQL_Query": "SELECT MIN(kurdistan_democratic_party) FROM table_24440361_1 WHERE total_kurdistan_list = 10"
} |
Name the most kirdistan list for diyala | CREATE TABLE table_24440361_1 (total_kurdistan_list INTEGER, governorate VARCHAR) | {
"SQL_Query": "SELECT MAX(total_kurdistan_list) FROM table_24440361_1 WHERE governorate = \"Diyala\""
} |
Name the least total kurdistan list | CREATE TABLE table_24440361_1 (total_kurdistan_list INTEGER) | {
"SQL_Query": "SELECT MIN(total_kurdistan_list) FROM table_24440361_1"
} |
Who won 3rd place when the mutya ng pilipinas winner was was rochelle romero ong? | CREATE TABLE table_24430894_20 (mutya_ng_pilipinas_asia_pacific VARCHAR) | {
"SQL_Query": "SELECT 2 AS nd_runner_up FROM table_24430894_20 WHERE mutya_ng_pilipinas_asia_pacific = \"Rochelle Romero Ong\""
} |
List the number of years where ritchie ocampo was the mutya ng pilipinas winner. | CREATE TABLE table_24430894_20 (year VARCHAR, mutya_ng_pilipinas_asia_pacific VARCHAR) | {
"SQL_Query": "SELECT COUNT(year) FROM table_24430894_20 WHERE mutya_ng_pilipinas_asia_pacific = \"Ritchie Ocampo\""
} |
Name the number of awardees for english and hindi | CREATE TABLE table_24446718_7 (awardee_s_ VARCHAR, language VARCHAR) | {
"SQL_Query": "SELECT COUNT(awardee_s_) FROM table_24446718_7 WHERE language = \"English and Hindi\""
} |
Name the name of award for zubeen garg | CREATE TABLE table_24446718_7 (name_of_award VARCHAR, awardee_s_ VARCHAR) | {
"SQL_Query": "SELECT name_of_award FROM table_24446718_7 WHERE awardee_s_ = \"Zubeen Garg\""
} |
Name the awardee for best editing | CREATE TABLE table_24446718_7 (awardee_s_ VARCHAR, name_of_award VARCHAR) | {
"SQL_Query": "SELECT awardee_s_ FROM table_24446718_7 WHERE name_of_award = \"Best Editing\""
} |
Name the number of awardees for best cinematography | CREATE TABLE table_24446718_7 (awardee_s_ VARCHAR, name_of_award VARCHAR) | {
"SQL_Query": "SELECT COUNT(awardee_s_) FROM table_24446718_7 WHERE name_of_award = \"Best Cinematography\""
} |
Name the least flaps | CREATE TABLE table_24466191_1 (flaps INTEGER) | {
"SQL_Query": "SELECT MIN(flaps) FROM table_24466191_1"
} |
Name th most poles for macau grand prix | CREATE TABLE table_24466191_1 (poles INTEGER, series VARCHAR) | {
"SQL_Query": "SELECT MAX(poles) FROM table_24466191_1 WHERE series = \"Macau Grand Prix\""
} |
Name the total number of races for 15th position | CREATE TABLE table_24466191_1 (races VARCHAR, position VARCHAR) | {
"SQL_Query": "SELECT COUNT(races) FROM table_24466191_1 WHERE position = \"15th\""
} |
Name the most races for flaps larger than 2.0 | CREATE TABLE table_24466191_1 (races INTEGER, flaps INTEGER) | {
"SQL_Query": "SELECT MAX(races) FROM table_24466191_1 WHERE flaps > 2.0"
} |
Name the number of poles for 15th position | CREATE TABLE table_24466191_1 (poles VARCHAR, position VARCHAR) | {
"SQL_Query": "SELECT COUNT(poles) FROM table_24466191_1 WHERE position = \"15th\""
} |
Name the team for season 2010 | CREATE TABLE table_24466191_1 (team VARCHAR, season VARCHAR) | {
"SQL_Query": "SELECT team FROM table_24466191_1 WHERE season = 2010"
} |
Name the air date for jay j. demopoulos | CREATE TABLE table_24466855_1 (original_air_date VARCHAR, written_by VARCHAR) | {
"SQL_Query": "SELECT original_air_date FROM table_24466855_1 WHERE written_by = \"Jay J. Demopoulos\""
} |
At which location did 29753 fans show up to watch the game? | CREATE TABLE table_24481478_1 (game_site VARCHAR, attendance VARCHAR) | {
"SQL_Query": "SELECT game_site FROM table_24481478_1 WHERE attendance = 29753"
} |
What was the game record during week 7? | CREATE TABLE table_24481478_1 (team_record VARCHAR, week VARCHAR) | {
"SQL_Query": "SELECT team_record FROM table_24481478_1 WHERE week = 7"
} |
What time did the game start on saturday, april 20? | CREATE TABLE table_24481478_1 (kickoff VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT kickoff FROM table_24481478_1 WHERE date = \"Saturday, April 20\""
} |
In which week was the team record 7–2? | CREATE TABLE table_24481478_1 (week INTEGER, team_record VARCHAR) | {
"SQL_Query": "SELECT MIN(week) FROM table_24481478_1 WHERE team_record = \"7–2\""
} |
How man fans showed up to watch the game versus the raleigh-durham skyhawks? | CREATE TABLE table_24481478_1 (attendance INTEGER, opponent VARCHAR) | {
"SQL_Query": "SELECT MAX(attendance) FROM table_24481478_1 WHERE opponent = \"Raleigh-Durham Skyhawks\""
} |
If the rank is 26, what is the disposable USD growth? | CREATE TABLE table_24486462_1 (disposable_usd_growth VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT disposable_usd_growth FROM table_24486462_1 WHERE rank = 26"
} |
What country has a compulsory deduction of 29.3%? | CREATE TABLE table_24486462_1 (country VARCHAR, compulsory_deduction VARCHAR) | {
"SQL_Query": "SELECT country FROM table_24486462_1 WHERE compulsory_deduction = \"29.3%\""
} |
What is Australia's Disposable USD growth? | CREATE TABLE table_24486462_1 (disposable_usd_growth INTEGER, country VARCHAR) | {
"SQL_Query": "SELECT MAX(disposable_usd_growth) FROM table_24486462_1 WHERE country = \"Australia\""
} |
What is the lowest disposable USD 2011? | CREATE TABLE table_24486462_1 (disposable_usd_2011 INTEGER) | {
"SQL_Query": "SELECT MIN(disposable_usd_2011) FROM table_24486462_1"
} |
Name the most minutes and starts being 12 | CREATE TABLE table_24477075_1 (minutes INTEGER, starts VARCHAR) | {
"SQL_Query": "SELECT MAX(minutes) FROM table_24477075_1 WHERE starts = 12"
} |
Name the position for 132 minutes | CREATE TABLE table_24477075_1 (position VARCHAR, minutes VARCHAR) | {
"SQL_Query": "SELECT position FROM table_24477075_1 WHERE minutes = 132"
} |
Name the rank for thomas morgenstern | CREATE TABLE table_24489942_10 (rank VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT rank FROM table_24489942_10 WHERE name = \"Thomas Morgenstern\""
} |
Name the rank for switzerland | CREATE TABLE table_24489942_10 (rank VARCHAR, nationality VARCHAR) | {
"SQL_Query": "SELECT COUNT(rank) FROM table_24489942_10 WHERE nationality = \"Switzerland\""
} |
Name the points for switzerland | CREATE TABLE table_24489942_10 (points VARCHAR, nationality VARCHAR) | {
"SQL_Query": "SELECT points FROM table_24489942_10 WHERE nationality = \"Switzerland\""
} |
Name the points for thomas morgenstern | CREATE TABLE table_24489942_10 (points VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT points FROM table_24489942_10 WHERE name = \"Thomas Morgenstern\""
} |
When was jack watson appointed? | CREATE TABLE table_24490665_1 (appointed VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT appointed FROM table_24490665_1 WHERE name = \"Jack Watson\""
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.