question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
What are the numbers of steals associated with players having exactly 3 blocks? | CREATE TABLE table_24913533_4 (steals VARCHAR, blocks VARCHAR) | {
"SQL_Query": "SELECT steals FROM table_24913533_4 WHERE blocks = 3"
} |
How many numbers of rebounds are associated with exactly 18 points? | CREATE TABLE table_24913533_4 (rebounds VARCHAR, points VARCHAR) | {
"SQL_Query": "SELECT COUNT(rebounds) FROM table_24913533_4 WHERE points = 18"
} |
What is the maximum number of assists for players named Anastasia Kostaki? | CREATE TABLE table_24913533_4 (assists INTEGER, player VARCHAR) | {
"SQL_Query": "SELECT MAX(assists) FROM table_24913533_4 WHERE player = \"Anastasia Kostaki\""
} |
What is Tiffani Johnson's maximum steals? | CREATE TABLE table_24912693_4 (steals INTEGER, player VARCHAR) | {
"SQL_Query": "SELECT MAX(steals) FROM table_24912693_4 WHERE player = \"Tiffani Johnson\""
} |
Which player has 17 blocks? | CREATE TABLE table_24912693_4 (player VARCHAR, blocks VARCHAR) | {
"SQL_Query": "SELECT player FROM table_24912693_4 WHERE blocks = 17"
} |
How many field goals does the player with 84 rebounds have? | CREATE TABLE table_24912693_4 (field_goals INTEGER, rebounds VARCHAR) | {
"SQL_Query": "SELECT MIN(field_goals) FROM table_24912693_4 WHERE rebounds = 84"
} |
How many blocks does the player who played 893 minutes have? | CREATE TABLE table_24912693_4 (blocks VARCHAR, minutes VARCHAR) | {
"SQL_Query": "SELECT blocks FROM table_24912693_4 WHERE minutes = 893"
} |
How many points does the player with 2 steals have? | CREATE TABLE table_24912693_4 (points VARCHAR, steals VARCHAR) | {
"SQL_Query": "SELECT points FROM table_24912693_4 WHERE steals = 2"
} |
Name the most number | CREATE TABLE table_24924576_2 (number INTEGER) | {
"SQL_Query": "SELECT MAX(number) FROM table_24924576_2"
} |
Name the titles for tko 11/12 | CREATE TABLE table_24924576_2 (titles VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT titles FROM table_24924576_2 WHERE result = \"TKO 11/12\""
} |
Where was the game played when the result/margin was won by 70? | CREATE TABLE table_24919137_2 (venue VARCHAR, result_margin VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_24919137_2 WHERE result_margin = \"WON by 70\""
} |
What is the result/margin when fox sports 1 broadcast the game played at mcg? | CREATE TABLE table_24919137_2 (result_margin VARCHAR, broadcaster VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT result_margin FROM table_24919137_2 WHERE broadcaster = \"Fox Sports 1\" AND venue = \"MCG\""
} |
Which network broadcast the game when the Western Bulldogs played melbourne? | CREATE TABLE table_24919137_2 (broadcaster VARCHAR, opposition VARCHAR) | {
"SQL_Query": "SELECT broadcaster FROM table_24919137_2 WHERE opposition = \"Melbourne\""
} |
Where was the game played when the score was 14.16 (100)-12.12 (84)? | CREATE TABLE table_24919137_2 (venue VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_24919137_2 WHERE score = \"14.16 (100)-12.12 (84)\""
} |
What was the ladder position when the score was 15.9 (99)–14.6 (90)? | CREATE TABLE table_24919137_2 (ladder_position VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT ladder_position FROM table_24919137_2 WHERE score = \"15.9 (99)–14.6 (90)\""
} |
On what date was the game played when the Western Bulldogs were in 8th ladder position and hawthorn was the opposing team? | CREATE TABLE table_24919137_2 (date VARCHAR, ladder_position VARCHAR, opposition VARCHAR) | {
"SQL_Query": "SELECT date FROM table_24919137_2 WHERE ladder_position = \"8th\" AND opposition = \"Hawthorn\""
} |
What school is nicknamed the panthers? | CREATE TABLE table_24935743_2 (school VARCHAR, nickname VARCHAR) | {
"SQL_Query": "SELECT school FROM table_24935743_2 WHERE nickname = \"Panthers\""
} |
What school is in Jeromesville? | CREATE TABLE table_24935743_2 (location VARCHAR, school VARCHAR) | {
"SQL_Query": "SELECT location FROM table_24935743_2 WHERE school = \"Jeromesville\""
} |
What was the previous school of the ft7in (m) tall player? | CREATE TABLE table_24925945_3 (previous_school VARCHAR, height VARCHAR) | {
"SQL_Query": "SELECT previous_school FROM table_24925945_3 WHERE height = \"ft7in (m)\""
} |
What was the previous school of #22? | CREATE TABLE table_24925945_3 (previous_school VARCHAR, _number VARCHAR) | {
"SQL_Query": "SELECT previous_school FROM table_24925945_3 WHERE _number = 22"
} |
What is the title of the episode with production code 3x5402? | CREATE TABLE table_24938621_2 (title VARCHAR, production_code VARCHAR) | {
"SQL_Query": "SELECT title FROM table_24938621_2 WHERE production_code = \"3X5402\""
} |
What is the title of the episode with production code 3x5405? | CREATE TABLE table_24938621_2 (title VARCHAR, production_code VARCHAR) | {
"SQL_Query": "SELECT title FROM table_24938621_2 WHERE production_code = \"3X5405\""
} |
Who as the home team for game on 5 october 2011? | CREATE TABLE table_24949975_1 (home_team VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT home_team FROM table_24949975_1 WHERE date = \"5 October 2011\""
} |
What was the stadium for the home team of shamrock rovers and result of 3–0? | CREATE TABLE table_24949975_1 (stadium VARCHAR, home_team VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT stadium FROM table_24949975_1 WHERE home_team = \"Shamrock Rovers\" AND result = \"3–0\""
} |
What was the away team when the result was 2–1 and home team was the bohemians? | CREATE TABLE table_24949975_1 (away_team VARCHAR, result VARCHAR, home_team VARCHAR) | {
"SQL_Query": "SELECT away_team FROM table_24949975_1 WHERE result = \"2–1\" AND home_team = \"Bohemians\""
} |
Who was the home team for the 2013 season and the result was 0–0? | CREATE TABLE table_24949975_1 (home_team VARCHAR, season VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT home_team FROM table_24949975_1 WHERE season = \"2013\" AND result = \"0–0\""
} |
What is the date for the game at the tallaght stadium and result was 0–1? | CREATE TABLE table_24949975_1 (date VARCHAR, stadium VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT date FROM table_24949975_1 WHERE stadium = \"Tallaght stadium\" AND result = \"0–1\""
} |
What opponents played Waldstadion in a game? | CREATE TABLE table_24951872_2 (opponent VARCHAR, game_site VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_24951872_2 WHERE game_site = \"Waldstadion\""
} |
What was the maximum week that had attendance of 10738? | CREATE TABLE table_24951872_2 (week INTEGER, attendance VARCHAR) | {
"SQL_Query": "SELECT MAX(week) FROM table_24951872_2 WHERE attendance = 10738"
} |
What is the production code of the episode written by Cathryn Humphris? | CREATE TABLE table_24938621_3 (production_code VARCHAR, written_by VARCHAR) | {
"SQL_Query": "SELECT production_code FROM table_24938621_3 WHERE written_by = \"Cathryn Humphris\""
} |
What is the production code of the episode that had 5.43 million viewers? | CREATE TABLE table_24938621_3 (production_code VARCHAR, us_viewers__million_ VARCHAR) | {
"SQL_Query": "SELECT production_code FROM table_24938621_3 WHERE us_viewers__million_ = \"5.43\""
} |
What was the title of the episode directed by Jesse Warn? | CREATE TABLE table_24938621_3 (production_code VARCHAR, directed_by VARCHAR) | {
"SQL_Query": "SELECT production_code FROM table_24938621_3 WHERE directed_by = \"Jesse Warn\""
} |
What episode number was written by Gregg Hurwitz? | CREATE TABLE table_24938621_3 (no VARCHAR, written_by VARCHAR) | {
"SQL_Query": "SELECT no FROM table_24938621_3 WHERE written_by = \"Gregg Hurwitz\""
} |
If the dry density is 800, what is the drying shrinkage %? | CREATE TABLE table_24969173_1 (drying_shrinkage___percentage_ VARCHAR, dry_density__kg_m3_ VARCHAR) | {
"SQL_Query": "SELECT drying_shrinkage___percentage_ FROM table_24969173_1 WHERE dry_density__kg_m3_ = 800"
} |
What number in the series was episode 7 in the season? | CREATE TABLE table_24961421_1 (series__number VARCHAR, season__number VARCHAR) | {
"SQL_Query": "SELECT series__number FROM table_24961421_1 WHERE season__number = 7"
} |
Who wrote the episode that had 12.15 million viewers? | CREATE TABLE table_24961421_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR) | {
"SQL_Query": "SELECT written_by FROM table_24961421_1 WHERE us_viewers__millions_ = \"12.15\""
} |
What number in the season was the episode with 12.23 million viewers? | CREATE TABLE table_24961421_1 (season__number VARCHAR, us_viewers__millions_ VARCHAR) | {
"SQL_Query": "SELECT season__number FROM table_24961421_1 WHERE us_viewers__millions_ = \"12.23\""
} |
What is the date of the game at Olympic Stadium? | CREATE TABLE table_24989925_2 (date VARCHAR, game_site VARCHAR) | {
"SQL_Query": "SELECT date FROM table_24989925_2 WHERE game_site = \"Olympic Stadium\""
} |
How many weeks total are there? | CREATE TABLE table_24989925_2 (week INTEGER) | {
"SQL_Query": "SELECT MAX(week) FROM table_24989925_2"
} |
What was the team's record when they played at Rheinenergiestadion? | CREATE TABLE table_24989925_2 (team_record VARCHAR, game_site VARCHAR) | {
"SQL_Query": "SELECT team_record FROM table_24989925_2 WHERE game_site = \"RheinEnergieStadion\""
} |
What is the lowest overall number of 09-10 oi 2nd? | CREATE TABLE table_24990183_6 (Id VARCHAR) | {
"SQL_Query": "SELECT MIN(09 AS _10_oi_2nd) FROM table_24990183_6"
} |
What was the maximum 09-10 i/o best? | CREATE TABLE table_24990183_4 (Id VARCHAR) | {
"SQL_Query": "SELECT MAX(09 AS _10_i_o_best) FROM table_24990183_4"
} |
If the rank is 17, what are the names? | CREATE TABLE table_24990183_7 (name VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT name FROM table_24990183_7 WHERE rank = 17"
} |
If the WS points is 947, what is the 08-09 gp/jgp 2nd ? | CREATE TABLE table_24990183_7 (ws_points VARCHAR) | {
"SQL_Query": "SELECT 08 AS _09_gp_jgp_2nd FROM table_24990183_7 WHERE ws_points = 947"
} |
How many points did he have when he has in the 34th position? | CREATE TABLE table_24998088_1 (points VARCHAR, position VARCHAR) | {
"SQL_Query": "SELECT points FROM table_24998088_1 WHERE position = \"34th\""
} |
How many wins were listed when he had 112 points? | CREATE TABLE table_24998088_1 (wins VARCHAR, points VARCHAR) | {
"SQL_Query": "SELECT wins FROM table_24998088_1 WHERE points = \"112\""
} |
In what series did he have the 7th position? | CREATE TABLE table_24998088_1 (series VARCHAR, position VARCHAR) | {
"SQL_Query": "SELECT series FROM table_24998088_1 WHERE position = \"7th\""
} |
what were his points when he was in 8th position? | CREATE TABLE table_24998088_1 (points VARCHAR, position VARCHAR) | {
"SQL_Query": "SELECT points FROM table_24998088_1 WHERE position = \"8th\""
} |
What was the vote when the air date is 4 october 1997? | CREATE TABLE table_25016824_2 (vote VARCHAR, air_date VARCHAR) | {
"SQL_Query": "SELECT vote FROM table_25016824_2 WHERE air_date = \"4 October 1997\""
} |
Who was eliminated when immunity went to kent (jürgen)? | CREATE TABLE table_25016824_2 (eliminated VARCHAR, immunity VARCHAR) | {
"SQL_Query": "SELECT eliminated FROM table_25016824_2 WHERE immunity = \"Kent (Jürgen)\""
} |
Who was eliminated when the vote was 8-1? | CREATE TABLE table_25016824_2 (eliminated VARCHAR, vote VARCHAR) | {
"SQL_Query": "SELECT eliminated FROM table_25016824_2 WHERE vote = \"8-1\""
} |
How many entries are there for vote when the air date was 15 november 1997? | CREATE TABLE table_25016824_2 (vote VARCHAR, air_date VARCHAR) | {
"SQL_Query": "SELECT COUNT(vote) FROM table_25016824_2 WHERE air_date = \"15 November 1997\""
} |
What was the reward when immunity went to martin and finish is 13th voted out 8th jury member day 46? | CREATE TABLE table_25016824_2 (reward VARCHAR, immunity VARCHAR, finish VARCHAR) | {
"SQL_Query": "SELECT reward FROM table_25016824_2 WHERE immunity = \"Martin\" AND finish = \"13th voted Out 8th Jury Member Day 46\""
} |
How many values for Macedonian correspond to Slovianski value of Veliki? | CREATE TABLE table_25008327_8 (macedonian VARCHAR, slovianski VARCHAR) | {
"SQL_Query": "SELECT COUNT(macedonian) FROM table_25008327_8 WHERE slovianski = \"veliki\""
} |
What area all values for Slovak when value for Ukranian is пес, собака? | CREATE TABLE table_25008327_8 (slovak VARCHAR, ukrainian VARCHAR) | {
"SQL_Query": "SELECT slovak FROM table_25008327_8 WHERE ukrainian = \"пес, собака\""
} |
What is every value for Croatian when value for English is dog? | CREATE TABLE table_25008327_8 (croatian VARCHAR, english VARCHAR) | {
"SQL_Query": "SELECT croatian FROM table_25008327_8 WHERE english = \"dog\""
} |
What is every value for Polish when Balarusian is ноч? | CREATE TABLE table_25008327_8 (polish VARCHAR, belarusian VARCHAR) | {
"SQL_Query": "SELECT polish FROM table_25008327_8 WHERE belarusian = \"ноч\""
} |
What is every value for Russian when value for Bulgarian is пес, куче? | CREATE TABLE table_25008327_8 (russian VARCHAR, bulgarian VARCHAR) | {
"SQL_Query": "SELECT russian FROM table_25008327_8 WHERE bulgarian = \"пес, куче\""
} |
What is every value for словјански if polish is książka? | CREATE TABLE table_25008327_8 (словјански VARCHAR, polish VARCHAR) | {
"SQL_Query": "SELECT словјански FROM table_25008327_8 WHERE polish = \"książka\""
} |
Name the position for christopher smith | CREATE TABLE table_25017530_5 (position VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT position FROM table_25017530_5 WHERE player = \"Christopher Smith\""
} |
Name the college for nate binder | CREATE TABLE table_25017530_5 (college VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT college FROM table_25017530_5 WHERE player = \"Nate Binder\""
} |
Name the least pick number for steven turner | CREATE TABLE table_25017530_5 (pick__number INTEGER, player VARCHAR) | {
"SQL_Query": "SELECT MIN(pick__number) FROM table_25017530_5 WHERE player = \"Steven Turner\""
} |
Name the cfl team for steven turner | CREATE TABLE table_25017530_5 (cfl_team VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT cfl_team FROM table_25017530_5 WHERE player = \"Steven Turner\""
} |
Name the cfl team for lb position | CREATE TABLE table_25017530_6 (cfl_team VARCHAR, position VARCHAR) | {
"SQL_Query": "SELECT cfl_team FROM table_25017530_6 WHERE position = \"LB\""
} |
Name the cfl team for saskatchewan | CREATE TABLE table_25017530_6 (cfl_team VARCHAR, college VARCHAR) | {
"SQL_Query": "SELECT cfl_team FROM table_25017530_6 WHERE college = \"Saskatchewan\""
} |
Name the position for michael warner | CREATE TABLE table_25017530_6 (position VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT position FROM table_25017530_6 WHERE player = \"Michael Warner\""
} |
How many episodes were numbered 5? | CREATE TABLE table_2501754_2 (production_count VARCHAR, episode__number VARCHAR) | {
"SQL_Query": "SELECT COUNT(production_count) FROM table_2501754_2 WHERE episode__number = 5"
} |
What are the original air date(s) for episodes with production code ipea343l? | CREATE TABLE table_2501754_2 (original_airdate VARCHAR, prod_code VARCHAR) | {
"SQL_Query": "SELECT original_airdate FROM table_2501754_2 WHERE prod_code = \"IPEA343L\""
} |
What are the original air date(s) for episodes with production code ipea345a? | CREATE TABLE table_2501754_2 (original_airdate VARCHAR, prod_code VARCHAR) | {
"SQL_Query": "SELECT original_airdate FROM table_2501754_2 WHERE prod_code = \"IPEA345A\""
} |
What are the original air date(s) for episodes with 8.63 million viewers? | CREATE TABLE table_2501754_2 (original_airdate VARCHAR, viewing_figures_millions VARCHAR) | {
"SQL_Query": "SELECT original_airdate FROM table_2501754_2 WHERE viewing_figures_millions = \"8.63\""
} |
What is the power of the Type R? | CREATE TABLE table_250230_2 (power VARCHAR, model VARCHAR) | {
"SQL_Query": "SELECT power FROM table_250230_2 WHERE model = \"Type R\""
} |
What kind of brakes for the model type rb 4at with 16x8.0jj (front) 16x8.0jj (rear) wheels and 225/50r16 92v(front) 225/50r16 92v(rear) tyres? | CREATE TABLE table_250230_2 (brakes VARCHAR, model VARCHAR, wheels VARCHAR, tyres VARCHAR) | {
"SQL_Query": "SELECT brakes FROM table_250230_2 WHERE wheels = \"16x8.0JJ (front) 16x8.0JJ (rear)\" AND tyres = \"225/50R16 92V(front) 225/50R16 92V(rear)\" AND model = \"Type RB 4AT\""
} |
What brakes for the 4-speed automatic gearbox? | CREATE TABLE table_250230_2 (brakes VARCHAR, gearbox VARCHAR) | {
"SQL_Query": "SELECT brakes FROM table_250230_2 WHERE gearbox = \"4-speed automatic\""
} |
What is the power for the Spirit R (Type B)? | CREATE TABLE table_250230_2 (power VARCHAR, model VARCHAR) | {
"SQL_Query": "SELECT power FROM table_250230_2 WHERE model = \"Spirit R (Type B)\""
} |
What is the gearbox when the torque is torque? | CREATE TABLE table_250230_2 (gearbox VARCHAR) | {
"SQL_Query": "SELECT gearbox FROM table_250230_2 WHERE \"torque\" = \"torque\""
} |
Name the first elected for alabama 3 | CREATE TABLE table_25030512_4 (first_elected VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT COUNT(first_elected) FROM table_25030512_4 WHERE district = \"Alabama 3\""
} |
Name the party for spencer bachus | CREATE TABLE table_25030512_4 (party VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT party FROM table_25030512_4 WHERE incumbent = \"Spencer Bachus\""
} |
Name the district for mike rogers | CREATE TABLE table_25030512_4 (district VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT district FROM table_25030512_4 WHERE incumbent = \"Mike Rogers\""
} |
Name the district for spencer bachus | CREATE TABLE table_25030512_4 (district VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT district FROM table_25030512_4 WHERE incumbent = \"Spencer Bachus\""
} |
In what district was keith ellison the incumbent? | CREATE TABLE table_25030512_26 (district VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT district FROM table_25030512_26 WHERE incumbent = \"Keith Ellison\""
} |
List the kilo watt hoours per day for moline. | CREATE TABLE table_25034983_2 (day_power___w__ VARCHAR, city VARCHAR) | {
"SQL_Query": "SELECT day_power___w__ FROM table_25034983_2 WHERE city = \"Moline\""
} |
In which year did the voice of muscatine show start? | CREATE TABLE table_25034983_2 (start VARCHAR, nickname VARCHAR) | {
"SQL_Query": "SELECT start FROM table_25034983_2 WHERE nickname = \"Voice of Muscatine\""
} |
In what year was cumulus founded? | CREATE TABLE table_25034983_2 (start INTEGER, owner VARCHAR) | {
"SQL_Query": "SELECT MIN(start) FROM table_25034983_2 WHERE owner = \"Cumulus\""
} |
Does the city of moline have stereo? | CREATE TABLE table_25034983_2 (stereo VARCHAR, city VARCHAR) | {
"SQL_Query": "SELECT stereo FROM table_25034983_2 WHERE city = \"Moline\""
} |
what is the company with the parent company wrightbus? | CREATE TABLE table_250309_1 (company VARCHAR, parent_company VARCHAR) | {
"SQL_Query": "SELECT company FROM table_250309_1 WHERE parent_company = \"Wrightbus\""
} |
what is the name ofhte company where the plant is in burnaston? | CREATE TABLE table_250309_1 (company VARCHAR, plant VARCHAR) | {
"SQL_Query": "SELECT company FROM table_250309_1 WHERE plant = \"Burnaston\""
} |
what models are produced where the plant is scarborough? | CREATE TABLE table_250309_1 (models_produced VARCHAR, plant VARCHAR) | {
"SQL_Query": "SELECT models_produced FROM table_250309_1 WHERE plant = \"Scarborough\""
} |
how many models produced where the plant is castle bromwich? | CREATE TABLE table_250309_1 (models_produced VARCHAR, plant VARCHAR) | {
"SQL_Query": "SELECT COUNT(models_produced) FROM table_250309_1 WHERE plant = \"Castle Bromwich\""
} |
what is the production where the parent company is ariel? | CREATE TABLE table_250309_1 (production__latest_figures_ VARCHAR, parent_company VARCHAR) | {
"SQL_Query": "SELECT production__latest_figures_ FROM table_250309_1 WHERE parent_company = \"Ariel\""
} |
What kind of chassis on the angie's list sponsored car? | CREATE TABLE table_2503102_2 (chassis VARCHAR, primary_sponsor VARCHAR) | {
"SQL_Query": "SELECT chassis FROM table_2503102_2 WHERE primary_sponsor = \"Angie's List\""
} |
What team owns the car owned by chip ganassi? | CREATE TABLE table_2503102_2 (team VARCHAR, listed_owner_s_ VARCHAR) | {
"SQL_Query": "SELECT team FROM table_2503102_2 WHERE listed_owner_s_ = \"Chip Ganassi\""
} |
What chassis is on the car repped by team rahal letterman lanigan racing? | CREATE TABLE table_2503102_2 (chassis VARCHAR, team VARCHAR) | {
"SQL_Query": "SELECT chassis FROM table_2503102_2 WHERE team = \"Rahal Letterman Lanigan Racing\""
} |
Who drives the abc supply sponsored cor? | CREATE TABLE table_2503102_2 (driver_s_ VARCHAR, primary_sponsor VARCHAR) | {
"SQL_Query": "SELECT driver_s_ FROM table_2503102_2 WHERE primary_sponsor = \"ABC Supply\""
} |
Name the number of district for tom marino | CREATE TABLE table_25030512_41 (district VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT COUNT(district) FROM table_25030512_41 WHERE incumbent = \"Tom Marino\""
} |
Name the district for 1994 | CREATE TABLE table_25030512_41 (district VARCHAR, first_elected VARCHAR) | {
"SQL_Query": "SELECT district FROM table_25030512_41 WHERE first_elected = 1994"
} |
Name the party for pennsylvania 10 | CREATE TABLE table_25030512_41 (party VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT party FROM table_25030512_41 WHERE district = \"Pennsylvania 10\""
} |
Name the result for glenn thompson | CREATE TABLE table_25030512_41 (result VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT result FROM table_25030512_41 WHERE incumbent = \"Glenn Thompson\""
} |
Name the number of district for bill shuster | CREATE TABLE table_25030512_41 (district VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT COUNT(district) FROM table_25030512_41 WHERE incumbent = \"Bill Shuster\""
} |
List the total play time for 11 starts. | CREATE TABLE table_25038931_1 (minutes INTEGER, starts VARCHAR) | {
"SQL_Query": "SELECT MAX(minutes) FROM table_25038931_1 WHERE starts = 11"
} |
In what region is the enrollment ratio in primary 94.40? | CREATE TABLE table_25042332_22 (region VARCHAR, primary__6_13_years_ VARCHAR) | {
"SQL_Query": "SELECT region FROM table_25042332_22 WHERE primary__6_13_years_ = \"94.40\""
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.