question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
What is the date southampton was the away team?
columns: - name: date type: VARCHAR - name: away_team type: VARCHAR table: table_name_52
SELECT date FROM table_name_52 WHERE away_team = "southampton"
Which Event resulted in a Win for Opponent, Shane Ott?
columns: - name: event type: VARCHAR - name: res type: VARCHAR - name: opponent type: VARCHAR table: table_name_4
SELECT event FROM table_name_4 WHERE res = "win" AND opponent = "shane ott"
How many tries for does waunarlwydd rfc have ?
columns: - name: tries_for type: VARCHAR - name: club type: VARCHAR table: table_name_2
SELECT tries_for FROM table_name_2 WHERE club = "waunarlwydd rfc"
What is the Total, when To Par is less than 14, when Finish is T12, and when Player is "Julius Boros"?
columns: - name: total type: VARCHAR - name: player type: VARCHAR - name: to_par type: VARCHAR - name: finish type: VARCHAR table: table_name_13
SELECT total FROM table_name_13 WHERE to_par < 14 AND finish = "t12" AND player = "julius boros"
How many different contents are offered by the Qualsiasi Tranne Sky HD package?
columns: - name: content type: VARCHAR - name: package_option type: VARCHAR table: table_15887683_3
SELECT COUNT(content) FROM table_15887683_3 WHERE package_option = "qualsiasi tranne Sky HD"
Which team has 1 as the drawn, with 2 as the lost?
columns: - name: team type: VARCHAR - name: drawn type: VARCHAR - name: lost type: VARCHAR table: table_name_37
SELECT team FROM table_name_37 WHERE drawn = 1 AND lost = 2
What was date of the bye week 11?
columns: - name: date type: VARCHAR - name: attendance type: VARCHAR - name: week type: VARCHAR table: table_name_38
SELECT date FROM table_name_38 WHERE attendance = "bye" AND week = 11
What place result was the 1996 season at Lake Louise, Canada?
columns: - name: place type: VARCHAR - name: season type: VARCHAR - name: location type: VARCHAR table: table_name_73
SELECT place FROM table_name_73 WHERE season = 1996 AND location = "lake louise, canada"
Which Player has a Total Goals greater than 1 and Qualifying Goals smaller than 3?
columns: - name: player type: VARCHAR - name: total_goals type: VARCHAR - name: qualifying_goals type: VARCHAR table: table_name_90
SELECT player FROM table_name_90 WHERE total_goals > 1 AND qualifying_goals < 3
What is the numeral where the English name is Florin?
columns: - name: numeral type: VARCHAR - name: english_name type: VARCHAR table: table_1682865_1
SELECT numeral FROM table_1682865_1 WHERE english_name = "Florin"
Which rank has a team of Suzuki with under 16 points?
columns: - name: rank type: VARCHAR - name: team type: VARCHAR - name: points type: VARCHAR table: table_name_96
SELECT rank FROM table_name_96 WHERE team = "suzuki" AND points < 16
What tournament did Pemra Özgen play against julia kimmelmann in the finals?
columns: - name: tournament type: VARCHAR - name: opponent_in_the_final type: VARCHAR table: table_name_54
SELECT tournament FROM table_name_54 WHERE opponent_in_the_final = "julia kimmelmann"
What is the Outcome of the match with a Score of 6–3, 6–4?
columns: - name: outcome type: VARCHAR - name: score type: VARCHAR table: table_name_2
SELECT outcome FROM table_name_2 WHERE score = "6–3, 6–4"
What is the highest total cargo of an airport ranked larger than 19 with a code of BKK/VTBS?
columns: - name: total_cargo__metric_tonnes_ type: INTEGER - name: code__iata_icao_ type: VARCHAR - name: rank type: VARCHAR table: table_name_18
SELECT MAX(total_cargo__metric_tonnes_) FROM table_name_18 WHERE code__iata_icao_ = "bkk/vtbs" AND rank > 19
What is the height of the player who is from Huntington, WV?
columns: - name: height type: VARCHAR - name: hometown type: VARCHAR table: table_name_93
SELECT height FROM table_name_93 WHERE hometown = "huntington, wv"
What is the sum of League Goals, when Position is "DF", when League Cup Apps is "0", when Total Apps is "7", and when FLT Goals is less than 0?
columns: - name: league_goals type: INTEGER - name: flt_goals type: VARCHAR - name: total_apps type: VARCHAR - name: position type: VARCHAR - name: league_cup_apps type: VARCHAR table: table_name_95
SELECT SUM(league_goals) FROM table_name_95 WHERE position = "df" AND league_cup_apps = "0" AND total_apps = "7" AND flt_goals < 0
Baldwin Locomotive Works, also with works number 40864, is listed as what number?
columns: - name: number type: VARCHAR - name: builder type: VARCHAR - name: works_number type: VARCHAR table: table_name_2
SELECT number FROM table_name_2 WHERE builder = "baldwin locomotive works" AND works_number = 40864
What is the number of stages where the teams classification leader is Cervélo Testteam?
columns: - name: stage type: VARCHAR - name: teams_classification type: VARCHAR table: table_26010857_13
SELECT COUNT(stage) FROM table_26010857_13 WHERE teams_classification = "Cervélo TestTeam"
What was the record in the game where the opponent was the cincinnati royals?
columns: - name: record type: VARCHAR - name: opponent type: VARCHAR table: table_name_60
SELECT record FROM table_name_60 WHERE opponent = "cincinnati royals"
What district is the parish Milburn in?
columns: - name: district type: VARCHAR - name: name type: VARCHAR table: table_name_85
SELECT district FROM table_name_85 WHERE name = "milburn"
What was the team's record on August 4?
columns: - name: record type: VARCHAR - name: date type: VARCHAR table: table_name_8
SELECT record FROM table_name_8 WHERE date = "august 4"
How many previous years did Maebashi Ikuei high school have a total number of 1 participation?
columns: - name: year_of_previous_participation type: VARCHAR - name: total_number_of_participation type: VARCHAR - name: high_school_name type: VARCHAR table: table_2518850_4
SELECT COUNT(year_of_previous_participation) FROM table_2518850_4 WHERE total_number_of_participation = 1 AND high_school_name = "Maebashi Ikuei"
What was the lowest attendance at a game when Pittsburgh was the home team?
columns: - name: attendance type: INTEGER - name: home type: VARCHAR table: table_name_68
SELECT MIN(attendance) FROM table_name_68 WHERE home = "pittsburgh"
Which Year is the lowest one that has a To par of –1?
columns: - name: year type: INTEGER - name: to_par type: VARCHAR table: table_name_93
SELECT MIN(year) FROM table_name_93 WHERE to_par = "–1"
What is the 1st leg score when US Mbila Nzambi is team 1?
columns: - name: team_1 type: VARCHAR table: table_name_3
SELECT 1 AS st_leg FROM table_name_3 WHERE team_1 = "us mbila nzambi"
What district did the Democratic party incumbent Stephen J. Solarz get first elected to in 1974?
columns: - name: district type: VARCHAR - name: incumbent type: VARCHAR - name: party type: VARCHAR - name: first_elected type: VARCHAR table: table_1341663_33
SELECT district FROM table_1341663_33 WHERE party = "Democratic" AND first_elected = 1974 AND incumbent = "Stephen J. Solarz"
What year saw a score of 8-5?
columns: - name: year type: VARCHAR - name: score type: VARCHAR table: table_name_9
SELECT year FROM table_name_9 WHERE score = "8-5"
When the team had more than 46 wins, what were the average losses?
columns: - name: losses type: INTEGER - name: wins type: INTEGER table: table_name_13
SELECT AVG(losses) FROM table_name_13 WHERE wins > 46
What time was achieved on Saturday 29th August by the rider who recorded 22' 54.20 98.842mph on Tuesday 25th August?
columns: - name: sat_29_aug type: VARCHAR - name: tues_25_aug type: VARCHAR table: table_23465864_4
SELECT sat_29_aug FROM table_23465864_4 WHERE tues_25_aug = "22' 54.20 98.842mph"
What team was the contestant who finished in 10th place originally on?
columns: - name: original_team type: VARCHAR - name: result type: VARCHAR table: table_19810459_1
SELECT original_team FROM table_19810459_1 WHERE result = "10th place"
Where did jamie cox & daniel marsh play against queensland?
columns: - name: venue type: VARCHAR - name: opponent type: VARCHAR - name: batsmen type: VARCHAR table: table_name_71
SELECT venue FROM table_name_71 WHERE opponent = "queensland" AND batsmen = "jamie cox & daniel marsh"
What Distance had a Race Leader in Km (mi)?
columns: - name: distance type: VARCHAR - name: race_leader type: VARCHAR table: table_name_94
SELECT distance FROM table_name_94 WHERE race_leader = "km (mi)"
What is Surface, when Championship is Australian Open?
columns: - name: surface type: VARCHAR - name: championship type: VARCHAR table: table_name_49
SELECT surface FROM table_name_49 WHERE championship = "australian open"
Name the capacity for the torque of n·m (lb·ft) @4150
columns: - name: capacity type: VARCHAR - name: torque__nm__rpm type: VARCHAR table: table_name_90
SELECT capacity FROM table_name_90 WHERE torque__nm__rpm = "n·m (lb·ft) @4150"
How large was the total when the E Score was greater than 9.35 and T Score was less than 4?
columns: - name: total type: INTEGER - name: e_score type: VARCHAR - name: t_score type: VARCHAR table: table_name_35
SELECT MAX(total) FROM table_name_35 WHERE e_score > 9.35 AND t_score < 4
How many tickets were sold/available when the gross revenue (2011) was $5,948,390?
columns: - name: tickets_sold___available type: VARCHAR - name: gross_revenue__2011_ type: VARCHAR table: table_name_4
SELECT tickets_sold___available FROM table_name_4 WHERE gross_revenue__2011_ = "$5,948,390"
Who was the crew chief for the team from Make Motorsports?
columns: - name: crew_chief type: VARCHAR - name: team type: VARCHAR table: table_name_73
SELECT crew_chief FROM table_name_73 WHERE team = "make motorsports"
What is the lowest mark of the rank 8 record?
columns: - name: mark type: INTEGER - name: rank type: VARCHAR table: table_name_34
SELECT MIN(mark) FROM table_name_34 WHERE rank = 8
When was there 204 deaths?
columns: - name: dates_active type: VARCHAR - name: deaths type: VARCHAR table: table_name_93
SELECT dates_active FROM table_name_93 WHERE deaths = "204"
Which Report includes Monaco?
columns: - name: report type: VARCHAR - name: location type: VARCHAR table: table_name_95
SELECT report FROM table_name_95 WHERE location = "monaco"
Which Tournament was on 2 October 2006?
columns: - name: tournament type: VARCHAR - name: date type: VARCHAR table: table_name_98
SELECT tournament FROM table_name_98 WHERE date = "2 october 2006"
What is the total number of wins for the entry that has fewer than 49 goals against, 39 goals for, 9 draws, and fewer than 31 points?
columns: - name: wins type: VARCHAR - name: points type: VARCHAR - name: goals_for type: VARCHAR - name: goals_against type: VARCHAR - name: draws type: VARCHAR table: table_name_51
SELECT COUNT(wins) FROM table_name_51 WHERE goals_against < 49 AND draws = 9 AND goals_for = 39 AND points < 31
What are radio electricals when secretariat is wtr i?
columns: - name: Radio type: VARCHAR - name: secretariat type: VARCHAR table: table_1348246_3
SELECT Radio AS electrical FROM table_1348246_3 WHERE secretariat = "WTR I"
Name the least points with chassis of kurtis kraft 3000 and year before 1951
columns: - name: points type: INTEGER - name: chassis type: VARCHAR - name: year type: VARCHAR table: table_name_92
SELECT MIN(points) FROM table_name_92 WHERE chassis = "kurtis kraft 3000" AND year < 1951
What was the number of seasons that was directed by Joanna Kerns?
columns: - name: season__number type: VARCHAR - name: directed_by type: VARCHAR table: table_17356106_1
SELECT COUNT(season__number) FROM table_17356106_1 WHERE directed_by = "Joanna Kerns"
What is the english name of the ministry of defense with an abbreviation of nda bōei-dai(防衛大)?
columns: - name: english_name type: VARCHAR - name: provider_national_government_ type: VARCHAR - name: abbreviation type: VARCHAR table: table_name_31
SELECT english_name FROM table_name_31 WHERE provider_national_government_ = "ministry of defense" AND abbreviation = "nda bōei-dai(防衛大)"
Name the try bonus for lost being 11 and losing bonus is 6
columns: - name: try_bonus type: VARCHAR - name: lost type: VARCHAR - name: losing_bonus type: VARCHAR table: table_17941032_3
SELECT try_bonus FROM table_17941032_3 WHERE lost = "11" AND losing_bonus = "6"
Which species is male?
columns: - name: species type: VARCHAR - name: gender type: VARCHAR table: table_name_70
SELECT species FROM table_name_70 WHERE gender = "male"
what is the time/retired for driver richard attwood?
columns: - name: time_retired type: VARCHAR - name: driver type: VARCHAR table: table_name_56
SELECT time_retired FROM table_name_56 WHERE driver = "richard attwood"
Who directed the episode written cyrus nowrasteh?
columns: - name: directed_by type: VARCHAR - name: written_by type: VARCHAR table: table_name_85
SELECT directed_by FROM table_name_85 WHERE written_by = "cyrus nowrasteh"
What is the platform for the latest release 5.0.3?
columns: - name: platform type: VARCHAR - name: latest_stable_release type: VARCHAR table: table_name_53
SELECT platform FROM table_name_53 WHERE latest_stable_release = "5.0.3"
What company focuses on Engine Overhaul for their principal activity?
columns: - name: company type: VARCHAR - name: principal_activities type: VARCHAR table: table_name_7
SELECT company FROM table_name_7 WHERE principal_activities = "engine overhaul"
Name the discipline for bronze being 0
columns: - name: discipline type: VARCHAR - name: bronze type: VARCHAR table: table_22360_3
SELECT discipline FROM table_22360_3 WHERE bronze = 0
with silver count at 0, what is the lowest bronze count?
columns: - name: bronze type: INTEGER - name: silver type: INTEGER table: table_name_82
SELECT MIN(bronze) FROM table_name_82 WHERE silver < 0
What is the round number for the date 19/06/2009?
columns: - name: round type: VARCHAR - name: date type: VARCHAR table: table_21311525_1
SELECT round FROM table_21311525_1 WHERE date = "19/06/2009"
What is the location of the b.c. open?
columns: - name: location type: VARCHAR - name: tournament type: VARCHAR table: table_name_81
SELECT location FROM table_name_81 WHERE tournament = "b.c. open"
What is Salva Ortega's result?
columns: - name: result type: VARCHAR - name: artist type: VARCHAR table: table_19763199_4
SELECT result FROM table_19763199_4 WHERE artist = "Salva Ortega"
What was the first year he placed 12th
columns: - name: year type: INTEGER - name: result type: VARCHAR table: table_name_9
SELECT MIN(year) FROM table_name_9 WHERE result = "12th"
What were the laps of aprilia with a grid of 10?
columns: - name: laps type: VARCHAR - name: manufacturer type: VARCHAR - name: grid type: VARCHAR table: table_name_72
SELECT laps FROM table_name_72 WHERE manufacturer = "aprilia" AND grid = 10
Which Place has a Score smaller than 72, and a To par of −1, and a Country of spain?
columns: - name: place type: VARCHAR - name: country type: VARCHAR - name: score type: VARCHAR - name: to_par type: VARCHAR table: table_name_51
SELECT place FROM table_name_51 WHERE score < 72 AND to_par = "−1" AND country = "spain"
Name the rank of birmingham airport
columns: - name: rank type: INTEGER - name: airport type: VARCHAR table: table_13836704_8
SELECT MAX(rank) FROM table_13836704_8 WHERE airport = "Birmingham airport"
Who did they play at lincoln financial field at 8:30 (ET) after week 14?
columns: - name: opponent type: VARCHAR - name: time__et_ type: VARCHAR - name: week type: VARCHAR - name: game_site type: VARCHAR table: table_name_88
SELECT opponent FROM table_name_88 WHERE week > 14 AND game_site = "lincoln financial field" AND time__et_ = "8:30"
Name the segment d for combination locks
columns: - name: segment_d type: VARCHAR - name: segment_a type: VARCHAR table: table_15187735_3
SELECT segment_d FROM table_15187735_3 WHERE segment_a = "Combination Locks"
What was the result when the record was 62–12?
columns: - name: result type: VARCHAR - name: record type: VARCHAR table: table_name_75
SELECT result FROM table_name_75 WHERE record = "62–12"
What is the Total of the player who won before 1983 with a smaller than 4 To par?
columns: - name: total type: VARCHAR - name: to_par type: VARCHAR - name: year_won type: VARCHAR table: table_name_46
SELECT COUNT(total) FROM table_name_46 WHERE to_par < 4 AND year_won < 1983
What was the Attendance on Week 8?
columns: - name: attendance type: INTEGER - name: week type: VARCHAR table: table_name_70
SELECT AVG(attendance) FROM table_name_70 WHERE week = 8
What's Matts Nilsson's team that's ranked better than 7?
columns: - name: team type: VARCHAR - name: rank type: VARCHAR - name: rider type: VARCHAR table: table_name_81
SELECT team FROM table_name_81 WHERE rank < 7 AND rider = "matts nilsson"
How much Money is requested by BassToneSlap?
columns: - name: "money_requested__\xA3_" type: VARCHAR - name: company_or_product_name type: VARCHAR table: table_name_10
SELECT money_requested__£_ FROM table_name_10 WHERE company_or_product_name = "basstoneslap"
Which Partner has a Date of 12 july 2009?
columns: - name: partner type: VARCHAR - name: date type: VARCHAR table: table_name_18
SELECT partner FROM table_name_18 WHERE date = "12 july 2009"
What is the position of the team that played at the venue with more than 6,500 capacity?
columns: - name: position_in_1999 type: VARCHAR - name: capacity type: INTEGER table: table_name_70
SELECT position_in_1999 FROM table_name_70 WHERE capacity > 6 OFFSET 500
Date of december 29 has what visitor?
columns: - name: visitor type: VARCHAR - name: date type: VARCHAR table: table_name_9
SELECT visitor FROM table_name_9 WHERE date = "december 29"
Who had the general classification when the trofeo fast team was Mapei-Bricobi, the points classification went to Mariano Piccoli and the mountains classification went to Marco Pantani in stage 22?
columns: - name: general_classification type: VARCHAR - name: stage type: VARCHAR - name: mountains_classification type: VARCHAR - name: trofeo_fast_team type: VARCHAR - name: points_classification type: VARCHAR table: table_name_12
SELECT general_classification FROM table_name_12 WHERE trofeo_fast_team = "mapei-bricobi" AND points_classification = "mariano piccoli" AND mountains_classification = "marco pantani" AND stage = "22"
What is the Outcome of the Match played after 2003 with a Score of 6–0, 6–3?
columns: - name: outcome type: VARCHAR - name: year type: VARCHAR - name: score type: VARCHAR table: table_name_88
SELECT outcome FROM table_name_88 WHERE year > 2003 AND score = "6–0, 6–3"
How many starts have a year prior to 2012, and team penske as the team, with a finish greater than 27?
columns: - name: start type: INTEGER - name: finish type: VARCHAR - name: year type: VARCHAR - name: team type: VARCHAR table: table_name_35
SELECT SUM(start) FROM table_name_35 WHERE year < 2012 AND team = "team penske" AND finish > 27
What date was the game that was before week 4 and was attended by over 54,015 people ?
columns: - name: date type: VARCHAR - name: week type: VARCHAR - name: attendance type: VARCHAR table: table_name_33
SELECT date FROM table_name_33 WHERE week < 4 AND attendance > 54 OFFSET 015
Which opponent has 32194 as the attendance?
columns: - name: opponent type: VARCHAR - name: attendance type: VARCHAR table: table_23466021_4
SELECT opponent FROM table_23466021_4 WHERE attendance = 32194
Wha episode number in the series had 24.8 million u.s. viewers?
columns: - name: no_in_series type: INTEGER - name: us_viewers__millions_ type: VARCHAR table: table_27713890_1
SELECT MIN(no_in_series) FROM table_27713890_1 WHERE us_viewers__millions_ = "24.8"
Name the least ends won for pf being 78
columns: - name: Ends type: INTEGER - name: pf type: VARCHAR table: table_25107064_2
SELECT MIN(Ends) AS won FROM table_25107064_2 WHERE pf = 78
What college is getting a player that attends Wichita Heights High School?
columns: - name: college type: VARCHAR - name: school type: VARCHAR table: table_name_32
SELECT college FROM table_name_32 WHERE school = "wichita heights high school"
what is the date of vacancy when the date of appointment is 1 january 2009?
columns: - name: date_of_vacancy type: VARCHAR - name: date_of_appointment type: VARCHAR table: table_name_54
SELECT date_of_vacancy FROM table_name_54 WHERE date_of_appointment = "1 january 2009"
What is the lowest rank of the team with 0 bronze, 1 silver, and more than 0 gold?
columns: - name: rank type: INTEGER - name: gold type: VARCHAR - name: bronze type: VARCHAR - name: silver type: VARCHAR table: table_name_69
SELECT MIN(rank) FROM table_name_69 WHERE bronze = 0 AND silver = 1 AND gold > 0
What time is associated with the event that happened in Tokyo, Japan, ending in a draw, with 3 rounds?
columns: - name: time type: VARCHAR - name: res type: VARCHAR - name: location type: VARCHAR - name: round type: VARCHAR table: table_name_44
SELECT time FROM table_name_44 WHERE location = "tokyo, japan" AND round = 3 AND res = "draw"
Who had a best time of 1:00.870?
columns: - name: name type: VARCHAR - name: best type: VARCHAR table: table_name_24
SELECT name FROM table_name_24 WHERE best = "1:00.870"
What is the total with a 25-19 set 2 on Jun 17?
columns: - name: total type: VARCHAR - name: set_2 type: VARCHAR - name: date type: VARCHAR table: table_name_57
SELECT total FROM table_name_57 WHERE set_2 = "25-19" AND date = "jun 17"
How many series numbers are there when there were 15.8 u.s. viewers (millions)?
columns: - name: series__number type: VARCHAR - name: us_viewers__millions_ type: VARCHAR table: table_27833469_1
SELECT COUNT(series__number) FROM table_27833469_1 WHERE us_viewers__millions_ = "15.8"
Name the most rank for the United States with wins less than 1
columns: - name: rank type: INTEGER - name: country type: VARCHAR - name: wins type: VARCHAR table: table_name_18
SELECT MAX(rank) FROM table_name_18 WHERE country = "united states" AND wins < 1
what is the lowest place when the language is croatian?
columns: - name: place type: INTEGER - name: language type: VARCHAR table: table_name_95
SELECT MIN(place) FROM table_name_95 WHERE language = "croatian"
What is the defending forces when Al-Murassas shows for name?
columns: - name: defending_forces type: VARCHAR - name: name type: VARCHAR table: table_name_21
SELECT defending_forces FROM table_name_21 WHERE name = "al-murassas"
Which base has a company of Theatro Technis Karolos Koun?
columns: - name: base type: VARCHAR - name: company type: VARCHAR table: table_name_59
SELECT base FROM table_name_59 WHERE company = "theatro technis karolos koun"
Name the total number of series sorted for when released is april 2010
columns: - name: series_sorted type: VARCHAR - name: released type: VARCHAR table: table_1620397_2
SELECT COUNT(series_sorted) FROM table_1620397_2 WHERE released = "April 2010"
What percentage of users were using Firefox according to the source that reported 21.70% used Internet Explorer?
columns: - name: firefox type: VARCHAR - name: internet_explorer type: VARCHAR table: table_name_22
SELECT firefox FROM table_name_22 WHERE internet_explorer = "21.70%"
Which country had a t4 place and scored 66-73=139?
columns: - name: country type: VARCHAR - name: place type: VARCHAR - name: score type: VARCHAR table: table_name_42
SELECT country FROM table_name_42 WHERE place = "t4" AND score = 66 - 73 = 139
What is the format of the album with a year less than 1992?
columns: - name: format type: VARCHAR - name: year type: INTEGER table: table_name_58
SELECT format FROM table_name_58 WHERE year < 1992
How many points per game did he have when he had 1.5 assists per game?
columns: - name: points_per_game type: VARCHAR - name: assists_per_game type: VARCHAR table: table_2761641_1
SELECT points_per_game FROM table_2761641_1 WHERE assists_per_game = "1.5"
Name the sum of draws when the position is less than 17 and wins is less than 11
columns: - name: draws type: INTEGER - name: position type: VARCHAR - name: wins type: VARCHAR table: table_name_82
SELECT SUM(draws) FROM table_name_82 WHERE position < 17 AND wins < 11
What is the most gold where silver is 0?
columns: - name: gold type: INTEGER - name: silver type: INTEGER table: table_name_42
SELECT MAX(gold) FROM table_name_42 WHERE silver < 0
What is the number of weight values associated with 340 blocks and more than 353 spikes?
columns: - name: weight type: VARCHAR - name: block type: VARCHAR - name: spike type: VARCHAR table: table_name_7
SELECT COUNT(weight) FROM table_name_7 WHERE block = 340 AND spike > 353
what is the type when the regulatory citation is 40 cfr 50.9(a)?
columns: - name: type type: VARCHAR - name: regulatory_citation type: VARCHAR table: table_name_63
SELECT type FROM table_name_63 WHERE regulatory_citation = "40 cfr 50.9(a)"
Was it a home game on the date of April 6?
columns: - name: home type: VARCHAR - name: date type: VARCHAR table: table_name_6
SELECT home FROM table_name_6 WHERE date = "april 6"
How many overs occurred at Waca Ground against Queensland?
columns: - name: overs type: VARCHAR - name: ground type: VARCHAR - name: opponent type: VARCHAR table: table_name_31
SELECT overs FROM table_name_31 WHERE ground = "waca ground" AND opponent = "queensland"