context
stringlengths 0
489
| instruction
stringlengths 16
244
| response
stringlengths 38
557
|
---|---|---|
CREATE TABLE table_name_39 (home_team VARCHAR, venue VARCHAR) | Which team plays at Lake Oval? | SELECT home_team FROM table_name_39 WHERE venue = "lake oval" |
CREATE TABLE table_1560673_1 (first_season VARCHAR, club VARCHAR) | What was the first season for Syrianska FC | SELECT first_season FROM table_1560673_1 WHERE club = "Syrianska FC" |
CREATE TABLE table_name_80 (score VARCHAR, home VARCHAR, decision VARCHAR, visitor VARCHAR) | Name the score when it had a decision of dipietro and visitor of ny islanders with home of colorado | SELECT score FROM table_name_80 WHERE decision = "dipietro" AND visitor = "ny islanders" AND home = "colorado" |
CREATE TABLE table_name_29 (venue VARCHAR, away_team VARCHAR) | What Venue had Carlton has the Away team? | SELECT venue FROM table_name_29 WHERE away_team = "carlton" |
CREATE TABLE table_name_28 (bronze INTEGER, nation VARCHAR, silver VARCHAR) | Which Bronze has a Nation of argentina, and a Silver smaller than 0? | SELECT AVG(bronze) FROM table_name_28 WHERE nation = "argentina" AND silver < 0 |
CREATE TABLE table_15621965_10 (years_in_orlando VARCHAR, school_club_team VARCHAR) | Name the years in orlando that the player from concord hs was in | SELECT years_in_orlando FROM table_15621965_10 WHERE school_club_team = "Concord HS" |
CREATE TABLE table_name_82 (losses INTEGER, wins VARCHAR, win__percentage VARCHAR) | What is the high loss total for players with zero wins and a win % greater than 0? | SELECT MAX(losses) FROM table_name_82 WHERE wins = 0 AND win__percentage > 0 |
CREATE TABLE table_name_20 (position VARCHAR, club_team VARCHAR) | What position does the player from the Miami University (CCHA) club team play? | SELECT position FROM table_name_20 WHERE club_team = "miami university (ccha)" |
CREATE TABLE table_15647838_3 (_number INTEGER, location VARCHAR, opponent VARCHAR) | What is the lowest # in Atlanta, GA with the Georgia Bulldogs as an opponent? | SELECT MIN(_number) FROM table_15647838_3 WHERE location = "Atlanta, GA" AND opponent = "Georgia Bulldogs" |
CREATE TABLE table_name_17 (home_team VARCHAR, venue VARCHAR) | What was the home team's score at junction oval? | SELECT home_team AS score FROM table_name_17 WHERE venue = "junction oval" |
CREATE TABLE table_name_30 (storage_stability INTEGER, field_stability VARCHAR, toxicity_as_blood_agent VARCHAR, agent VARCHAR) | What is the storage stability of Arsine with a toxicity of 8, and field stability less than 5? | SELECT MIN(storage_stability) FROM table_name_30 WHERE toxicity_as_blood_agent > 8 AND agent = "arsine" AND field_stability < 5 |
CREATE TABLE table_1566852_3 (date VARCHAR, interview_subject VARCHAR) | IN HOW MANY ISSUES WAS HARRISON FORD THE INTERVIEW SUBJECT? | SELECT COUNT(date) FROM table_1566852_3 WHERE interview_subject = "Harrison Ford" |
CREATE TABLE table_name_28 (object_type VARCHAR, apparent_magnitude VARCHAR, declination___j2000__ VARCHAR) | Tell me the object type which has an apparent magnitude more than 10.6 and declination of °44′07″ | SELECT object_type FROM table_name_28 WHERE apparent_magnitude > 10.6 AND declination___j2000__ = "°44′07″" |
CREATE TABLE table_name_12 (declination___j2000__ VARCHAR, apparent_magnitude VARCHAR, ngc_number VARCHAR) | Tell me the declination with apparent magnitude more than 10.4 and NGC number of 5112 | SELECT declination___j2000__ FROM table_name_12 WHERE apparent_magnitude > 10.4 AND ngc_number = 5112 |
CREATE TABLE table_1566852_6 (centerfold_model VARCHAR) | What's the subject of 20 questions in those issues where Jillian Grace is the centerfold model? | SELECT 20 AS _questions FROM table_1566852_6 WHERE centerfold_model = "Jillian Grace" |
CREATE TABLE table_name_17 (_percentage_of_pop INTEGER, country__or_dependent_territory_ VARCHAR, average_relative_annual_growth___percentage_ VARCHAR) | What is the average % of population Tunisia, which has an average relative annual growth smaller than 1.03? | SELECT AVG(_percentage_of_pop) FROM table_name_17 WHERE country__or_dependent_territory_ = "tunisia" AND average_relative_annual_growth___percentage_ < 1.03 |
CREATE TABLE table_15681686_4 (rank__week_ VARCHAR, viewers__millions_ VARCHAR) | what rank has viewers at 6.45? | SELECT rank__week_ FROM table_15681686_4 WHERE viewers__millions_ = "6.45" |
CREATE TABLE table_15681686_4 (rank__timeslot_ VARCHAR, viewers__millions_ VARCHAR) | what is the total number of rank where viewers is 9.38? | SELECT COUNT(rank__timeslot_) FROM table_15681686_4 WHERE viewers__millions_ = "9.38" |
CREATE TABLE table_1569516_1 (destination VARCHAR, service_pattern VARCHAR) | Where is the service pattern sydenham then fast to norwood junction? | SELECT destination FROM table_1569516_1 WHERE service_pattern = "Sydenham then fast to Norwood Junction" |
CREATE TABLE table_name_87 (city VARCHAR, rank VARCHAR, name VARCHAR) | What city is the lamar tower 1, ranked above 5? | SELECT city FROM table_name_87 WHERE rank < 5 AND name = "lamar tower 1" |
CREATE TABLE table_1569625_1 (tournament VARCHAR, margin_of_victory VARCHAR, winning_score VARCHAR) | Name the tournament when margin of victory is 3 strokes and winning score is 71-66-70-67=274 | SELECT tournament FROM table_1569625_1 WHERE margin_of_victory = "3 strokes" AND winning_score = 71 - 66 - 70 - 67 = 274 |
CREATE TABLE table_name_32 (laps VARCHAR, driver VARCHAR) | How many laps did antônio pizzonia do? | SELECT COUNT(laps) FROM table_name_32 WHERE driver = "antônio pizzonia" |
CREATE TABLE table_name_99 (constructor VARCHAR, time_retired VARCHAR) | What is the constructor for time/retired of handling? | SELECT constructor FROM table_name_99 WHERE time_retired = "handling" |
CREATE TABLE table_name_59 (round INTEGER, nationality VARCHAR, position VARCHAR) | What is the highest round of a player from Sweden who plays right wing? | SELECT MAX(round) FROM table_name_59 WHERE nationality = "sweden" AND position = "right wing" |
CREATE TABLE table_15740666_6 (kansas_state_vs VARCHAR, last_meeting VARCHAR) | who won the kansas state game on 11/26/1988 | SELECT kansas_state_vs FROM table_15740666_6 WHERE last_meeting = "11/26/1988" |
CREATE TABLE table_name_72 (final_episode VARCHAR, episodes_credited VARCHAR) | What was the final episode credited of 187? | SELECT final_episode FROM table_name_72 WHERE episodes_credited = 187 |
CREATE TABLE table_15781170_2 (poll_winner VARCHAR, original_air_date VARCHAR) | Name the poll winner for march 19, 2008 | SELECT COUNT(poll_winner) FROM table_15781170_2 WHERE original_air_date = "March 19, 2008" |
CREATE TABLE table_15796072_1 (original_artist VARCHAR, week__number VARCHAR) | Who was the original artist for week number Top 16 (8 women)? | SELECT original_artist FROM table_15796072_1 WHERE week__number = "Top 16 (8 Women)" |
CREATE TABLE table_name_99 (laps INTEGER, grid VARCHAR, time_retired VARCHAR) | How many laps had a grid of greater than 17 and retired due to collision? | SELECT SUM(laps) FROM table_name_99 WHERE grid > 17 AND time_retired = "collision" |
CREATE TABLE table_15796072_1 (original_artist VARCHAR, order__number VARCHAR) | Who was the original artist when the order number is 9? | SELECT original_artist FROM table_15796072_1 WHERE order__number = "9" |
CREATE TABLE table_name_85 (week VARCHAR, record VARCHAR, kickoff_ VARCHAR, a_ VARCHAR) | Which week has a Kickoff time of 1:00 with a record of 4-5-1? | SELECT week FROM table_name_85 WHERE kickoff_[a_] = "1:00" AND record = "4-5-1" |
CREATE TABLE table_15824796_3 (season__number INTEGER, original_air_date VARCHAR) | What season began on december 5, 1953? | SELECT MAX(season__number) FROM table_15824796_3 WHERE original_air_date = "December 5, 1953" |
CREATE TABLE table_15824796_3 (title VARCHAR, original_air_date VARCHAR) | What is the title of the first episode of the season that begin on february 27, 1954? | SELECT title FROM table_15824796_3 WHERE original_air_date = "February 27, 1954" |
CREATE TABLE table_15851155_1 (enrollment INTEGER, school VARCHAR) | Name the minimum enrollment for montana tech of the university of montana | SELECT MIN(enrollment) FROM table_15851155_1 WHERE school = "Montana Tech of the University of Montana" |
CREATE TABLE table_name_32 (away_team VARCHAR) | What was the away team score, when the away team was Fitzroy? | SELECT away_team AS score FROM table_name_32 WHERE away_team = "fitzroy" |
CREATE TABLE table_15887683_1 (content VARCHAR, television_service VARCHAR) | What is the content of la7 television service? | SELECT content FROM table_15887683_1 WHERE television_service = "LA7" |
CREATE TABLE table_name_16 (pl_gp VARCHAR, pick__number VARCHAR, reg_gp VARCHAR, team__league_ VARCHAR) | What is the total number of playoff games played by the Seattle Thunderbirds team where the number of regular games played is less than 5 and pick number is less than 131? | SELECT COUNT(pl_gp) FROM table_name_16 WHERE reg_gp < 5 AND team__league_ = "seattle thunderbirds" AND pick__number < 131 |
CREATE TABLE table_15887683_10 (content VARCHAR, television_service VARCHAR, dar VARCHAR, package_option VARCHAR, language VARCHAR) | Name the content for sky famiglia for italian and dar 16:9 for mtv hits | SELECT content FROM table_15887683_10 WHERE package_option = "Sky Famiglia" AND language = "Italian" AND dar = "16:9" AND television_service = "MTV Hits" |
CREATE TABLE table_15887683_10 (ppv VARCHAR, television_service VARCHAR, package_option VARCHAR, dar VARCHAR) | Name the ppv for sky famiglia and dar 16:9 for mtv dance | SELECT ppv FROM table_15887683_10 WHERE package_option = "Sky Famiglia" AND dar = "16:9" AND television_service = "MTV Dance" |
CREATE TABLE table_15887683_17 (dar VARCHAR, television_service VARCHAR) | Name the dar for telenord | SELECT dar FROM table_15887683_17 WHERE television_service = "Telenord" |
CREATE TABLE table_name_39 (page_count VARCHAR, author VARCHAR) | How many pages were in the book by Stefano D'Arrigo? | SELECT page_count FROM table_name_39 WHERE author = "stefano d'arrigo" |
CREATE TABLE table_15887683_3 (package_option VARCHAR, television_service VARCHAR) | What packages offer the Cartello Promozionale Sky HD service? | SELECT package_option FROM table_15887683_3 WHERE television_service = "Cartello promozionale Sky HD" |
CREATE TABLE table_15887683_5 (n° VARCHAR, television_service VARCHAR, package_option VARCHAR, content VARCHAR) | What are the values of n for cinema content provided by Sky Cinema +24 on its Sky Cinema package? | SELECT n° FROM table_15887683_5 WHERE package_option = "Sky Cinema" AND content = "cinema" AND television_service = "Sky Cinema" + 24 |
CREATE TABLE table_name_49 (location_attendance VARCHAR, high_rebounds VARCHAR, high_points VARCHAR) | What is the location attendance of the game with A. Horford (10) as the highest rebounds and J. Johnson (21) as the highest points? | SELECT location_attendance FROM table_name_49 WHERE high_rebounds = "a. horford (10)" AND high_points = "j. johnson (21)" |
CREATE TABLE table_15887683_9 (dar VARCHAR, television_service VARCHAR, n° VARCHAR) | Name the total number of dar for disney channel and number is 613 | SELECT COUNT(dar) FROM table_15887683_9 WHERE television_service = "Disney Channel" AND n° = 613 |
CREATE TABLE table_15887683_9 (country VARCHAR, television_service VARCHAR, dar VARCHAR, language VARCHAR) | Name the country when dar is 16:9 for italian english for disney xd +2 | SELECT country FROM table_15887683_9 WHERE dar = "16:9" AND language = "Italian English" AND television_service = "Disney XD +2" |
CREATE TABLE table_name_93 (country VARCHAR, score VARCHAR, runner_s__up VARCHAR) | I want the country for score of 274 and runner-up of virginie lagoutte-clément | SELECT country FROM table_name_93 WHERE score = "274" AND runner_s__up = "virginie lagoutte-clément" |
CREATE TABLE table_15909409_2 (country VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR) | What are the countries in which the agricultural use (m 3 /p/yr)(in %) is 2040(93%)? | SELECT country FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = "2040(93%)" |
CREATE TABLE table_15909409_2 (country VARCHAR, per_capita_withdrawal__m_3__p_yr_ VARCHAR) | How many countries had a per capita withdrawal (m 3 /p/yr) of 372? | SELECT COUNT(country) FROM table_15909409_2 WHERE per_capita_withdrawal__m_3__p_yr_ = 372 |
CREATE TABLE table_15909409_2 (total_freshwater_withdrawal__km_3__yr_ VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR) | How many countries had a total freshwater withdrawal (km 3 /yr) where the agricultural use (m 3 /p/yr)(in %) was 428(62%)? | SELECT COUNT(total_freshwater_withdrawal__km_3__yr_) FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = "428(62%)" |
CREATE TABLE table_15909409_2 (total_freshwater_withdrawal__km_3__yr_ VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR) | In Pakistan, what was the total freshwater withdrawal (km 3 /yr) where the agricultural use (m 3 /p/yr)(in %) was 1029(96%)? | SELECT total_freshwater_withdrawal__km_3__yr_ FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = "1029(96%)" |
CREATE TABLE table_name_73 (entered_service INTEGER, builder VARCHAR, number VARCHAR) | When did the tom smith built train enter service with a number under 7007? | SELECT AVG(entered_service) FROM table_name_73 WHERE builder = "tom smith" AND number < 7007 |
CREATE TABLE table_name_17 (d_42 VARCHAR, d_50 VARCHAR) | What is the D 42 when the D 50 is d 31? | SELECT d_42 FROM table_name_17 WHERE d_50 = "d 31" |
CREATE TABLE table_15944_5 (specific_impulse__s_ INTEGER, effective_exhaust_velocity__m_s_ VARCHAR) | What is the maximum specific impulse with a 4423 m/s effective exhaust velocity? | SELECT MAX(specific_impulse__s_) FROM table_15944_5 WHERE effective_exhaust_velocity__m_s_ = 4423 |
CREATE TABLE table_name_19 (yard_name VARCHAR, ship_types_delivered VARCHAR, total_vessels_built_for_usmc VARCHAR) | what is the yard name when the ship types delivered is n3 type, v4 type and the total vessels built for usmc is 13 ships for usmc? | SELECT yard_name FROM table_name_19 WHERE ship_types_delivered = "n3 type, v4 type" AND total_vessels_built_for_usmc = "13 ships for usmc" |
CREATE TABLE table_name_21 (ship_types_delivered VARCHAR, total_vessels_built_for_usmc VARCHAR) | what is the ship types delivered when the total vessels built for usmc is 13 ships for usmc (plus 37 more for usn)? | SELECT ship_types_delivered FROM table_name_21 WHERE total_vessels_built_for_usmc = "13 ships for usmc (plus 37 more for usn)" |
CREATE TABLE table_15977768_1 (centennial VARCHAR, akimel_a_al_the_name_is_tohono_oodham_for_children_of_the_river VARCHAR) | Name the centennial for 1992 akimel | SELECT centennial FROM table_15977768_1 WHERE akimel_a_al_the_name_is_tohono_oodham_for_children_of_the_river = "1992" |
CREATE TABLE table_name_86 (chapters VARCHAR, director VARCHAR) | How many chapters did Elmer Clifton direct? | SELECT COUNT(chapters) FROM table_name_86 WHERE director = "elmer clifton" |
CREATE TABLE table_1594772_2 (team__b_ VARCHAR, margin VARCHAR, winner VARCHAR) | Name the number of team for 35 runs margin and india winner | SELECT COUNT(team__b_) FROM table_1594772_2 WHERE margin = "35 runs" AND winner = "India" |
CREATE TABLE table_1598533_8 (inflation__percentage_annual__2012_ VARCHAR, gdp_per_capita_in_ppp_us$__2012_ VARCHAR) | What is the annual inflation % when GDP per capita in ppp US$ is 24505 in 2012? | SELECT inflation__percentage_annual__2012_ FROM table_1598533_8 WHERE gdp_per_capita_in_ppp_us$__2012_ = 24505 |
CREATE TABLE table_name_42 (series__number INTEGER, directed_by VARCHAR) | What is the average of the Series #s that were directed by Matthew Penn? | SELECT AVG(series__number) FROM table_name_42 WHERE directed_by = "matthew penn" |
CREATE TABLE table_16028459_2 (bills_first_downs INTEGER, opponents VARCHAR) | How many first downs did the bills have when their opponent had 6 | SELECT MIN(bills_first_downs) FROM table_16028459_2 WHERE opponents = 6 |
CREATE TABLE table_16028459_2 (bills_points VARCHAR, opponents VARCHAR) | How many points did the bills score when their opponent had 14 | SELECT bills_points FROM table_16028459_2 WHERE opponents = 14 |
CREATE TABLE table_name_72 (model VARCHAR, engine_code VARCHAR, years VARCHAR, torque VARCHAR) | Which model was made from 2001–2004, with a Torque of n·m (lb·ft) @ 3750, and an Engine code of n42b18 / n46b18? | SELECT model FROM table_name_72 WHERE years = "2001–2004" AND torque = "n·m (lb·ft) @ 3750" AND engine_code = "n42b18 / n46b18" |
CREATE TABLE table_16046689_29 (stadium VARCHAR, payout___us$__ VARCHAR) | Which stadium has a payout of $3 million? | SELECT stadium FROM table_16046689_29 WHERE payout___us$__ = "$3 Million" |
CREATE TABLE table_16048129_5 (_percentage_of_total_deportees VARCHAR, average_family_size VARCHAR) | What is the total number of regions where the average family size is 2.8? | SELECT COUNT(_percentage_of_total_deportees) FROM table_16048129_5 WHERE average_family_size = "2.8" |
CREATE TABLE table_1606824_1 (pop_density_people_km_2 VARCHAR, population__percentage_of_eu VARCHAR) | Name the population density people where population % eu for 1.7% | SELECT COUNT(pop_density_people_km_2) FROM table_1606824_1 WHERE population__percentage_of_eu = "1.7%" |
CREATE TABLE table_1606824_1 (population__percentage_of_eu VARCHAR, member_state VARCHAR) | Name the population % of eu for greece | SELECT population__percentage_of_eu FROM table_1606824_1 WHERE member_state = "Greece" |
CREATE TABLE table_name_89 (player VARCHAR, team VARCHAR, position VARCHAR) | Who is the player that plays position f from Fort Wayne Pistons? | SELECT player FROM table_name_89 WHERE team = "fort wayne pistons" AND position = "f" |
CREATE TABLE table_16072430_1 (_number VARCHAR, share INTEGER) | How many episodes have a share bigger than 7.0? | SELECT COUNT(_number) FROM table_16072430_1 WHERE share > 7.0 |
CREATE TABLE table_name_35 (height_in_ft VARCHAR, position VARCHAR, school_club_team_country VARCHAR) | Name the height in feet for the guard from north carolina-charlotte | SELECT height_in_ft FROM table_name_35 WHERE position = "guard" AND school_club_team_country = "north carolina-charlotte" |
CREATE TABLE table_name_59 (height_in_ft VARCHAR, school_club_team_country VARCHAR) | Name the height in ft for the player from wyoming | SELECT height_in_ft FROM table_name_59 WHERE school_club_team_country = "wyoming" |
CREATE TABLE table_16105186_2 (mid_atlantic_south__washington VARCHAR, _dc_ VARCHAR, alaska___juneau__ VARCHAR, california__san_francisco_ VARCHAR) | 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? | 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)" |
CREATE TABLE table_16105186_2 (mid_atlantic_south__washington VARCHAR, _dc_ VARCHAR, midwest__des_moines_ VARCHAR) | What was the emission rating in Mid-Atlantic South for the vehicle that was rated 300 g/mi (186 g/km) in the Midwest? | SELECT mid_atlantic_south__washington, _dc_ FROM table_16105186_2 WHERE midwest__des_moines_ = "300 g/mi (186 g/km)" |
CREATE TABLE table_16105186_2 (california__san_francisco_ VARCHAR, alaska___juneau__ VARCHAR, southeast__atlanta_ VARCHAR) | 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 ? | 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)" |
CREATE TABLE table_name_70 (year VARCHAR, engine VARCHAR, chassis VARCHAR) | In what year did a car have a yamaha v12 engine and a brabham bt60y chassis | SELECT year FROM table_name_70 WHERE engine = "yamaha v12" AND chassis = "brabham bt60y" |
CREATE TABLE table_16162581_1 (simplified_characters VARCHAR, wade_giles VARCHAR) | Name the simplified charaacters being hsin-yüan … i-ma | SELECT simplified_characters FROM table_16162581_1 WHERE wade_giles = "hsin-yüan … i-ma" |
CREATE TABLE table_16162581_1 (pinyin VARCHAR, wade_giles VARCHAR) | Name the total number of pinyin for hsin-yüan-i-ma | SELECT COUNT(pinyin) FROM table_16162581_1 WHERE wade_giles = "hsin-yüan-i-ma" |
CREATE TABLE table_name_70 (state VARCHAR, interview VARCHAR, evening_gown VARCHAR, average VARCHAR, swimsuit VARCHAR) | Which state had an average of less than 8.67, a swimsuit score of 8.27, an evening gown score of 8.78, and an interview number of 8.52? | SELECT state FROM table_name_70 WHERE average < 8.67 AND swimsuit = 8.27 AND evening_gown = 8.78 AND interview = 8.52 |
CREATE TABLE table_name_96 (average INTEGER, swimsuit VARCHAR, evening_gown VARCHAR) | How many averages had a swimsuit number of 8.42 and an evening gown number that was less than 8.71? | SELECT SUM(average) FROM table_name_96 WHERE swimsuit = 8.42 AND evening_gown < 8.71 |
CREATE TABLE table_name_82 (versus VARCHAR, bowling_figures_wickets_runs__overs_ VARCHAR) | Who was the opponent during the competition in which the bowling figures were 5-33 (10)? | SELECT versus FROM table_name_82 WHERE bowling_figures_wickets_runs__overs_ = "5-33 (10)" |
CREATE TABLE table_1615980_4 (no VARCHAR, tournament VARCHAR) | How many tournament wins were at Volvo Masters Andalucia? | SELECT COUNT(no) FROM table_1615980_4 WHERE tournament = "Volvo Masters Andalucia" |
CREATE TABLE table_name_43 (bowling_figures_wickets_runs__overs_ VARCHAR, venue VARCHAR, versus VARCHAR) | During the competition at Port Elizabeth, where the opponent was Australia, what were the bowling figures? | SELECT bowling_figures_wickets_runs__overs_ FROM table_name_43 WHERE venue = "port elizabeth" AND versus = "australia" |
CREATE TABLE table_name_33 (floors INTEGER, rank VARCHAR, building VARCHAR) | What is the lowest amount of floors after rank 1 in the Trillium (residential) building? | SELECT MIN(floors) FROM table_name_33 WHERE rank > 1 AND building = "the trillium (residential)" |
CREATE TABLE table_name_8 (laps INTEGER, rider VARCHAR) | What is the sum of Sylvain Guintoli's laps? | SELECT SUM(laps) FROM table_name_8 WHERE rider = "sylvain guintoli" |
CREATE TABLE table_16175217_1 (donor_payment VARCHAR, children_per_donor VARCHAR, allowed_recipients VARCHAR) | What is the status of donor payment in the country where there are 6 children per donor and no data on allowed recipients? | SELECT donor_payment FROM table_16175217_1 WHERE children_per_donor = "6 children" AND allowed_recipients = "no data" |
CREATE TABLE table_16175217_1 (country VARCHAR, children_per_donor VARCHAR, donor_payment VARCHAR) | What is the country where there are 8 children per donor and no data for donor payments? | SELECT country FROM table_16175217_1 WHERE children_per_donor = "8 children" AND donor_payment = "no data" |
CREATE TABLE table_16175217_1 (children_per_donor VARCHAR, allowed_recipients VARCHAR) | What are the children per donor in the country where the allowed recipients are married or in cohabitation? | SELECT children_per_donor FROM table_16175217_1 WHERE allowed_recipients = "Married or in cohabitation" |
CREATE TABLE table_16201038_4 (missouri_vs VARCHAR, at_neutral_site VARCHAR) | Against which team does Missouri Tigers have a record of mu, 2-1 at a neutral site? | SELECT missouri_vs FROM table_16201038_4 WHERE at_neutral_site = "MU, 2-1" |
CREATE TABLE table_name_25 (report VARCHAR, date VARCHAR) | What report happened on 22 september? | SELECT report FROM table_name_25 WHERE date = "22 september" |
CREATE TABLE table_name_33 (report VARCHAR, winning_driver VARCHAR, circuit VARCHAR) | Which report has a Winning driver of peter collins, and a Circuit of syracuse? | SELECT report FROM table_name_33 WHERE winning_driver = "peter collins" AND circuit = "syracuse" |
CREATE TABLE table_1618358_1 (over_gdp__in__percentage_ VARCHAR, stamp_duty_reserve_tax VARCHAR) | When the stamp duty reserve tax is 3,669 what is the percentage over gdp? | SELECT over_gdp__in__percentage_ FROM table_1618358_1 WHERE stamp_duty_reserve_tax = "3,669" |
CREATE TABLE table_name_41 (date_of_birth__age_ VARCHAR, caps VARCHAR, position VARCHAR) | What is the date of birth of the player that has 11 caps and plays the prop position? | SELECT date_of_birth__age_ FROM table_name_41 WHERE caps = 11 AND position = "prop" |
CREATE TABLE table_name_47 (position VARCHAR, player VARCHAR, club_province VARCHAR, caps VARCHAR) | What position does Toby Flood, who is from Newcastle and has fewer than 24 caps, play? | SELECT position FROM table_name_47 WHERE club_province = "newcastle" AND caps < 24 AND player = "toby flood" |
CREATE TABLE table_name_20 (winningteam VARCHAR, cup_final_attendance VARCHAR) | What was the winning team with the 8,132 final attendance? | SELECT winningteam FROM table_name_20 WHERE cup_final_attendance = "8,132" |
CREATE TABLE table_name_44 (opponents_in_the_final VARCHAR, partnering VARCHAR) | Who are the finals opponents for the match with partner Ricardo Hocevar? | SELECT opponents_in_the_final FROM table_name_44 WHERE partnering = "ricardo hocevar" |
CREATE TABLE table_name_65 (original_airdate VARCHAR, episode__number VARCHAR) | When did Episode 29 (7) originally air? | SELECT original_airdate FROM table_name_65 WHERE episode__number = "29 (7)" |
CREATE TABLE table_16227492_1 (_number INTEGER, opponent VARCHAR) | Name the most number for new england blazers | SELECT MAX(_number) FROM table_16227492_1 WHERE opponent = "New England Blazers" |
CREATE TABLE table_name_90 (opening_day_net_gross INTEGER, studio_s_ VARCHAR, year VARCHAR) | What is the opening day net gross a Reliance Entertainment movie before 2011 had? | SELECT SUM(opening_day_net_gross) FROM table_name_90 WHERE studio_s_ = "reliance entertainment" AND year < 2011 |
CREATE TABLE table_16278602_1 (pop_density__per_km²_ VARCHAR, english_name VARCHAR) | What is the population density of the Capital Region of Denmark? | SELECT pop_density__per_km²_ FROM table_16278602_1 WHERE english_name = "Capital Region of Denmark" |
Subsets and Splits