question
stringlengths 15
152
| context
stringlengths 58
202
| answer
stringlengths 37
161
|
|---|---|---|
what amount of try bonus where the game was won by 11?
|
columns:
- name: try_bonus
type: VARCHAR
- name: won
type: VARCHAR
table: table_13564637_3
|
SELECT COUNT(try_bonus) FROM table_13564637_3 WHERE won = "11"
|
What is the party where the incumbent is overton brooks?
|
columns:
- name: party
type: VARCHAR
- name: incumbent
type: VARCHAR
table: table_1342198_18
|
SELECT party FROM table_1342198_18 WHERE incumbent = "Overton Brooks"
|
What party does clyde t. ellis represent?
|
columns:
- name: party
type: VARCHAR
- name: incumbent
type: VARCHAR
table: table_1342256_5
|
SELECT party FROM table_1342256_5 WHERE incumbent = "Clyde T. Ellis"
|
Name the number of population density 2010 for duque de caxias
|
columns:
- name: "population_density_2010___km\xB2_"
type: VARCHAR
- name: administrative_division
type: VARCHAR
table: table_14986292_1
|
SELECT COUNT(population_density_2010___km²_) FROM table_14986292_1 WHERE administrative_division = "Duque de Caxias"
|
Which players scored the most points when the opposing team was Seattle and how many points did they score?
|
columns:
- name: high_points
type: VARCHAR
- name: team
type: VARCHAR
table: table_13619135_5
|
SELECT high_points FROM table_13619135_5 WHERE team = "Seattle"
|
what's the district with incumbent being william j. driver
|
columns:
- name: district
type: VARCHAR
- name: incumbent
type: VARCHAR
table: table_1342331_5
|
SELECT district FROM table_1342331_5 WHERE incumbent = "William J. Driver"
|
Who were the candidates when Shirley Chisholm was the incumbent?
|
columns:
- name: candidates
type: VARCHAR
- name: incumbent
type: VARCHAR
table: table_1341663_33
|
SELECT candidates FROM table_1341663_33 WHERE incumbent = "Shirley Chisholm"
|
How many parties won the election in the California 23 district?
|
columns:
- name: party
type: VARCHAR
- name: district
type: VARCHAR
table: table_1341690_5
|
SELECT COUNT(party) FROM table_1341690_5 WHERE district = "California 23"
|
Who is on the 2002 commission from district 3?
|
columns:
- name: district
type: VARCHAR
table: table_136027_2
|
SELECT 2002 AS _commission FROM table_136027_2 WHERE district = "district 3"
|
Name the men doubles for els baert
|
columns:
- name: men_doubles
type: VARCHAR
- name: womens_singles
type: VARCHAR
table: table_14903355_2
|
SELECT men_doubles FROM table_14903355_2 WHERE womens_singles = "Els Baert"
|
What is the Spanish word for the French word filtrer?
|
columns:
- name: spanish
type: VARCHAR
- name: french
type: VARCHAR
table: table_15040_8
|
SELECT spanish FROM table_15040_8 WHERE french = "filtrer"
|
Name the total number of result for mississippi 4?
|
columns:
- name: result
type: VARCHAR
- name: district
type: VARCHAR
table: table_1342393_23
|
SELECT COUNT(result) FROM table_1342393_23 WHERE district = "Mississippi 4"
|
For the Republican party what are the names of the incumbents?
|
columns:
- name: incumbent
type: VARCHAR
- name: party
type: VARCHAR
table: table_1342149_42
|
SELECT incumbent FROM table_1342149_42 WHERE party = "Republican"
|
Name the away team score for richmond
|
columns:
- name: away_team
type: VARCHAR
table: table_14312471_3
|
SELECT away_team AS score FROM table_14312471_3 WHERE away_team = "Richmond"
|
Name the number of men doubles for 2007
|
columns:
- name: men_doubles
type: VARCHAR
- name: year
type: VARCHAR
table: table_14903355_2
|
SELECT COUNT(men_doubles) FROM table_14903355_2 WHERE year = 2007
|
Where was the game played on may 20?
|
columns:
- name: location
type: VARCHAR
- name: date
type: VARCHAR
table: table_13710464_1
|
SELECT location FROM table_13710464_1 WHERE date = "May 20"
|
what is the maximum rank with per capita income being $17,013
|
columns:
- name: rank
type: INTEGER
- name: per_capita_income
type: VARCHAR
table: table_1350350_2
|
SELECT MAX(rank) FROM table_1350350_2 WHERE per_capita_income = "$17,013"
|
what is the district with the candidates edward boland (d) unopposed?
|
columns:
- name: district
type: VARCHAR
- name: candidates
type: VARCHAR
table: table_1341690_21
|
SELECT district FROM table_1341690_21 WHERE candidates = "Edward Boland (D) Unopposed"
|
What nominees had a net vote of 34.46%?
|
columns:
- name: nominee
type: VARCHAR
- name: net_vote
type: VARCHAR
table: table_15162479_8
|
SELECT nominee FROM table_15162479_8 WHERE net_vote = "34.46%"
|
What is the enrollment amount where Hispanic (%) is 3.6?
|
columns:
- name: enrollment
type: VARCHAR
- name: hispanic___percentage_
type: VARCHAR
table: table_14754471_1
|
SELECT enrollment FROM table_14754471_1 WHERE hispanic___percentage_ = "3.6"
|
what's the team with stadium being borough briggs
|
columns:
- name: team
type: VARCHAR
- name: stadium
type: VARCHAR
table: table_14003108_1
|
SELECT team FROM table_14003108_1 WHERE stadium = "Borough Briggs"
|
Who were all of the opponents when the date was November 12, 1978?
|
columns:
- name: opponent
type: VARCHAR
- name: date
type: VARCHAR
table: table_14945112_1
|
SELECT opponent FROM table_14945112_1 WHERE date = "November 12, 1978"
|
who is the the candidates with first elected being 1977
|
columns:
- name: candidates
type: VARCHAR
- name: first_elected
type: VARCHAR
table: table_1341586_19
|
SELECT candidates FROM table_1341586_19 WHERE first_elected = 1977
|
How many districts represented Edwin E. Willis?
|
columns:
- name: district
type: VARCHAR
- name: incumbent
type: VARCHAR
table: table_1341884_20
|
SELECT COUNT(district) FROM table_1341884_20 WHERE incumbent = "Edwin E. Willis"
|
what's the result with incumbent being bill g. lowrey
|
columns:
- name: result
type: VARCHAR
- name: incumbent
type: VARCHAR
table: table_1342379_23
|
SELECT result FROM table_1342379_23 WHERE incumbent = "Bill G. Lowrey"
|
what's the vineyard surface (2010) with grand cru being bienvenues-bâtard-montrachet
|
columns:
- name: vineyard_surface__2010_
type: VARCHAR
- name: grand_cru
type: VARCHAR
table: table_13981938_1
|
SELECT vineyard_surface__2010_ FROM table_13981938_1 WHERE grand_cru = "Bienvenues-Bâtard-Montrachet"
|
who is the the mens doubles with mixed doubles being jimm aalto nina sarnesto
|
columns:
- name: mens_doubles
type: VARCHAR
- name: mixed_doubles
type: VARCHAR
table: table_13857700_1
|
SELECT mens_doubles FROM table_13857700_1 WHERE mixed_doubles = "Jimm Aalto Nina Sarnesto"
|
What district had someone first elected in 1932?
|
columns:
- name: district
type: VARCHAR
- name: first_elected
type: VARCHAR
table: table_1342292_4
|
SELECT district FROM table_1342292_4 WHERE first_elected = 1932
|
Which district shows a first elected of 1980?
|
columns:
- name: district
type: VARCHAR
- name: first_elected
type: VARCHAR
table: table_1341598_11
|
SELECT district FROM table_1341598_11 WHERE first_elected = 1980
|
What is the name of the column points against?
|
columns:
- name: Id
type: VARCHAR
table: table_13564637_4
|
SELECT "points" AS _against FROM table_13564637_4 WHERE "points" = "points"
|
Name the name of administrative unit for 3464 people
|
columns:
- name: name_of_administrative_unit
type: VARCHAR
- name: population__people_
type: VARCHAR
table: table_14465924_1
|
SELECT name_of_administrative_unit FROM table_14465924_1 WHERE population__people_ = 3464
|
Who played Richmond at home?
|
columns:
- name: home_team
type: VARCHAR
- name: away_team
type: VARCHAR
table: table_14312471_7
|
SELECT home_team FROM table_14312471_7 WHERE away_team = "Richmond"
|
is γолемата вода nominated for anything?
|
columns:
- name: result
type: VARCHAR
- name: original_title
type: VARCHAR
table: table_14928423_1
|
SELECT result FROM table_14928423_1 WHERE original_title = "Γолемата Вода"
|
Which elementary schools list Cort Monroe as the principal from 2013 to 2014?
|
columns:
- name: elementary_schools
type: VARCHAR
- name: principal__2013_2014_
type: VARCHAR
table: table_14254419_3
|
SELECT elementary_schools FROM table_14254419_3 WHERE principal__2013_2014_ = "Cort Monroe"
|
How man students were from Maryland in Fall 05?
|
columns:
- name: fall_05
type: VARCHAR
- name: states
type: VARCHAR
table: table_15055594_6
|
SELECT fall_05 FROM table_15055594_6 WHERE states = "Maryland"
|
What was the incumbent for texas 19?
|
columns:
- name: incumbent
type: VARCHAR
- name: district
type: VARCHAR
table: table_1341663_44
|
SELECT incumbent FROM table_1341663_44 WHERE district = "Texas 19"
|
how many equivalent daily inflation rate with time required for prices to double being 3.7 days
|
columns:
- name: equivalent_daily_inflation_rate
type: VARCHAR
- name: time_required_for_prices_to_double
type: VARCHAR
table: table_13681_2
|
SELECT COUNT(equivalent_daily_inflation_rate) FROM table_13681_2 WHERE time_required_for_prices_to_double = "3.7 days"
|
What is the candidates result that is tom j. murray (d) unopposed?
|
columns:
- name: result
type: VARCHAR
- name: candidates
type: VARCHAR
table: table_1342149_42
|
SELECT result FROM table_1342149_42 WHERE candidates = "Tom J. Murray (D) Unopposed"
|
What is the district for carl vinson?
|
columns:
- name: district
type: VARCHAR
- name: incumbent
type: VARCHAR
table: table_1341930_11
|
SELECT district FROM table_1341930_11 WHERE incumbent = "Carl Vinson"
|
Who was awarded the young ride classification leader when the winner was Marzio Bruseghin?
|
columns:
- name: young_rider_classification
type: VARCHAR
- name: winner
type: VARCHAR
table: table_14710984_2
|
SELECT young_rider_classification FROM table_14710984_2 WHERE winner = "Marzio Bruseghin"
|
When the population rank is 34, what the is % change?
|
columns:
- name: _percentage_change
type: VARCHAR
- name: population_rank
type: VARCHAR
table: table_1425958_1
|
SELECT _percentage_change FROM table_1425958_1 WHERE population_rank = 34
|
What was the result in the election in which Ralph R. Eltse was the incumbent?
|
columns:
- name: result
type: VARCHAR
- name: incumbent
type: VARCHAR
table: table_1342331_6
|
SELECT result FROM table_1342331_6 WHERE incumbent = "Ralph R. Eltse"
|
What was the outcome of the election in Pennsylvania 6 district?
|
columns:
- name: result
type: VARCHAR
- name: district
type: VARCHAR
table: table_1341640_39
|
SELECT result FROM table_1341640_39 WHERE district = "Pennsylvania 6"
|
What district is incumbent frank chelf from?
|
columns:
- name: district
type: VARCHAR
- name: incumbent
type: VARCHAR
table: table_1341884_19
|
SELECT district FROM table_1341884_19 WHERE incumbent = "Frank Chelf"
|
What was the to winnning team when the tu winning team was #16 2002?
|
columns:
- name: to_winning_team
type: VARCHAR
- name: tu_winning_team
type: VARCHAR
table: table_13657883_2
|
SELECT to_winning_team FROM table_13657883_2 WHERE tu_winning_team = "#16 2002"
|
what class is Braxton Kelley in?
|
columns:
- name: class
type: VARCHAR
- name: name
type: VARCHAR
table: table_14966667_19
|
SELECT COUNT(class) FROM table_14966667_19 WHERE name = "Braxton Kelley"
|
which section did seymour halpern run in
|
columns:
- name: district
type: VARCHAR
- name: incumbent
type: VARCHAR
table: table_1341865_34
|
SELECT district FROM table_1341865_34 WHERE incumbent = "Seymour Halpern"
|
Name the transit passengers for 171078
|
columns:
- name: transit_passengers
type: INTEGER
- name: freight__metric_tonnes_
type: VARCHAR
table: table_13836704_8
|
SELECT MAX(transit_passengers) FROM table_13836704_8 WHERE freight__metric_tonnes_ = 171078
|
What was the result of the election in the Arkansas 2 district?
|
columns:
- name: result
type: VARCHAR
- name: district
type: VARCHAR
table: table_1342359_4
|
SELECT result FROM table_1342359_4 WHERE district = "Arkansas 2"
|
what's the airport with total passengers 2009 being 157933
|
columns:
- name: airport
type: VARCHAR
- name: total_passengers_2009
type: VARCHAR
table: table_13836704_4
|
SELECT airport FROM table_13836704_4 WHERE total_passengers_2009 = 157933
|
What are the counties represented in District 12.1 12a?
|
columns:
- name: counties_represented
type: VARCHAR
- name: district
type: VARCHAR
table: table_14009909_1
|
SELECT counties_represented FROM table_14009909_1 WHERE district = "12.1 12A"
|
How many total earnings are recorded when her best finish is t2 with a 71.25 scoring average?
|
columns:
- name: earnings___
type: VARCHAR
- name: best_finish
type: VARCHAR
- name: scoring_average
type: VARCHAR
table: table_14853156_2
|
SELECT COUNT(earnings___) AS $__ FROM table_14853156_2 WHERE best_finish = "T2" AND scoring_average = "71.25"
|
In the Georgia 6 district, what is the elected party?
|
columns:
- name: party
type: VARCHAR
- name: district
type: VARCHAR
table: table_1341663_11
|
SELECT party FROM table_1341663_11 WHERE district = "Georgia 6"
|
Name the most attendance for game site for los angeles memorial coliseum
|
columns:
- name: attendance
type: INTEGER
- name: game_site
type: VARCHAR
table: table_14984103_1
|
SELECT MAX(attendance) FROM table_14984103_1 WHERE game_site = "Los Angeles Memorial Coliseum"
|
What is the avg start that starts at 30?
|
columns:
- name: avg_start
type: VARCHAR
- name: starts
type: VARCHAR
table: table_1458412_1
|
SELECT avg_start FROM table_1458412_1 WHERE starts = 30
|
What episode of the Pride of Britain Awards had an audience of 6.06 million viewers?
|
columns:
- name: episode
type: VARCHAR
- name: viewers__millions_
type: VARCHAR
table: table_13943239_1
|
SELECT episode FROM table_13943239_1 WHERE viewers__millions_ = "6.06"
|
What is the try bonus for Ruthin RFC?
|
columns:
- name: try_bonus
type: VARCHAR
- name: club
type: VARCHAR
table: table_14058433_3
|
SELECT try_bonus FROM table_14058433_3 WHERE club = "Ruthin RFC"
|
what's the pts with position being nc
|
columns:
- name: pts
type: VARCHAR
- name: position
type: VARCHAR
table: table_14139408_1
|
SELECT pts FROM table_14139408_1 WHERE position = "NC"
|
Who scored the most points?
|
columns:
- name: points
type: INTEGER
table: table_14342367_11
|
SELECT MAX(points) FROM table_14342367_11
|
When the % change is 8.4, what is the population rank?
|
columns:
- name: population_rank
type: INTEGER
- name: _percentage_change
type: VARCHAR
table: table_1425958_1
|
SELECT MIN(population_rank) FROM table_1425958_1 WHERE _percentage_change = "8.4"
|
what is the minimum code with area (km 2 ) being 12,245.9
|
columns:
- name: code
type: INTEGER
- name: area__km_2__
type: VARCHAR
table: table_1404456_1
|
SELECT MIN(code) FROM table_1404456_1 WHERE area__km_2__ = "12,245.9"
|
How many times was william m. colmer winstead first elected?
|
columns:
- name: first_elected
type: VARCHAR
- name: incumbent
type: VARCHAR
table: table_1342218_24
|
SELECT COUNT(first_elected) FROM table_1342218_24 WHERE incumbent = "William M. Colmer"
|
What is the name of the venue where the opponent scored 51?
|
columns:
- name: venue
type: VARCHAR
- name: opponents
type: VARCHAR
table: table_14877831_2
|
SELECT venue FROM table_14877831_2 WHERE opponents = 51
|
who is the the incumbent with district being ohio 2
|
columns:
- name: incumbent
type: VARCHAR
- name: district
type: VARCHAR
table: table_1342013_34
|
SELECT incumbent FROM table_1342013_34 WHERE district = "Ohio 2"
|
What are all the school years where class AAAA is in Gregory-Portland?
|
columns:
- name: school_year
type: VARCHAR
- name: class_aAAA
type: VARCHAR
- name: Gregory
type: VARCHAR
- name: Portland
type: VARCHAR
table: table_14603212_5
|
SELECT school_year FROM table_14603212_5 WHERE class_aAAA = Gregory - Portland
|
How many incumbents for the district of South Carolina 5?
|
columns:
- name: incumbent
type: VARCHAR
- name: district
type: VARCHAR
table: table_1431467_4
|
SELECT COUNT(incumbent) FROM table_1431467_4 WHERE district = "South Carolina 5"
|
Jack Lynch played for the oshawa generals (omjhl) before playing for what nhl team?
|
columns:
- name: nhl_team
type: VARCHAR
- name: college_junior_club_team
type: VARCHAR
table: table_1473672_2
|
SELECT nhl_team FROM table_1473672_2 WHERE college_junior_club_team = "Oshawa Generals (OMJHL)"
|
Name the incumbent for district texas 12
|
columns:
- name: incumbent
type: VARCHAR
- name: district
type: VARCHAR
table: table_1341690_43
|
SELECT incumbent FROM table_1341690_43 WHERE district = "Texas 12"
|
How many people finished 9th?
|
columns:
- name: exited
type: VARCHAR
- name: finished
type: VARCHAR
table: table_14345690_3
|
SELECT COUNT(exited) FROM table_14345690_3 WHERE finished = "9th"
|
for the robot black nickname, what framed size is used
|
columns:
- name: framed_size
type: VARCHAR
- name: nickname
type: VARCHAR
table: table_15070195_1
|
SELECT framed_size FROM table_15070195_1 WHERE nickname = "Robot Black"
|
What was the result of the game on October 6, 1974?
|
columns:
- name: result
type: VARCHAR
- name: date
type: VARCHAR
table: table_14954150_1
|
SELECT result FROM table_14954150_1 WHERE date = "October 6, 1974"
|
Name the maximum discs
|
columns:
- name: discs
type: INTEGER
table: table_14562722_2
|
SELECT MAX(discs) FROM table_14562722_2
|
What's the winning party in the Pennsylvania 6 district?
|
columns:
- name: party
type: VARCHAR
- name: district
type: VARCHAR
table: table_1341604_39
|
SELECT party FROM table_1341604_39 WHERE district = "Pennsylvania 6"
|
What is HSN's official virtual channel in Minneapolis-St. Paul?
|
columns:
- name: virtual_channel
type: VARCHAR
- name: network
type: VARCHAR
table: table_1404984_1
|
SELECT virtual_channel FROM table_1404984_1 WHERE network = "HSN"
|
When was incumbent Leo E. Allen first elected?
|
columns:
- name: first_elected
type: INTEGER
- name: incumbent
type: VARCHAR
table: table_1342315_12
|
SELECT MIN(first_elected) FROM table_1342315_12 WHERE incumbent = "Leo E. Allen"
|
Who was in the 4th district in 1924?
|
columns:
- name: year
type: VARCHAR
table: table_14123513_5
|
SELECT 4 AS th_district FROM table_14123513_5 WHERE year = 1924
|
How many nominees had a net voice of 15.17%
|
columns:
- name: nominee
type: VARCHAR
- name: net_vote
type: VARCHAR
table: table_15162479_8
|
SELECT COUNT(nominee) FROM table_15162479_8 WHERE net_vote = "15.17%"
|
Who was the incumbent in 1940?
|
columns:
- name: incumbent
type: VARCHAR
- name: first_elected
type: VARCHAR
table: table_1341690_9
|
SELECT incumbent FROM table_1341690_9 WHERE first_elected = 1940
|
What was the vote swing for the general election of the 12th lok sabha?
|
columns:
- name: votes_swing
type: VARCHAR
- name: general_election
type: VARCHAR
table: table_149330_1
|
SELECT votes_swing FROM table_149330_1 WHERE general_election = "12th Lok Sabha"
|
When the girls doubles is ayu pratiwi anggi widia what is the boys doubles?
|
columns:
- name: boys_doubles
type: VARCHAR
- name: girls_doubles
type: VARCHAR
table: table_14319023_2
|
SELECT boys_doubles FROM table_14319023_2 WHERE girls_doubles = "Ayu Pratiwi Anggi Widia"
|
WHAT IS THE NAME OF THE MIXED DOUBLES PLAYER WHEN THE WOMENS SINGLE PLAYER IS KAIRI VIILUP?
|
columns:
- name: mixed_doubles
type: VARCHAR
- name: womens_singles
type: VARCHAR
table: table_14903627_1
|
SELECT mixed_doubles FROM table_14903627_1 WHERE womens_singles = "Kairi Viilup"
|
how many points (total 500) with pos being 11
|
columns:
- name: points__total_500_
type: VARCHAR
- name: pos
type: VARCHAR
table: table_14460937_2
|
SELECT COUNT(points__total_500_) FROM table_14460937_2 WHERE pos = 11
|
who is the the player with pick # being 132
|
columns:
- name: player
type: VARCHAR
- name: pick__number
type: VARCHAR
table: table_1473672_9
|
SELECT player FROM table_1473672_9 WHERE pick__number = 132
|
What are all the run times with 8.2 million viewers?
|
columns:
- name: run_time
type: VARCHAR
- name: viewers__in_millions_
type: VARCHAR
table: table_1429629_1
|
SELECT run_time FROM table_1429629_1 WHERE viewers__in_millions_ = "8.2"
|
What station owns Moody Bible Institute
|
columns:
- name: format
type: VARCHAR
- name: owner
type: VARCHAR
table: table_134729_3
|
SELECT format FROM table_134729_3 WHERE owner = "Moody Bible Institute"
|
what's the others% with parbeingh being tangipahoa
|
columns:
- name: others_percentage
type: VARCHAR
- name: parish
type: VARCHAR
table: table_13608101_1
|
SELECT others_percentage FROM table_13608101_1 WHERE parish = "Tangipahoa"
|
how many points for with points against being 177
|
columns:
- name: points_for
type: VARCHAR
- name: points_against
type: VARCHAR
table: table_14058433_5
|
SELECT COUNT(points_for) FROM table_14058433_5 WHERE points_against = "177"
|
Name the incumbent for first elected 1956
|
columns:
- name: incumbent
type: VARCHAR
- name: first_elected
type: VARCHAR
table: table_1341930_40
|
SELECT incumbent FROM table_1341930_40 WHERE first_elected = 1956
|
what's the total passengers 2008 with change 2008/09 being 6.5%
|
columns:
- name: total_passengers_2008
type: VARCHAR
- name: change_2008_09
type: VARCHAR
table: table_13836704_4
|
SELECT total_passengers_2008 FROM table_13836704_4 WHERE change_2008_09 = "6.5%"
|
What date did the Colts play New York Jets?
|
columns:
- name: date
type: VARCHAR
- name: opponent
type: VARCHAR
table: table_14945608_1
|
SELECT date FROM table_14945608_1 WHERE opponent = "New York Jets"
|
Name the yankton yanktonai for wičháša
|
columns:
- name: yankton_yanktonai
type: VARCHAR
- name: southern_lakota
type: VARCHAR
table: table_1499791_2
|
SELECT yankton_yanktonai FROM table_1499791_2 WHERE southern_lakota = "wičháša"
|
What was the altitude of the explosion Hardtack Teak?
|
columns:
- name: altitude__km_
type: VARCHAR
- name: explosion
type: VARCHAR
table: table_148578_1
|
SELECT altitude__km_ FROM table_148578_1 WHERE explosion = "Hardtack Teak"
|
What is the target market for the station on 97.9 fm?
|
columns:
- name: target_city__market
type: VARCHAR
- name: frequency
type: VARCHAR
table: table_134987_3
|
SELECT target_city__market FROM table_134987_3 WHERE frequency = "97.9 FM"
|
Where was there a change of 6.5%?
|
columns:
- name: name
type: VARCHAR
- name: _percentage_change
type: VARCHAR
table: table_1425958_1
|
SELECT name FROM table_1425958_1 WHERE _percentage_change = "6.5"
|
what's the tries against with try bonus being 10
|
columns:
- name: tries_against
type: VARCHAR
- name: try_bonus
type: VARCHAR
table: table_13940275_5
|
SELECT tries_against FROM table_13940275_5 WHERE try_bonus = "10"
|
What channel has station kdfw ++?
|
columns:
- name: channel_tv___dt__
type: VARCHAR
- name: station
type: VARCHAR
table: table_1353096_1
|
SELECT channel_tv___dt__ FROM table_1353096_1 WHERE station = "KDFW ++"
|
what's the shuttle with primary payload(s) being united states microgravity laboratory-1
|
columns:
- name: shuttle
type: VARCHAR
- name: primary_payload_s_
type: VARCHAR
table: table_14118521_1
|
SELECT shuttle FROM table_14118521_1 WHERE primary_payload_s_ = "United States Microgravity Laboratory-1"
|
what's the bleeding time with condition being factor v deficiency
|
columns:
- name: bleeding_time
type: VARCHAR
- name: condition
type: VARCHAR
table: table_14006_1
|
SELECT bleeding_time FROM table_14006_1 WHERE condition = "Factor V deficiency"
|
Which team picked from South Carolina college?
|
columns:
- name: nfl_team
type: VARCHAR
- name: college
type: VARCHAR
table: table_14649522_1
|
SELECT nfl_team FROM table_14649522_1 WHERE college = "South Carolina"
|
How many points did the player who was right guard score?
|
columns:
- name: points
type: VARCHAR
- name: position
type: VARCHAR
table: table_14342592_7
|
SELECT COUNT(points) FROM table_14342592_7 WHERE position = "Right guard"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.