question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
How many results were there for the Stan Fox Stakes race?
CREATE TABLE table_1360997_2 (result VARCHAR, race VARCHAR)
{ "SQL_Query": "SELECT COUNT(result) FROM table_1360997_2 WHERE race = \"Stan Fox Stakes\"" }
Was the rosehill venue a win or loss?
CREATE TABLE table_1360997_2 (result VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT result FROM table_1360997_2 WHERE venue = \"Rosehill\"" }
what is the minimum total with kerry % being 16.71%
CREATE TABLE table_13606924_1 (total INTEGER, kerry__percentage VARCHAR)
{ "SQL_Query": "SELECT MIN(total) FROM table_13606924_1 WHERE kerry__percentage = \"16.71%\"" }
what is the minimum kerry # with bush % being 78.40%
CREATE TABLE table_13606924_1 (kerry__number INTEGER, bush__percentage VARCHAR)
{ "SQL_Query": "SELECT MIN(kerry__number) FROM table_13606924_1 WHERE bush__percentage = \"78.40%\"" }
what's the kerry # with county being ness county, kansas
CREATE TABLE table_13606924_1 (kerry__number VARCHAR, county VARCHAR)
{ "SQL_Query": "SELECT kerry__number FROM table_13606924_1 WHERE county = \"Ness county, Kansas\"" }
how many total with bush # being 1552
CREATE TABLE table_13606924_1 (total VARCHAR, bush__number VARCHAR)
{ "SQL_Query": "SELECT COUNT(total) FROM table_13606924_1 WHERE bush__number = 1552" }
what is the minimum bush # with kerry # being 3938
CREATE TABLE table_13606924_1 (bush__number INTEGER, kerry__number VARCHAR)
{ "SQL_Query": "SELECT MIN(bush__number) FROM table_13606924_1 WHERE kerry__number = 3938" }
how many total with county being rooks county, kansas
CREATE TABLE table_13606924_1 (total VARCHAR, county VARCHAR)
{ "SQL_Query": "SELECT COUNT(total) FROM table_13606924_1 WHERE county = \"Rooks county, Kansas\"" }
In which district was the incumbent Dick Saslaw?
CREATE TABLE table_13618584_1 (district VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT district FROM table_13618584_1 WHERE incumbent = \"Dick Saslaw\"" }
What was the 2007 result in the district where the incumbent was elected in 1996?
CREATE TABLE table_13618584_1 (elected VARCHAR)
{ "SQL_Query": "SELECT 2007 AS _result FROM table_13618584_1 WHERE elected = 1996" }
What was the 2007 result in the 28th district?
CREATE TABLE table_13618584_1 (district VARCHAR)
{ "SQL_Query": "SELECT 2007 AS _result FROM table_13618584_1 WHERE district = \"28th\"" }
In what district was the incumbent Charles Hawkins?
CREATE TABLE table_13618584_1 (district VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT district FROM table_13618584_1 WHERE incumbent = \"Charles Hawkins\"" }
What's the number of the game played on March 26?
CREATE TABLE table_13619027_9 (game INTEGER, date VARCHAR)
{ "SQL_Query": "SELECT MAX(game) FROM table_13619027_9 WHERE date = \"March 26\"" }
How many different values if the number is high rebounds can be found for the game on March 13?
CREATE TABLE table_13619027_9 (high_rebounds VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(high_rebounds) FROM table_13619027_9 WHERE date = \"March 13\"" }
Who ihad the highest points and what was the number when the record was 11-40?
CREATE TABLE table_13619053_7 (high_points VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_13619053_7 WHERE record = \"11-40\"" }
Who did the Raptors play when their record was 45-36?
CREATE TABLE table_13619135_8 (team VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT team FROM table_13619135_8 WHERE record = \"45-36\"" }
What number game of the season was played on April 12?
CREATE TABLE table_13619135_8 (game INTEGER, date VARCHAR)
{ "SQL_Query": "SELECT MAX(game) FROM table_13619135_8 WHERE date = \"April 12\"" }
How many votes were cast in Wayne county?
CREATE TABLE table_13625792_1 (total__number INTEGER, county VARCHAR)
{ "SQL_Query": "SELECT MAX(total__number) FROM table_13625792_1 WHERE county = \"Wayne\"" }
In the county where Bush won 77.76%, how many total votes were cast?
CREATE TABLE table_13625792_1 (total__number VARCHAR, bush__percentage VARCHAR)
{ "SQL_Query": "SELECT total__number FROM table_13625792_1 WHERE bush__percentage = \"77.76%\"" }
In the country where Bush won 4333 votes, what percentage did other receive?
CREATE TABLE table_13625792_1 (other__percentage VARCHAR, bush__number VARCHAR)
{ "SQL_Query": "SELECT other__percentage FROM table_13625792_1 WHERE bush__number = 4333" }
Who was the TO winning team when the TU winning team was Joe Richardson?
CREATE TABLE table_13642023_2 (to_winning_team VARCHAR, tu_winning_team VARCHAR)
{ "SQL_Query": "SELECT to_winning_team FROM table_13642023_2 WHERE tu_winning_team = \"Joe Richardson\"" }
On what circuit was the GTU winning team #59 Brumos Porsche - Audi in round 5?
CREATE TABLE table_13642023_2 (circuit VARCHAR, rnd VARCHAR, gtu_winning_team VARCHAR)
{ "SQL_Query": "SELECT circuit FROM table_13642023_2 WHERE rnd = 5 AND gtu_winning_team = \"#59 Brumos Porsche - Audi\"" }
Who was the GTU winning team when the TO winning team was #3 Camaro?
CREATE TABLE table_13642023_2 (gtu_winning_team VARCHAR, to_winning_team VARCHAR)
{ "SQL_Query": "SELECT gtu_winning_team FROM table_13642023_2 WHERE to_winning_team = \"#3 Camaro\"" }
Who was the GTU winning team when the TO winning team was Steve Ross?
CREATE TABLE table_13642023_2 (gtu_winning_team VARCHAR, to_winning_team VARCHAR)
{ "SQL_Query": "SELECT gtu_winning_team FROM table_13642023_2 WHERE to_winning_team = \"Steve Ross\"" }
Who was the GTO winning team in round 5 when the GTU winning team was #59 Brumos Porsche - Audi?
CREATE TABLE table_13642023_2 (gto_winning_team VARCHAR, rnd VARCHAR, gtu_winning_team VARCHAR)
{ "SQL_Query": "SELECT gto_winning_team FROM table_13642023_2 WHERE rnd = 5 AND gtu_winning_team = \"#59 Brumos Porsche - Audi\"" }
Who was the GTO winning team when the TO winning team was #84 Camaro?
CREATE TABLE table_13642023_2 (gto_winning_team VARCHAR, to_winning_team VARCHAR)
{ "SQL_Query": "SELECT gto_winning_team FROM table_13642023_2 WHERE to_winning_team = \"#84 Camaro\"" }
Name the results for steve millen
CREATE TABLE table_13643154_2 (results VARCHAR, gto_winning_team VARCHAR)
{ "SQL_Query": "SELECT results FROM table_13643154_2 WHERE gto_winning_team = \"Steve Millen\"" }
What is the most rnd for watkins glen?
CREATE TABLE table_13643154_2 (rnd INTEGER, circuit VARCHAR)
{ "SQL_Query": "SELECT MIN(rnd) FROM table_13643154_2 WHERE circuit = \"Watkins Glen\"" }
What was the GTP winning team in the round in Portland during which Jack Baldwin become part of the GTU winning team?
CREATE TABLE table_13643320_2 (gtp_winning_team VARCHAR, circuit VARCHAR, gtu_winning_team VARCHAR)
{ "SQL_Query": "SELECT gtp_winning_team FROM table_13643320_2 WHERE circuit = \"Portland\" AND gtu_winning_team = \"Jack Baldwin\"" }
What us the number of the round during which #56 Blue Thunder Racing become the GTP winning team and #38 Mandeville Auto Tech became the GTO winning team?
CREATE TABLE table_13643320_2 (rnd VARCHAR, gtp_winning_team VARCHAR, gto_winning_team VARCHAR)
{ "SQL_Query": "SELECT rnd FROM table_13643320_2 WHERE gtp_winning_team = \"#56 Blue Thunder Racing\" AND gto_winning_team = \"#38 Mandeville Auto Tech\"" }
How many different results came out of the round in which #98 All American Racers became the GTU winning team?
CREATE TABLE table_13643320_2 (results VARCHAR, gtu_winning_team VARCHAR)
{ "SQL_Query": "SELECT COUNT(results) FROM table_13643320_2 WHERE gtu_winning_team = \"#98 All American Racers\"" }
Who was the GTO winner of the round that ended with Chris Cord becoming the GTU winner?
CREATE TABLE table_13643320_2 (gto_winning_team VARCHAR, gtu_winning_team VARCHAR)
{ "SQL_Query": "SELECT gto_winning_team FROM table_13643320_2 WHERE gtu_winning_team = \"Chris Cord\"" }
what are all the uu-usu score with winner is #5 brigham young (2–0)
CREATE TABLE table_13665809_2 (uu_usu_score VARCHAR, winner VARCHAR)
{ "SQL_Query": "SELECT uu_usu_score FROM table_13665809_2 WHERE winner = \"#5 Brigham Young (2–0)\"" }
what is the maximum season with byu-usu score being 29–7
CREATE TABLE table_13665809_2 (season INTEGER, byu_usu_score VARCHAR)
{ "SQL_Query": "SELECT MAX(season) FROM table_13665809_2 WHERE byu_usu_score = \"29–7\"" }
what is the maximum season with byu-uu score being 20–17 byu #19
CREATE TABLE table_13665809_2 (season INTEGER, byu_uu_score VARCHAR)
{ "SQL_Query": "SELECT MAX(season) FROM table_13665809_2 WHERE byu_uu_score = \"20–17 BYU #19\"" }
how many byu-uu score with winner being utah state (2–1) won over byu by media vote
CREATE TABLE table_13665809_2 (byu_uu_score VARCHAR, winner VARCHAR)
{ "SQL_Query": "SELECT COUNT(byu_uu_score) FROM table_13665809_2 WHERE winner = \"Utah State (2–1) Won over BYU by media vote\"" }
what's the byu-uu score with uu-usu score being 44–16
CREATE TABLE table_13665809_2 (byu_uu_score VARCHAR, uu_usu_score VARCHAR)
{ "SQL_Query": "SELECT byu_uu_score FROM table_13665809_2 WHERE uu_usu_score = \"44–16\"" }
What are all the languages for tsotsi?
CREATE TABLE table_13700749_1 (language_s_ VARCHAR, film_title VARCHAR)
{ "SQL_Query": "SELECT language_s_ FROM table_13700749_1 WHERE film_title = \"Tsotsi\"" }
What year featured the film tsotsi?
CREATE TABLE table_13700749_1 (year__ceremony_ VARCHAR, film_title VARCHAR)
{ "SQL_Query": "SELECT year__ceremony_ FROM table_13700749_1 WHERE film_title = \"Tsotsi\"" }
What was the result for the film life, above all?
CREATE TABLE table_13700749_1 (result VARCHAR, film_title VARCHAR)
{ "SQL_Query": "SELECT result FROM table_13700749_1 WHERE film_title = \"Life, Above All\"" }
What numer pick in the draft for jerry hill?
CREATE TABLE table_13758243_1 (overall VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT COUNT(overall) FROM table_13758243_1 WHERE player = \"Jerry Hill\"" }
What kicker was drafted?
CREATE TABLE table_13758243_1 (player VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT player FROM table_13758243_1 WHERE position = \"Kicker\"" }
What team drafted steve scifres?
CREATE TABLE table_13758243_1 (nfl_team VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT nfl_team FROM table_13758243_1 WHERE player = \"Steve Scifres\"" }
What year was jerry marion drafted?
CREATE TABLE table_13758243_1 (draft_year INTEGER, player VARCHAR)
{ "SQL_Query": "SELECT MAX(draft_year) FROM table_13758243_1 WHERE player = \"Jerry Marion\"" }
What numer pick in the draft for jerry marion
CREATE TABLE table_13758243_1 (overall INTEGER, player VARCHAR)
{ "SQL_Query": "SELECT MAX(overall) FROM table_13758243_1 WHERE player = \"Jerry Marion\"" }
what's the record with high points being dwyane wade (27) and location attendance being arco arena
CREATE TABLE table_13762472_4 (record VARCHAR, high_points VARCHAR, location_attendance VARCHAR)
{ "SQL_Query": "SELECT record FROM table_13762472_4 WHERE high_points = \"Dwyane Wade (27)\" AND location_attendance = \"ARCO Arena\"" }
how many high assists with record being 15-11
CREATE TABLE table_13762472_4 (high_assists VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT COUNT(high_assists) FROM table_13762472_4 WHERE record = \"15-11\"" }
who had high points on december 3
CREATE TABLE table_13762472_4 (high_points VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_13762472_4 WHERE date = \"December 3\"" }
who had high rebounds when score is w 111–92 (ot)
CREATE TABLE table_13762472_4 (high_rebounds VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT high_rebounds FROM table_13762472_4 WHERE score = \"W 111–92 (OT)\"" }
who had all the high rebounds when high assists is by dwyane wade (9)
CREATE TABLE table_13762472_4 (high_rebounds VARCHAR, high_assists VARCHAR)
{ "SQL_Query": "SELECT high_rebounds FROM table_13762472_4 WHERE high_assists = \"Dwyane Wade (9)\"" }
what's the record with date being december 29
CREATE TABLE table_13762472_4 (record VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT record FROM table_13762472_4 WHERE date = \"December 29\"" }
What is the smallest population recorded back in 2002?
CREATE TABLE table_13764346_1 (Id VARCHAR)
{ "SQL_Query": "SELECT MIN(2002 AS _population) FROM table_13764346_1" }
what's the position with artbeingt being jim reeves
CREATE TABLE table_13805432_2 (position VARCHAR, artist VARCHAR)
{ "SQL_Query": "SELECT position FROM table_13805432_2 WHERE artist = \"Jim Reeves\"" }
what's the highest position with artbeingt being frankie avalon
CREATE TABLE table_13805432_2 (highest_position VARCHAR, artist VARCHAR)
{ "SQL_Query": "SELECT highest_position FROM table_13805432_2 WHERE artist = \"Frankie Avalon\"" }
what's the song title with artbeingt being pat boone
CREATE TABLE table_13805432_2 (song_title VARCHAR, artist VARCHAR)
{ "SQL_Query": "SELECT song_title FROM table_13805432_2 WHERE artist = \"Pat Boone\"" }
what is the minimum highest position with artbeingt being paul evans
CREATE TABLE table_13805432_2 (highest_position INTEGER, artist VARCHAR)
{ "SQL_Query": "SELECT MIN(highest_position) FROM table_13805432_2 WHERE artist = \"Paul Evans\"" }
Who was responsible and what was the number for the high rebounds on December 22?
CREATE TABLE table_13812785_5 (high_rebounds VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_rebounds FROM table_13812785_5 WHERE date = \"December 22\"" }
What is the record where the score is w 102–81 (ot)?
CREATE TABLE table_13812785_8 (record VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT record FROM table_13812785_8 WHERE score = \"W 102–81 (OT)\"" }
Who had the high points dated march 13?
CREATE TABLE table_13812785_8 (high_points VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_13812785_8 WHERE date = \"March 13\"" }
Who had the most high points and rebounds than charles oakley (9)?
CREATE TABLE table_13812785_8 (high_points VARCHAR, high_rebounds VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_13812785_8 WHERE high_rebounds = \"Charles Oakley (9)\"" }
who is the the incumbent with opponent being anthony weiner (d) unopposed
CREATE TABLE table_13833770_3 (incumbent VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT incumbent FROM table_13833770_3 WHERE opponent = \"Anthony Weiner (D) unopposed\"" }
who is the the incumbent with opponent being peter king (r) 56.0% david mejias (d) 44.0%
CREATE TABLE table_13833770_3 (incumbent VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT incumbent FROM table_13833770_3 WHERE opponent = \"Peter King (R) 56.0% David Mejias (D) 44.0%\"" }
what's the district with party being republican and elected being 1998
CREATE TABLE table_13833770_3 (district VARCHAR, party VARCHAR, elected VARCHAR)
{ "SQL_Query": "SELECT district FROM table_13833770_3 WHERE party = \"Republican\" AND elected = 1998" }
what is the minimum district with incumbent being tom reynolds
CREATE TABLE table_13833770_3 (district INTEGER, incumbent VARCHAR)
{ "SQL_Query": "SELECT MIN(district) FROM table_13833770_3 WHERE incumbent = \"Tom Reynolds\"" }
what's the status with incumbent being eliot engel
CREATE TABLE table_13833770_3 (status VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT status FROM table_13833770_3 WHERE incumbent = \"Eliot Engel\"" }
Name the number of women's doubles for 1986
CREATE TABLE table_13845918_3 (womens_doubles VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT COUNT(womens_doubles) FROM table_13845918_3 WHERE year = \"1986\"" }
what was the lowest numbers for the winner gregory w. meeks
CREATE TABLE table_13870048_3 (elected INTEGER, incumbent VARCHAR)
{ "SQL_Query": "SELECT MIN(elected) FROM table_13870048_3 WHERE incumbent = \"Gregory W. Meeks\"" }
What is the frequency of the model whose part number is ado520biaa5do?
CREATE TABLE table_13869651_3 (frequency VARCHAR, part_number_s_ VARCHAR)
{ "SQL_Query": "SELECT frequency FROM table_13869651_3 WHERE part_number_s_ = \"ADO520BIAA5DO\"" }
When's the release date of the model with part number adh485biaa5do?
CREATE TABLE table_13869651_3 (release_date VARCHAR, part_number_s_ VARCHAR)
{ "SQL_Query": "SELECT release_date FROM table_13869651_3 WHERE part_number_s_ = \"ADH485BIAA5DO\"" }
What is the HT value of threw Athlon x2 5200b model?
CREATE TABLE table_13869651_3 (ht VARCHAR, model_number VARCHAR)
{ "SQL_Query": "SELECT ht FROM table_13869651_3 WHERE model_number = \"Athlon X2 5200B\"" }
How many different frequencies does the model with part number ado540biaa5do?
CREATE TABLE table_13869651_3 (frequency VARCHAR, part_number_s_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(frequency) FROM table_13869651_3 WHERE part_number_s_ = \"ADO540BIAA5DO\"" }
What is the entire inhabitants in Southeast Asia?
CREATE TABLE table_1389609_3 (total_population INTEGER, region VARCHAR)
{ "SQL_Query": "SELECT MIN(total_population) FROM table_1389609_3 WHERE region = \"Southeast Asia\"" }
what is the minimum average with highest being 2363
CREATE TABLE table_14003020_5 (average INTEGER, highest VARCHAR)
{ "SQL_Query": "SELECT MIN(average) FROM table_14003020_5 WHERE highest = 2363" }
what is the minimum lowest with highest being 2363
CREATE TABLE table_14003020_5 (lowest INTEGER, highest VARCHAR)
{ "SQL_Query": "SELECT MIN(lowest) FROM table_14003020_5 WHERE highest = 2363" }
what's the team with stadium being glebe park
CREATE TABLE table_14003020_5 (team VARCHAR, stadium VARCHAR)
{ "SQL_Query": "SELECT team FROM table_14003020_5 WHERE stadium = \"Glebe Park\"" }
What's the production code of the episode with a series number 37b?
CREATE TABLE table_14035132_3 (production_code VARCHAR, no_in_series VARCHAR)
{ "SQL_Query": "SELECT production_code FROM table_14035132_3 WHERE no_in_series = \"37b\"" }
On what date did the episode with a series number 31, with a story written by William Reiss, air for the first time?
CREATE TABLE table_14035132_3 (original_air_date VARCHAR, storyboarded_by VARCHAR, no_in_series VARCHAR)
{ "SQL_Query": "SELECT original_air_date FROM table_14035132_3 WHERE storyboarded_by = \"William Reiss\" AND no_in_series = \"31\"" }
When did the episode with season number 10b air for the first time?
CREATE TABLE table_14035132_3 (original_air_date VARCHAR, no_in_season VARCHAR)
{ "SQL_Query": "SELECT original_air_date FROM table_14035132_3 WHERE no_in_season = \"10b\"" }
When did the episode with series number 29a originally air?
CREATE TABLE table_14035132_3 (original_air_date VARCHAR, no_in_series VARCHAR)
{ "SQL_Query": "SELECT original_air_date FROM table_14035132_3 WHERE no_in_series = \"29a\"" }
How many episodes have been directed and written by Darrick Bachman and Brett Varon?
CREATE TABLE table_14035132_3 (directed_by VARCHAR, written_by VARCHAR)
{ "SQL_Query": "SELECT COUNT(directed_by) FROM table_14035132_3 WHERE written_by = \"Darrick Bachman and Brett Varon\"" }
What is the population density in the Brighton area?
CREATE TABLE table_140297_1 (density VARCHAR, principal_town VARCHAR)
{ "SQL_Query": "SELECT density FROM table_140297_1 WHERE principal_town = \"Brighton\"" }
How many people live in the area of Sorell according to the Census of 2011?
CREATE TABLE table_140297_1 (population_2011_census VARCHAR, local_government_area VARCHAR)
{ "SQL_Query": "SELECT population_2011_census FROM table_140297_1 WHERE local_government_area = \"Sorell\"" }
what is the number of area where the county is marsabit?
CREATE TABLE table_1404486_1 (area__km_2__ VARCHAR, county VARCHAR)
{ "SQL_Query": "SELECT COUNT(area__km_2__) FROM table_1404486_1 WHERE county = \"Marsabit\"" }
what is the code of population census 2009 is 1356301?
CREATE TABLE table_1404486_1 (code VARCHAR, population_census_2009 VARCHAR)
{ "SQL_Query": "SELECT code FROM table_1404486_1 WHERE population_census_2009 = 1356301" }
What's the tries against count of the team with 396 points against?
CREATE TABLE table_14070062_3 (tries_against VARCHAR, points_against VARCHAR)
{ "SQL_Query": "SELECT COUNT(tries_against) FROM table_14070062_3 WHERE points_against = \"396\"" }
How many points does the club with a try bonus of 10 have?
CREATE TABLE table_14070062_3 (points VARCHAR, try_bonus VARCHAR)
{ "SQL_Query": "SELECT points FROM table_14070062_3 WHERE try_bonus = \"10\"" }
What's the tries for count for the team with 70 points?
CREATE TABLE table_14070062_3 (tries_for VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT tries_for FROM table_14070062_3 WHERE points = \"70\"" }
How many clubs have a try bonus value of 5?
CREATE TABLE table_14070062_3 (club VARCHAR, try_bonus VARCHAR)
{ "SQL_Query": "SELECT COUNT(club) FROM table_14070062_3 WHERE try_bonus = \"5\"" }
What's the losing bonus count for the club with 9 won games?
CREATE TABLE table_14070062_3 (losing_bonus VARCHAR, won VARCHAR)
{ "SQL_Query": "SELECT losing_bonus FROM table_14070062_3 WHERE won = \"9\"" }
How many tries for does Pontardawe RFC have?
CREATE TABLE table_14070062_3 (tries_for VARCHAR, club VARCHAR)
{ "SQL_Query": "SELECT tries_for FROM table_14070062_3 WHERE club = \"Pontardawe RFC\"" }
How many home losses occured when PF 13?
CREATE TABLE table_1409106_2 (home_losses VARCHAR, pf VARCHAR)
{ "SQL_Query": "SELECT COUNT(home_losses) FROM table_1409106_2 WHERE pf = 13" }
How many copoes per particle are created in the segment that forms inner shell of the core?
CREATE TABLE table_140968_1 (copies_per_particle VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT copies_per_particle FROM table_140968_1 WHERE location = \"Forms inner shell of the core\"" }
How many copies per particle are created by the enterotoxin?
CREATE TABLE table_140968_1 (copies_per_particle VARCHAR, function VARCHAR)
{ "SQL_Query": "SELECT copies_per_particle FROM table_140968_1 WHERE function = \"Enterotoxin\"" }
How many base pairs are there if the molecular weight is 102?
CREATE TABLE table_140968_1 (size___s_base_pair__ VARCHAR, molecular_weight_kda VARCHAR)
{ "SQL_Query": "SELECT COUNT(size___s_base_pair__) FROM table_140968_1 WHERE molecular_weight_kda = \"102\"" }
How many copies per particle are there for the base pair that is size 1059?
CREATE TABLE table_140968_1 (copies_per_particle VARCHAR, size___s_base_pair__ VARCHAR)
{ "SQL_Query": "SELECT COUNT(copies_per_particle) FROM table_140968_1 WHERE size___s_base_pair__ = 1059" }
what is the minimum attendance with stadium being cotton bowl
CREATE TABLE table_14102379_4 (attendance INTEGER, stadium VARCHAR)
{ "SQL_Query": "SELECT MIN(attendance) FROM table_14102379_4 WHERE stadium = \"Cotton Bowl\"" }
what's the opponent with stadium being jeppesen stadium
CREATE TABLE table_14102379_4 (opponent VARCHAR, stadium VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_14102379_4 WHERE stadium = \"Jeppesen stadium\"" }
what's the stadium with record being 1–1
CREATE TABLE table_14102379_4 (stadium VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT stadium FROM table_14102379_4 WHERE record = \"1–1\"" }
how many attendance with stadium being cotton bowl
CREATE TABLE table_14102379_4 (attendance VARCHAR, stadium VARCHAR)
{ "SQL_Query": "SELECT COUNT(attendance) FROM table_14102379_4 WHERE stadium = \"Cotton Bowl\"" }
what's the result with opponent being at oakland raiders
CREATE TABLE table_14102379_4 (result VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT result FROM table_14102379_4 WHERE opponent = \"at Oakland Raiders\"" }