question stringlengths 12 243 | context stringlengths 45 517 | answer stringlengths 32 484 |
|---|---|---|
What week did September 29 fall in? | columns:
- name: week
type: VARCHAR
- name: date
type: VARCHAR
table: table_23601267_2
| SELECT COUNT(week) FROM table_23601267_2 WHERE date = "September 29" |
4512 is the enrollment what is the team nickname? | columns:
- name: team_nickname
type: VARCHAR
- name: enrollment
type: VARCHAR
table: table_28211213_2
| SELECT team_nickname FROM table_28211213_2 WHERE enrollment = 4512 |
Which section is in the 6th position? | columns:
- name: section
type: VARCHAR
- name: position
type: VARCHAR
table: table_name_8
| SELECT section FROM table_name_8 WHERE position = "6th" |
For player is jamal mayers mention the minimum pick | columns:
- name: pick
type: INTEGER
- name: player
type: VARCHAR
table: table_2781227_4
| SELECT MIN(pick) FROM table_2781227_4 WHERE player = "Jamal Mayers" |
WHAT IS NO TIE FROM brighton & hove albion? | columns:
- name: tie_no
type: VARCHAR
- name: home_team
type: VARCHAR
table: table_name_52
| SELECT tie_no FROM table_name_52 WHERE home_team = "brighton & hove albion" |
Name the fa cup apps for arthur morton | columns:
- name: fa_cup_apps
type: VARCHAR
- name: name
type: VARCHAR
table: table_19730892_1
| SELECT fa_cup_apps FROM table_19730892_1 WHERE name = "Arthur Morton" |
Who played on waca ground and scored 79 points? | columns:
- name: opponent
type: VARCHAR
- name: ground
type: VARCHAR
- name: score
type: VARCHAR
table: table_name_43
| SELECT opponent FROM table_name_43 WHERE ground = "waca ground" AND score = "79" |
How many districts had crib damage of 1,164.50? | columns:
- name: district
type: VARCHAR
- name: crop_damaged__in_lakh_inr__
type: VARCHAR
table: table_20403667_2
| SELECT COUNT(district) FROM table_20403667_2 WHERE crop_damaged__in_lakh_inr__ = "1,164.50" |
Which Place is the highest one that has a Draw larger than 1, and 49 Points? | columns:
- name: place
type: INTEGER
- name: draw
type: VARCHAR
- name: points
type: VARCHAR
table: table_name_3
| SELECT MAX(place) FROM table_name_3 WHERE draw > 1 AND points = 49 |
Name the Years which have Transmission of digital satellite, an On demand of no, and a Free or pay of free + ppv? | columns:
- name: years
type: VARCHAR
- name: free_or_pay
type: VARCHAR
- name: transmission
type: VARCHAR
- name: on_demand
type: VARCHAR
table: table_name_16
| SELECT years FROM table_name_16 WHERE transmission = "digital satellite" AND on_demand = "no" AND free_or_pay = "free + ppv" |
What is the Drop Zone time for the 439th tcg Troop Carrier Group with more tham 36 C-47s? | columns:
- name: drop_zone
type: VARCHAR
- name: troop_carrier_group
type: VARCHAR
- name: _number_of_c_47s
type: VARCHAR
table: table_name_27
| SELECT drop_zone AS Time FROM table_name_27 WHERE troop_carrier_group = "439th tcg" AND _number_of_c_47s > 36 |
What is the home team of the game with a 2-0 record? | columns:
- name: home
type: VARCHAR
- name: record
type: VARCHAR
table: table_name_89
| SELECT home FROM table_name_89 WHERE record = "2-0" |
Which class has a power output larger than 700 and a class of 48? | columns:
- name: class
type: VARCHAR
- name: power_output__kw_
type: VARCHAR
- name: number_in_class
type: VARCHAR
table: table_name_75
| SELECT class FROM table_name_75 WHERE power_output__kw_ > 700 AND number_in_class = 48 |
Which lowest position has goals against smaller than 78, Points of 42-2, and Wins larger than 15? | columns:
- name: position
type: INTEGER
- name: wins
type: VARCHAR
- name: goals_against
type: VARCHAR
- name: points
type: VARCHAR
table: table_name_63
| SELECT MIN(position) FROM table_name_63 WHERE goals_against < 78 AND points = "42-2" AND wins > 15 |
Which Week has a Date of december 8, 1991? | columns:
- name: week
type: INTEGER
- name: date
type: VARCHAR
table: table_name_67
| SELECT AVG(week) FROM table_name_67 WHERE date = "december 8, 1991" |
What was the attendence of the game on 26 April 1948 and an away team of Hawthorn? | columns:
- name: crowd
type: VARCHAR
- name: date
type: VARCHAR
- name: away_team
type: VARCHAR
table: table_name_12
| SELECT crowd FROM table_name_12 WHERE date = "26 april 1948" AND away_team = "hawthorn" |
Name the Opponent in the final on july 4, 2005? | columns:
- name: opponent_in_the_final
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_52
| SELECT opponent_in_the_final FROM table_name_52 WHERE date = "july 4, 2005" |
Which Time/Retired entry has greater than 51 laps and driver Cristiano da Matta? | columns:
- name: time_retired
type: VARCHAR
- name: laps
type: VARCHAR
- name: driver
type: VARCHAR
table: table_name_79
| SELECT time_retired FROM table_name_79 WHERE laps > 51 AND driver = "cristiano da matta" |
What year had the qual of totals | columns:
- name: year
type: VARCHAR
- name: qual
type: VARCHAR
table: table_name_88
| SELECT year FROM table_name_88 WHERE qual = "totals" |
What's the version of the 1.0.12 release? | columns:
- name: version
type: VARCHAR
- name: release
type: VARCHAR
table: table_28540539_2
| SELECT version FROM table_28540539_2 WHERE release = "1.0.12" |
What country has a fire store of 1991 and a hard discounter of 397? | columns:
- name: country
type: VARCHAR
- name: first_store
type: VARCHAR
- name: hard_discounters
type: VARCHAR
table: table_name_2
| SELECT country FROM table_name_2 WHERE first_store = "1991" AND hard_discounters = "397" |
What is the average Tries with less than 0 goals? | columns:
- name: tries
type: INTEGER
- name: goals
type: INTEGER
table: table_name_7
| SELECT AVG(tries) FROM table_name_7 WHERE goals < 0 |
What is week 5 when week 6 is evicted, and week 2 is 34.55? | columns:
- name: week_5
type: VARCHAR
- name: week_6
type: VARCHAR
- name: week_2
type: VARCHAR
table: table_name_3
| SELECT week_5 FROM table_name_3 WHERE week_6 = "evicted" AND week_2 = "34.55" |
What are the dates of leaving office for politician from the province of Seville? | columns:
- name: left_office
type: VARCHAR
- name: province
type: VARCHAR
table: table_26362472_1
| SELECT left_office FROM table_26362472_1 WHERE province = "Seville" |
What is the end of the term for Kadima that started on 18 January 2006? | columns:
- name: term_end
type: VARCHAR
- name: party
type: VARCHAR
- name: term_start
type: VARCHAR
table: table_name_6
| SELECT term_end FROM table_name_6 WHERE party = "kadima" AND term_start = "18 january 2006" |
Where were less than 72 goals made and more than 40 assists made? | columns:
- name: venue
type: VARCHAR
- name: goals
type: VARCHAR
- name: assists
type: VARCHAR
table: table_name_74
| SELECT venue FROM table_name_74 WHERE goals < 72 AND assists > 40 |
How many rounds had a position of kicker? | columns:
- name: round
type: INTEGER
- name: position
type: VARCHAR
table: table_name_13
| SELECT SUM(round) FROM table_name_13 WHERE position = "kicker" |
What country did Gil play against on 21–23 september 2007? | columns:
- name: against
type: VARCHAR
- name: date
type: VARCHAR
table: table_18042031_16
| SELECT against FROM table_18042031_16 WHERE date = "21–23 September 2007" |
For the city whose land area was 135.09, what was the total population density? | columns:
- name: population_density__people_per_mi_2__
type: VARCHAR
- name: land_area__mi_2__
type: VARCHAR
table: table_22916979_1
| SELECT population_density__people_per_mi_2__ FROM table_22916979_1 WHERE land_area__mi_2__ = "135.09" |
What year(s) did Mike Weir win player of the year? | columns:
- name: year_s__won
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_45
| SELECT year_s__won FROM table_name_45 WHERE player = "mike weir" |
How many losses does Central Blues have? | columns:
- name: losses
type: INTEGER
- name: club
type: VARCHAR
table: table_26200568_16
| SELECT MAX(losses) FROM table_26200568_16 WHERE club = "Central Blues" |
Which points against has 17 as the lost? | columns:
- name: points_against
type: VARCHAR
- name: lost
type: VARCHAR
table: table_name_61
| SELECT points_against FROM table_name_61 WHERE lost = "17" |
What were the lowest points of game 60? | columns:
- name: points
type: INTEGER
- name: game
type: VARCHAR
table: table_name_99
| SELECT MIN(points) FROM table_name_99 WHERE game = 60 |
How many Gold medals did Australia receive? | columns:
- name: gold
type: INTEGER
- name: nation
type: VARCHAR
table: table_name_59
| SELECT AVG(gold) FROM table_name_59 WHERE nation = "australia" |
What is the lowest number of members on the Cultural and Educational Panel, when the University of Dublin had 3 members, when the Industrial and Commercial Panel had more than 0 members, and when the Agricultural Panel had more than 4 members? | columns:
- name: cultural_and_educational_panel
type: INTEGER
- name: agricultural_panel
type: VARCHAR
- name: university_of_dublin
type: VARCHAR
- name: industrial_and_commercial_panel
type: VARCHAR
table: table_name_28
| SELECT MIN(cultural_and_educational_panel) FROM table_name_28 WHERE university_of_dublin < 3 AND industrial_and_commercial_panel > 0 AND agricultural_panel > 4 |
List all institutions with a team name of the Cardinals. | columns:
- name: institution
type: VARCHAR
- name: team_nickname
type: VARCHAR
table: table_18483171_1
| SELECT institution FROM table_18483171_1 WHERE team_nickname = "Cardinals" |
Which college is the player from South Medford High School headed to? | columns:
- name: college
type: VARCHAR
- name: school
type: VARCHAR
table: table_name_67
| SELECT college FROM table_name_67 WHERE school = "south medford high school" |
What region has a lp format on 4 August 2008? | columns:
- name: region
type: VARCHAR
- name: format_s_
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_72
| SELECT region FROM table_name_72 WHERE format_s_ = "lp" AND date = "4 august 2008" |
Name the total number of races for 15th position | columns:
- name: races
type: VARCHAR
- name: position
type: VARCHAR
table: table_24466191_1
| SELECT COUNT(races) FROM table_24466191_1 WHERE position = "15th" |
How many deaths did eseta cause? | columns:
- name: deaths
type: VARCHAR
- name: name
type: VARCHAR
table: table_name_34
| SELECT deaths FROM table_name_34 WHERE name = "eseta" |
What team is sponsored by w.h. bolin? | columns:
- name: team
type: VARCHAR
- name: sponsor
type: VARCHAR
table: table_name_14
| SELECT team FROM table_name_14 WHERE sponsor = "w.h. bolin" |
Which Pop/Area (1/km²) has a No P. larger than 1, and a Name of albergaria-a-velha? | columns:
- name: "pop_area__1_km\xB2_"
type: INTEGER
- name: no_p
type: VARCHAR
- name: name
type: VARCHAR
table: table_name_84
| SELECT AVG(pop_area__1_km²_) FROM table_name_84 WHERE no_p > 1 AND name = "albergaria-a-velha" |
What was the date of the game where Geelong was the home team? | columns:
- name: date
type: VARCHAR
- name: home_team
type: VARCHAR
table: table_name_18
| SELECT date FROM table_name_18 WHERE home_team = "geelong" |
In what Round was Derrick Franklin picked? | columns:
- name: round
type: VARCHAR
- name: player
type: VARCHAR
table: table_name_23
| SELECT round FROM table_name_23 WHERE player = "derrick franklin" |
Which award was won when the nomination was Senses Around? | columns:
- name: award
type: VARCHAR
- name: result
type: VARCHAR
- name: nomination
type: VARCHAR
table: table_name_77
| SELECT award FROM table_name_77 WHERE result = "won" AND nomination = "senses around" |
What is the latest date with Cores per die / Dies per module of 2 / 1, and a Clock of 1.4-1.6ghz? | columns:
- name: date
type: INTEGER
- name: cores_per_die___dies_per_module
type: VARCHAR
- name: clock
type: VARCHAR
table: table_name_64
| SELECT MAX(date) FROM table_name_64 WHERE cores_per_die___dies_per_module = "2 / 1" AND clock = "1.4-1.6ghz" |
Which Location has a Record of 5–2–1? | columns:
- name: location
type: VARCHAR
- name: record
type: VARCHAR
table: table_name_31
| SELECT location FROM table_name_31 WHERE record = "5–2–1" |
Which Year has a Genre of rock (track)? | columns:
- name: year
type: INTEGER
- name: genre
type: VARCHAR
table: table_name_3
| SELECT SUM(year) FROM table_name_3 WHERE genre = "rock (track)" |
Name the player for 199 height | columns:
- name: player
type: VARCHAR
- name: height
type: VARCHAR
table: table_25058562_2
| SELECT player FROM table_25058562_2 WHERE height = 199 |
Who is the away side at windy hill? | columns:
- name: away_team
type: VARCHAR
- name: venue
type: VARCHAR
table: table_name_35
| SELECT away_team FROM table_name_35 WHERE venue = "windy hill" |
Name the Height metres / ft of Floors of 05.0 n/a? | columns:
- name: height_metres___ft
type: VARCHAR
- name: floors
type: VARCHAR
table: table_name_89
| SELECT height_metres___ft FROM table_name_89 WHERE floors = "05.0 n/a" |
What is the highest value for Other that has CONCACAF value of 0 a U.S. Open Cup larger than 0? | columns:
- name: other
type: INTEGER
- name: us_open_cup
type: VARCHAR
- name: concacaf
type: VARCHAR
table: table_name_28
| SELECT MAX(other) FROM table_name_28 WHERE us_open_cup > 0 AND concacaf = 0 |
What is the Swedish name for South Karelia? | columns:
- name: in_swedish
type: VARCHAR
- name: in_english
type: VARCHAR
table: table_name_77
| SELECT in_swedish FROM table_name_77 WHERE in_english = "south karelia" |
Name the drivetrain for 1ur-fse for usf41 | columns:
- name: drivetrain
type: VARCHAR
- name: engine_code
type: VARCHAR
- name: chassis_code
type: VARCHAR
table: table_21530474_1
| SELECT drivetrain FROM table_21530474_1 WHERE engine_code = "1UR-FSE" AND chassis_code = "USF41" |
Which Points Classification Navy Blue Jersey that has a Jersey of Graeme Brown | columns:
- name: points_classification_navy_blue_jersey
type: VARCHAR
- name: general_classification_yellow_jersey
type: VARCHAR
table: table_name_8
| SELECT points_classification_navy_blue_jersey FROM table_name_8 WHERE general_classification_yellow_jersey = "graeme brown" |
How many points did the ATS Wheels entrant with an ATS D2 chassis have? | columns:
- name: points
type: VARCHAR
- name: entrant
type: VARCHAR
- name: chassis
type: VARCHAR
table: table_name_14
| SELECT points FROM table_name_14 WHERE entrant = "ats wheels" AND chassis = "ats d2" |
What year was the team Club of atlético de san juan fc who plays at hiram bithorn stadium founded. | columns:
- name: founded
type: INTEGER
- name: stadium
type: VARCHAR
- name: club
type: VARCHAR
table: table_name_18
| SELECT SUM(founded) FROM table_name_18 WHERE stadium = "hiram bithorn stadium" AND club = "atlético de san juan fc" |
How many years have a Title of kriegspiel? | columns:
- name: year
type: VARCHAR
- name: title
type: VARCHAR
table: table_name_16
| SELECT COUNT(year) FROM table_name_16 WHERE title = "kriegspiel" |
Which operators offer a genre of music? | columns:
- name: operator
type: VARCHAR
- name: genre
type: VARCHAR
table: table_1837570_1
| SELECT operator FROM table_1837570_1 WHERE genre = "music" |
What is the result F-A with an H/A of h and more than 31,727 attending? | columns:
- name: result_f___a
type: VARCHAR
- name: h___a
type: VARCHAR
- name: attendance
type: VARCHAR
table: table_name_11
| SELECT result_f___a FROM table_name_11 WHERE h___a = "h" AND attendance > 31 OFFSET 727 |
Which championship had a final score of 6–4, 2–6, 6–4, 7–6(3)? | columns:
- name: championship
type: VARCHAR
- name: score_in_the_final
type: VARCHAR
table: table_2362486_1
| SELECT championship FROM table_2362486_1 WHERE score_in_the_final = "6–4, 2–6, 6–4, 7–6(3)" |
Which Start has 8 Tries and 0 Convs? | columns:
- name: start
type: VARCHAR
- name: tries
type: VARCHAR
- name: conv
type: VARCHAR
table: table_name_58
| SELECT start FROM table_name_58 WHERE tries = "8" AND conv = "0" |
What year was E. Meyer the driver? | columns:
- name: year
type: VARCHAR
- name: driver
type: VARCHAR
table: table_name_9
| SELECT year FROM table_name_9 WHERE driver = "e. meyer" |
Who is the pitcher from the 1983 season in location Kingdome? | columns:
- name: pitcher
type: VARCHAR
- name: location
type: VARCHAR
- name: season
type: VARCHAR
table: table_name_40
| SELECT pitcher FROM table_name_40 WHERE location = "kingdome" AND season = "1983" |
What is Bob Ostovich's opponents record? | columns:
- name: record
type: VARCHAR
- name: opponent
type: VARCHAR
table: table_name_20
| SELECT record FROM table_name_20 WHERE opponent = "bob ostovich" |
When did Geelong play as the away team? | columns:
- name: date
type: VARCHAR
- name: away_team
type: VARCHAR
table: table_name_31
| SELECT date FROM table_name_31 WHERE away_team = "geelong" |
What was the value of 1st prize when the score was 271 (-9)? | columns:
- name: score
type: VARCHAR
table: table_15346009_1
| SELECT 1 AS st_prize__$__ FROM table_15346009_1 WHERE score = "271 (-9)" |
What is the tournament in 2012 results that has a 2003 results of 2r and played at Wimbledon? | columns:
- name: tournament
type: VARCHAR
table: table_name_6
| SELECT 2012 FROM table_name_6 WHERE 2003 = "2r" AND tournament = "wimbledon" |
What is the highest win for losses less than 2? | columns:
- name: wins
type: INTEGER
- name: losses
type: INTEGER
table: table_name_65
| SELECT MAX(wins) FROM table_name_65 WHERE losses < 2 |
Who is the Original west end performer for the character Martha? | columns:
- name: original_west_end_performer
type: VARCHAR
- name: character
type: VARCHAR
table: table_1901751_1
| SELECT original_west_end_performer FROM table_1901751_1 WHERE character = "Martha" |
Name the mens singles when mens doubles is george georgoudis gerostergiou | columns:
- name: mens_singles
type: VARCHAR
- name: mens_doubles
type: VARCHAR
table: table_14903881_1
| SELECT mens_singles FROM table_14903881_1 WHERE mens_doubles = "George Georgoudis Gerostergiou" |
What Venue on October 27, 2005 had a Score of 5-0? | columns:
- name: venue
type: VARCHAR
- name: score
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_65
| SELECT venue FROM table_name_65 WHERE score = "5-0" AND date = "october 27, 2005" |
In 2009, what Appearances had a Winning Percentage of less than 0? | columns:
- name: appearances
type: INTEGER
- name: season_s_
type: VARCHAR
- name: winning_percentage
type: VARCHAR
table: table_name_30
| SELECT AVG(appearances) FROM table_name_30 WHERE season_s_ = "2009" AND winning_percentage < 0 |
What is the name of the stadium when the visiting team is the Denver Broncos? | columns:
- name: stadium
type: VARCHAR
- name: visiting_team
type: VARCHAR
table: table_name_6
| SELECT stadium FROM table_name_6 WHERE visiting_team = "denver broncos" |
What kind of Mission has a Apogee of 707 km? | columns:
- name: mission
type: VARCHAR
- name: apogee
type: VARCHAR
table: table_name_47
| SELECT mission FROM table_name_47 WHERE apogee = "707 km" |
When David McNamara was the opponent in the final, what was the tier? | columns:
- name: tier
type: VARCHAR
- name: opponent_in_the_final
type: VARCHAR
table: table_name_59
| SELECT tier FROM table_name_59 WHERE opponent_in_the_final = "david mcnamara" |
What country did the player with the score line 73-74-72-64=283 from? | columns:
- name: country
type: VARCHAR
- name: score
type: VARCHAR
table: table_name_65
| SELECT country FROM table_name_65 WHERE score = 73 - 74 - 72 - 64 = 283 |
What was the away team score for the game played at MCG? | columns:
- name: away_team
type: VARCHAR
- name: venue
type: VARCHAR
table: table_name_89
| SELECT away_team AS score FROM table_name_89 WHERE venue = "mcg" |
What is Game, when Road Team is "Syracuse", and when Result is "109-82"? | columns:
- name: game
type: VARCHAR
- name: road_team
type: VARCHAR
- name: result
type: VARCHAR
table: table_name_77
| SELECT game FROM table_name_77 WHERE road_team = "syracuse" AND result = "109-82" |
What was the team classification where andré greipel was the winner and had the points classification? | columns:
- name: team_classification
type: VARCHAR
- name: winner
type: VARCHAR
- name: points_classification
type: VARCHAR
table: table_25655781_17
| SELECT team_classification FROM table_25655781_17 WHERE winner = "André Greipel" AND points_classification = "André Greipel" |
Which Nationality has a Name of assyrian? | columns:
- name: nationality
type: VARCHAR
- name: name
type: VARCHAR
table: table_name_86
| SELECT nationality FROM table_name_86 WHERE name = "assyrian" |
Name the total number of roll for st joseph's school when decile is less than 5 | columns:
- name: roll
type: VARCHAR
- name: name
type: VARCHAR
- name: decile
type: VARCHAR
table: table_name_19
| SELECT COUNT(roll) FROM table_name_19 WHERE name = "st joseph's school" AND decile < 5 |
What is the Bulgarian Commander in Autumn 1040 at the Battle of Thessalonica? | columns:
- name: bulgarian_commander
type: VARCHAR
- name: battle
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_41
| SELECT bulgarian_commander FROM table_name_41 WHERE battle = "battle of thessalonica" AND date = "autumn 1040" |
What was event 2 when event 1 was Atlasphere? | columns:
- name: event_2
type: VARCHAR
- name: event_1
type: VARCHAR
table: table_17257687_1
| SELECT event_2 FROM table_17257687_1 WHERE event_1 = "Atlasphere" |
How many directors have vietnamese titles of Gate, Gate, Paragate? | columns:
- name: director
type: VARCHAR
- name: vietnamese_title
type: VARCHAR
table: table_22128871_1
| SELECT COUNT(director) FROM table_22128871_1 WHERE vietnamese_title = "Gate, gate, paragate" |
How many goals for where there when draws are less than 11, points of is 54+16 and goals against are less than 39? | columns:
- name: goals_for
type: VARCHAR
- name: goals_against
type: VARCHAR
- name: draws
type: VARCHAR
- name: points
type: VARCHAR
table: table_name_66
| SELECT COUNT(goals_for) FROM table_name_66 WHERE draws < 11 AND points = "54+16" AND goals_against < 39 |
How many games drawn for the team that had 72 goals for? | columns:
- name: drawn
type: INTEGER
- name: goals_for
type: VARCHAR
table: table_17357929_1
| SELECT MAX(drawn) FROM table_17357929_1 WHERE goals_for = 72 |
How much did the home team Hawthorn score? | columns:
- name: home_team
type: VARCHAR
table: table_name_5
| SELECT home_team AS score FROM table_name_5 WHERE home_team = "hawthorn" |
Name the erin and jake for week 4 | columns:
- name: erin_and_jake
type: VARCHAR
- name: week
type: VARCHAR
table: table_2311410_5
| SELECT erin_and_jake FROM table_2311410_5 WHERE week = 4 |
What was the venue on 17/02/2008? | columns:
- name: venue
type: VARCHAR
- name: date
type: VARCHAR
table: table_name_1
| SELECT venue FROM table_name_1 WHERE date = "17/02/2008" |
What is the incident number of the incident that occurred in Dantewada, Chattisgarh? | columns:
- name: incident_no
type: VARCHAR
- name: place
type: VARCHAR
table: table_name_8
| SELECT incident_no FROM table_name_8 WHERE place = "dantewada, chattisgarh" |
What is the nationality of the player who went to college at Mississippi? | columns:
- name: nationality
type: VARCHAR
- name: college_country_team
type: VARCHAR
table: table_name_74
| SELECT nationality FROM table_name_74 WHERE college_country_team = "mississippi" |
What is the score of the Geelong away team? | columns:
- name: away_team
type: VARCHAR
table: table_name_18
| SELECT away_team AS score FROM table_name_18 WHERE away_team = "geelong" |
Which party is Lawrence H. Fountain part of? | columns:
- name: party
type: VARCHAR
- name: incumbent
type: VARCHAR
table: table_1341738_34
| SELECT party FROM table_1341738_34 WHERE incumbent = "Lawrence H. Fountain" |
What's the hometown of the player with a college of lsu? | columns:
- name: hometown
type: VARCHAR
- name: college
type: VARCHAR
table: table_name_51
| SELECT hometown FROM table_name_51 WHERE college = "lsu" |
What is the most recent year of disaffiliation of a CHCH-TV station that affiliated after 2001? | columns:
- name: year_of_disaffiliation
type: INTEGER
- name: station
type: VARCHAR
- name: year_of_affiliation
type: VARCHAR
table: table_name_31
| SELECT MAX(year_of_disaffiliation) FROM table_name_31 WHERE station = "chch-tv" AND year_of_affiliation > 2001 |
Which Score has an Opponent of washington capitals, and a Record of 24-34-17? | columns:
- name: score
type: VARCHAR
- name: opponent
type: VARCHAR
- name: record
type: VARCHAR
table: table_name_7
| SELECT score FROM table_name_7 WHERE opponent = "washington capitals" AND record = "24-34-17" |
Name the total number of hdtv for eurotic tv | columns:
- name: hdtv
type: VARCHAR
- name: television_service
type: VARCHAR
table: table_15887683_17
| SELECT COUNT(hdtv) FROM table_15887683_17 WHERE television_service = "Eurotic TV" |
Was the University of Michigan Signed? | columns:
- name: signed
type: VARCHAR
- name: school
type: VARCHAR
table: table_name_13
| SELECT signed FROM table_name_13 WHERE school = "university of michigan" |
what is the united fc wehre pifa colaba is maratha united? | columns:
- name: united_fc
type: VARCHAR
- name: pifa_colaba_fc_u_17
type: VARCHAR
table: table_28759261_5
| SELECT united_fc FROM table_28759261_5 WHERE pifa_colaba_fc_u_17 = "Maratha United" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.