Unnamed: 0 int64 0 60k | input stringlengths 76 562 | answer stringlengths 18 557 |
|---|---|---|
29,600 | <question>: What was the result of the election when Clarence F. Lea was the incumbent? <context>: CREATE TABLE table_1346118_5 (result VARCHAR, incumbent VARCHAR) | SELECT result FROM table_1346118_5 WHERE incumbent = "Clarence F. Lea" |
29,601 | <question>: Which team played in game 20? <context>: CREATE TABLE table_13464416_5 (team VARCHAR, game VARCHAR) | SELECT team FROM table_13464416_5 WHERE game = 20 |
29,602 | <question>: what's the height (ft) with name being leadenhall building <context>: CREATE TABLE table_13463790_2 (height__ft_ VARCHAR, name VARCHAR) | SELECT height__ft_ FROM table_13463790_2 WHERE name = "Leadenhall Building" |
29,603 | <question>: what's the height (ft) with name being 52-54 lime street <context>: CREATE TABLE table_13463790_2 (height__ft_ VARCHAR, name VARCHAR) | SELECT height__ft_ FROM table_13463790_2 WHERE name = "52-54 Lime Street" |
29,604 | <question>: how many city with name being providence tower <context>: CREATE TABLE table_13463790_2 (city VARCHAR, name VARCHAR) | SELECT COUNT(city) FROM table_13463790_2 WHERE name = "Providence Tower" |
29,605 | <question>: What station has the call number K213cl <context>: CREATE TABLE table_134729_3 (format VARCHAR, call_sign VARCHAR) | SELECT format FROM table_134729_3 WHERE call_sign = "K213CL" |
29,606 | <question>: What market is Wessington Springs in <context>: CREATE TABLE table_134729_3 (target_city__market VARCHAR, city_of_license VARCHAR) | SELECT target_city__market FROM table_134729_3 WHERE city_of_license = "Wessington Springs" |
29,607 | <question>: What station owns Moody Bible Institute <context>: CREATE TABLE table_134729_3 (format VARCHAR, owner VARCHAR) | SELECT format FROM table_134729_3 WHERE owner = "Moody Bible Institute" |
29,608 | <question>: how many date with score being w 113–87 <context>: CREATE TABLE table_13480122_5 (date VARCHAR, score VARCHAR) | SELECT COUNT(date) FROM table_13480122_5 WHERE score = "W 113–87" |
29,609 | <question>: what's the game with record being 29–3 <context>: CREATE TABLE table_13480122_5 (game VARCHAR, record VARCHAR) | SELECT game FROM table_13480122_5 WHERE record = "29–3" |
29,610 | <question>: who is the the high rebounds with high assbeingts being scottie pippen (9) <context>: CREATE TABLE table_13480122_5 (high_rebounds VARCHAR, high_assists VARCHAR) | SELECT high_rebounds FROM table_13480122_5 WHERE high_assists = "Scottie Pippen (9)" |
29,611 | <question>: who is the the high points with score being w 117–93 <context>: CREATE TABLE table_13480122_5 (high_points VARCHAR, score VARCHAR) | SELECT high_points FROM table_13480122_5 WHERE score = "W 117–93" |
29,612 | <question>: what's the record with date being january 13 <context>: CREATE TABLE table_13480122_5 (record VARCHAR, date VARCHAR) | SELECT record FROM table_13480122_5 WHERE date = "January 13" |
29,613 | <question>: what are all the record where date is january 21 <context>: CREATE TABLE table_13480122_5 (record VARCHAR, date VARCHAR) | SELECT record FROM table_13480122_5 WHERE date = "January 21" |
29,614 | <question>: What is the name of Rapid City's Adult Contemporary station? <context>: CREATE TABLE table_134987_3 (name VARCHAR, city_of_license VARCHAR, format VARCHAR) | SELECT name FROM table_134987_3 WHERE city_of_license = "Rapid City" AND format = "Adult Contemporary" |
29,615 | <question>: What are the market city/market(s) for Rapid City Alternative format? <context>: CREATE TABLE table_134987_3 (target_city__market VARCHAR, city_of_license VARCHAR, format VARCHAR) | SELECT target_city__market FROM table_134987_3 WHERE city_of_license = "Rapid City" AND format = "Alternative" |
29,616 | <question>: What is the frequency for the Christian Kawz-fm Translator station? <context>: CREATE TABLE table_134987_3 (frequency VARCHAR, format VARCHAR) | SELECT frequency FROM table_134987_3 WHERE format = "Christian KAWZ-FM translator" |
29,617 | <question>: What is the target market for the station on 97.9 fm? <context>: CREATE TABLE table_134987_3 (target_city__market VARCHAR, frequency VARCHAR) | SELECT target_city__market FROM table_134987_3 WHERE frequency = "97.9 FM" |
29,618 | <question>: What is the frequency of the Classic Country Krki-fm booster station? <context>: CREATE TABLE table_134987_3 (frequency VARCHAR, format VARCHAR) | SELECT frequency FROM table_134987_3 WHERE format = "Classic Country KRKI-FM booster" |
29,619 | <question>: What is the target market of the station with call sign KFXS? <context>: CREATE TABLE table_134987_3 (target_city__market VARCHAR, call_sign VARCHAR) | SELECT target_city__market FROM table_134987_3 WHERE call_sign = "KFXS" |
29,620 | <question>: What year did the season finale have a total of 10.29 million viewers? <context>: CREATE TABLE table_1348989_2 (season VARCHAR, viewers__in_millions_ VARCHAR) | SELECT season AS Finale FROM table_1348989_2 WHERE viewers__in_millions_ = "10.29" |
29,621 | <question>: In what TV season did the 3rd season air? <context>: CREATE TABLE table_1348989_2 (TV VARCHAR, season VARCHAR) | SELECT TV AS season FROM table_1348989_2 WHERE season = "3rd" |
29,622 | <question>: How many rankings did the 5th season have? <context>: CREATE TABLE table_1348989_2 (ranking VARCHAR, season VARCHAR) | SELECT COUNT(ranking) FROM table_1348989_2 WHERE season = "5th" |
29,623 | <question>: How many times did the 2nd season have a finale? <context>: CREATE TABLE table_1348989_2 (season VARCHAR) | SELECT COUNT(season) AS Finale FROM table_1348989_2 WHERE season = "2nd" |
29,624 | <question>: how many county with per capita income being $20,101 <context>: CREATE TABLE table_1350350_2 (county VARCHAR, per_capita_income VARCHAR) | SELECT COUNT(county) FROM table_1350350_2 WHERE per_capita_income = "$20,101" |
29,625 | <question>: who is the the place with per capita income being $14,793 <context>: CREATE TABLE table_1350350_2 (place VARCHAR, per_capita_income VARCHAR) | SELECT place FROM table_1350350_2 WHERE per_capita_income = "$14,793" |
29,626 | <question>: what's the number of households with per capita income being $16,820 <context>: CREATE TABLE table_1350350_2 (number_of_households VARCHAR, per_capita_income VARCHAR) | SELECT number_of_households FROM table_1350350_2 WHERE per_capita_income = "$16,820" |
29,627 | <question>: what is the maximum rank with per capita income being $17,013 <context>: CREATE TABLE table_1350350_2 (rank INTEGER, per_capita_income VARCHAR) | SELECT MAX(rank) FROM table_1350350_2 WHERE per_capita_income = "$17,013" |
29,628 | <question>: How old is Darryll Holland's horse <context>: CREATE TABLE table_13498403_1 (barrier VARCHAR, jockey VARCHAR) | SELECT barrier FROM table_13498403_1 WHERE jockey = "Darryll Holland" |
29,629 | <question>: how many people work with N Rawiller <context>: CREATE TABLE table_13498403_1 (trainer VARCHAR, jockey VARCHAR) | SELECT COUNT(trainer) FROM table_13498403_1 WHERE jockey = "N Rawiller" |
29,630 | <question>: How old is Daniel Morton <context>: CREATE TABLE table_13498403_1 (barrier INTEGER, trainer VARCHAR) | SELECT MAX(barrier) FROM table_13498403_1 WHERE trainer = "Daniel Morton" |
29,631 | <question>: What are radio electricals when secretariat is wtr i? <context>: CREATE TABLE table_1348246_3 (Radio VARCHAR, secretariat VARCHAR) | SELECT Radio AS electrical FROM table_1348246_3 WHERE secretariat = "WTR I" |
29,632 | <question>: What are electricals where secretariat is po(w)? <context>: CREATE TABLE table_1348246_3 (electrical VARCHAR, secretariat VARCHAR) | SELECT electrical FROM table_1348246_3 WHERE secretariat = "PO(W)" |
29,633 | <question>: What mechanical has lpm regulation? <context>: CREATE TABLE table_1348246_3 (mechanical VARCHAR, regulating VARCHAR) | SELECT mechanical FROM table_1348246_3 WHERE regulating = "LPM" |
29,634 | <question>: What number episode in the series is the episode "things that fly"? <context>: CREATE TABLE table_13505192_3 (series_number INTEGER, episode_title VARCHAR) | SELECT MAX(series_number) FROM table_13505192_3 WHERE episode_title = "Things That Fly" |
29,635 | <question>: What is the production code for season episode 8? <context>: CREATE TABLE table_13505192_3 (production_code INTEGER, season_number VARCHAR) | SELECT MIN(production_code) FROM table_13505192_3 WHERE season_number = 8 |
29,636 | <question>: How many episodes have a series number of 35? <context>: CREATE TABLE table_13505192_3 (episode_title VARCHAR, series_number VARCHAR) | SELECT COUNT(episode_title) FROM table_13505192_3 WHERE series_number = 35 |
29,637 | <question>: What is the series number for season episode 24? <context>: CREATE TABLE table_13505192_3 (series_number INTEGER, season_number VARCHAR) | SELECT MIN(series_number) FROM table_13505192_3 WHERE season_number = 24 |
29,638 | <question>: how many have times of 6 <context>: CREATE TABLE table_13512105_3 (fastest_lap VARCHAR, rnd VARCHAR) | SELECT COUNT(fastest_lap) FROM table_13512105_3 WHERE rnd = 6 |
29,639 | <question>: which brand have drivers who won with the names of ryan briscoe and tomas scheckter <context>: CREATE TABLE table_13512105_3 (winning_team VARCHAR, winning_driver VARCHAR, fastest_lap VARCHAR) | SELECT winning_team FROM table_13512105_3 WHERE winning_driver = "Ryan Briscoe" AND fastest_lap = "Tomas Scheckter" |
29,640 | <question>: who else along with scott dixon and graham rahal drove with the most speed <context>: CREATE TABLE table_13512105_3 (fastest_lap VARCHAR, most_laps_led VARCHAR, pole_position VARCHAR) | SELECT fastest_lap FROM table_13512105_3 WHERE most_laps_led = "Scott Dixon" AND pole_position = "Graham Rahal" |
29,641 | <question>: tell the number of times where kansas was the location <context>: CREATE TABLE table_13512105_3 (rnd VARCHAR, race VARCHAR) | SELECT COUNT(rnd) FROM table_13512105_3 WHERE race = "Kansas" |
29,642 | <question>: What TV channel had a license from Boston? <context>: CREATE TABLE table_1353096_2 (channel_tv___dt__ VARCHAR, city_of_license_market VARCHAR) | SELECT channel_tv___dt__ FROM table_1353096_2 WHERE city_of_license_market = "Boston" |
29,643 | <question>: Which station has a license in Fort Collins, Colorado? <context>: CREATE TABLE table_1353096_2 (station VARCHAR, city_of_license_market VARCHAR) | SELECT station FROM table_1353096_2 WHERE city_of_license_market = "Fort Collins, Colorado" |
29,644 | <question>: What is the current status of the KDAF ** Station? <context>: CREATE TABLE table_1353096_2 (current_status VARCHAR, station VARCHAR) | SELECT current_status FROM table_1353096_2 WHERE station = "KDAF **" |
29,645 | <question>: How many entries are listed under "current status" for the WJW-TV ++ Station? <context>: CREATE TABLE table_1353096_2 (current_status VARCHAR, station VARCHAR) | SELECT COUNT(current_status) FROM table_1353096_2 WHERE station = "WJW-TV ++" |
29,646 | <question>: How many stations have fox as the primary affiliation and have been owned since 1986? <context>: CREATE TABLE table_1353096_1 (station VARCHAR, primary_affiliation VARCHAR, owned_since VARCHAR) | SELECT COUNT(station) FROM table_1353096_1 WHERE primary_affiliation = "Fox" AND owned_since = "1986" |
29,647 | <question>: What channel has station kdfw ++? <context>: CREATE TABLE table_1353096_1 (channel_tv___dt__ VARCHAR, station VARCHAR) | SELECT channel_tv___dt__ FROM table_1353096_1 WHERE station = "KDFW ++" |
29,648 | <question>: What city has channel tv (dt) 25 (31)? <context>: CREATE TABLE table_1353096_1 (city_of_license__market VARCHAR, channel_tv___dt__ VARCHAR) | SELECT city_of_license__market FROM table_1353096_1 WHERE channel_tv___dt__ = "25 (31)" |
29,649 | <question>: How many channel tv (dt)s are in austin, texas? <context>: CREATE TABLE table_1353096_1 (channel_tv___dt__ VARCHAR, city_of_license__market VARCHAR) | SELECT COUNT(channel_tv___dt__) FROM table_1353096_1 WHERE city_of_license__market = "Austin, Texas" |
29,650 | <question>: When was 10 (10) bought? <context>: CREATE TABLE table_1353096_1 (owned_since VARCHAR, channel_tv___dt__ VARCHAR) | SELECT owned_since FROM table_1353096_1 WHERE channel_tv___dt__ = "10 (10)" |
29,651 | <question>: Who were the umpires when Paul Medhurst (C) won the Simpson Medal? <context>: CREATE TABLE table_13514348_7 (umpires VARCHAR, simpson_medal VARCHAR) | SELECT umpires FROM table_13514348_7 WHERE simpson_medal = "Paul Medhurst (C)" |
29,652 | <question>: Who were the umpires when Paul Vines (S) won the Simpson Medal? <context>: CREATE TABLE table_13514348_7 (umpires VARCHAR, simpson_medal VARCHAR) | SELECT umpires FROM table_13514348_7 WHERE simpson_medal = "Paul Vines (S)" |
29,653 | <question>: Which venue did Luke Blackwell serve as captain? <context>: CREATE TABLE table_13514348_7 (venue VARCHAR, captain VARCHAR) | SELECT venue FROM table_13514348_7 WHERE captain = "Luke Blackwell" |
29,654 | <question>: what's the minimum 180s value <context>: CREATE TABLE table_13535824_2 (Id VARCHAR) | SELECT MIN(180 AS s) FROM table_13535824_2 |
29,655 | <question>: What channel number is Gladiators on <context>: CREATE TABLE table_13549921_18 (new_channel_s_ VARCHAR, programme VARCHAR) | SELECT new_channel_s_ FROM table_13549921_18 WHERE programme = "Gladiators" |
29,656 | <question>: What show is coming back on in July 2008 <context>: CREATE TABLE table_13549921_18 (programme VARCHAR, date_s__of_return VARCHAR) | SELECT programme FROM table_13549921_18 WHERE date_s__of_return = "July 2008" |
29,657 | <question>: Who are the mens doubles and womens singles is wang shixian? <context>: CREATE TABLE table_13553701_1 (mens_doubles VARCHAR, womens_singles VARCHAR) | SELECT mens_doubles FROM table_13553701_1 WHERE womens_singles = "Wang Shixian" |
29,658 | <question>: Who is the mens singles and womens singlses is wang shixian? <context>: CREATE TABLE table_13553701_1 (mens_singles VARCHAR, womens_singles VARCHAR) | SELECT mens_singles FROM table_13553701_1 WHERE womens_singles = "Wang Shixian" |
29,659 | <question>: Who are the mens doubles and and mens singles is lee hyun-il? <context>: CREATE TABLE table_13553701_1 (mens_doubles VARCHAR, mens_singles VARCHAR) | SELECT mens_doubles FROM table_13553701_1 WHERE mens_singles = "Lee Hyun-il" |
29,660 | <question>: Who are the mens singles and womens singles with sun yu? <context>: CREATE TABLE table_13553701_1 (mens_singles VARCHAR, womens_singles VARCHAR) | SELECT mens_singles FROM table_13553701_1 WHERE womens_singles = "Sun Yu" |
29,661 | <question>: what is the highest number where people got done at 31.1 <context>: CREATE TABLE table_1354805_6 (competition_finish INTEGER, average VARCHAR) | SELECT MAX(competition_finish) FROM table_1354805_6 WHERE average = "31.1" |
29,662 | <question>: who danced 11 and finished at more than a 2.0 <context>: CREATE TABLE table_1354805_6 (couple VARCHAR, number_of_dances VARCHAR, competition_finish VARCHAR) | SELECT couple FROM table_1354805_6 WHERE number_of_dances = 11 AND competition_finish > 2.0 |
29,663 | <question>: tell the competitions where the mean is 1 <context>: CREATE TABLE table_1354805_6 (average VARCHAR, number_of_dances VARCHAR) | SELECT average FROM table_1354805_6 WHERE number_of_dances = 1 |
29,664 | <question>: tell the mean of the times competition for the 7 jigs <context>: CREATE TABLE table_1354805_6 (rank_by_average VARCHAR, number_of_dances VARCHAR) | SELECT rank_by_average FROM table_1354805_6 WHERE number_of_dances = 7 |
29,665 | <question>: how many turns were completed to make a mean of 34.0 <context>: CREATE TABLE table_1354805_6 (number_of_dances VARCHAR, average VARCHAR) | SELECT COUNT(number_of_dances) FROM table_1354805_6 WHERE average = "34.0" |
29,666 | <question>: What is the gender of the junior high school is 24mm? <context>: CREATE TABLE table_13555999_1 (gender VARCHAR, junior_high_school__12_15_yrs_ VARCHAR) | SELECT gender FROM table_13555999_1 WHERE junior_high_school__12_15_yrs_ = "24mm" |
29,667 | <question>: What amount of the university students and adults ehre the the senior high school is 26mm? <context>: CREATE TABLE table_13555999_1 (university_students_and_adults__18yrs VARCHAR, _ VARCHAR, senior_high_school__15_18_yrs_ VARCHAR) | SELECT university_students_and_adults__18yrs + _ FROM table_13555999_1 WHERE senior_high_school__15_18_yrs_ = "26mm" |
29,668 | <question>: What amount of senior high school where junior high school is 114cm? <context>: CREATE TABLE table_13555999_1 (senior_high_school__15_18_yrs_ VARCHAR, junior_high_school__12_15_yrs_ VARCHAR) | SELECT senior_high_school__15_18_yrs_ FROM table_13555999_1 WHERE junior_high_school__12_15_yrs_ = "114cm" |
29,669 | <question>: What is the specification where senior high school is 25mm? <context>: CREATE TABLE table_13555999_1 (specification VARCHAR, senior_high_school__15_18_yrs_ VARCHAR) | SELECT specification FROM table_13555999_1 WHERE senior_high_school__15_18_yrs_ = "25mm" |
29,670 | <question>: What amount is the junior high school where the gender is male and the specification is minimum diameter of sakigawa? <context>: CREATE TABLE table_13555999_1 (junior_high_school__12_15_yrs_ VARCHAR, gender VARCHAR, specification VARCHAR) | SELECT junior_high_school__12_15_yrs_ FROM table_13555999_1 WHERE gender = "Male" AND specification = "Minimum diameter of sakigawa" |
29,671 | <question>: What is the gender of senior high school 26mm? <context>: CREATE TABLE table_13555999_1 (gender VARCHAR, senior_high_school__15_18_yrs_ VARCHAR) | SELECT gender FROM table_13555999_1 WHERE senior_high_school__15_18_yrs_ = "26mm" |
29,672 | <question>: What was the score of the game when the team was 1-2? <context>: CREATE TABLE table_13557843_3 (score VARCHAR, record VARCHAR) | SELECT score FROM table_13557843_3 WHERE record = "1-2" |
29,673 | <question>: Who had the high assists against charlotte? <context>: CREATE TABLE table_13557843_3 (high_assists VARCHAR, team VARCHAR) | SELECT high_assists FROM table_13557843_3 WHERE team = "Charlotte" |
29,674 | <question>: How many leading scorers were there in the game against Utah? <context>: CREATE TABLE table_13557843_5 (high_points VARCHAR, team VARCHAR) | SELECT COUNT(high_points) FROM table_13557843_5 WHERE team = "Utah" |
29,675 | <question>: how many location attendance with team being charlotte <context>: CREATE TABLE table_13557843_7 (location_attendance VARCHAR, team VARCHAR) | SELECT COUNT(location_attendance) FROM table_13557843_7 WHERE team = "Charlotte" |
29,676 | <question>: what's the game with date being march 7 <context>: CREATE TABLE table_13557843_7 (game VARCHAR, date VARCHAR) | SELECT game FROM table_13557843_7 WHERE date = "March 7" |
29,677 | <question>: what's the date with game being 72 <context>: CREATE TABLE table_13557843_7 (date VARCHAR, game VARCHAR) | SELECT date FROM table_13557843_7 WHERE game = 72 |
29,678 | <question>: how many high assbeingts with score being l 90–98 (ot) <context>: CREATE TABLE table_13557843_7 (high_assists VARCHAR, score VARCHAR) | SELECT COUNT(high_assists) FROM table_13557843_7 WHERE score = "L 90–98 (OT)" |
29,679 | <question>: who is the the high rebounds with team being vancouver <context>: CREATE TABLE table_13557843_7 (high_rebounds VARCHAR, team VARCHAR) | SELECT high_rebounds FROM table_13557843_7 WHERE team = "Vancouver" |
29,680 | <question>: How many pairs of numbers are under record on April 12? <context>: CREATE TABLE table_13557843_8 (record VARCHAR, date VARCHAR) | SELECT COUNT(record) FROM table_13557843_8 WHERE date = "April 12" |
29,681 | <question>: Name total number of won for tries for 92 <context>: CREATE TABLE table_13564702_3 (won VARCHAR, tries_for VARCHAR) | SELECT COUNT(won) FROM table_13564702_3 WHERE tries_for = "92" |
29,682 | <question>: Name the club when tries for is 83 <context>: CREATE TABLE table_13564702_3 (club VARCHAR, tries_for VARCHAR) | SELECT club FROM table_13564702_3 WHERE tries_for = "83" |
29,683 | <question>: Name the try bonus for kenfig hill rfc <context>: CREATE TABLE table_13564702_3 (try_bonus VARCHAR, club VARCHAR) | SELECT try_bonus FROM table_13564702_3 WHERE club = "Kenfig Hill RFC" |
29,684 | <question>: Name the tries against for played 22 and points against of 183 <context>: CREATE TABLE table_13564702_3 (tries_against VARCHAR, played VARCHAR, points_against VARCHAR) | SELECT tries_against FROM table_13564702_3 WHERE played = "22" AND points_against = "183" |
29,685 | <question>: Name the total number of points for when try bonus is 10 <context>: CREATE TABLE table_13564702_3 (points_for VARCHAR, try_bonus VARCHAR) | SELECT COUNT(points_for) FROM table_13564702_3 WHERE try_bonus = "10" |
29,686 | <question>: Name the number of won for maesteg harlequins rfc <context>: CREATE TABLE table_13564702_3 (won VARCHAR, club VARCHAR) | SELECT COUNT(won) FROM table_13564702_3 WHERE club = "Maesteg Harlequins RFC" |
29,687 | <question>: What amount had all played that lost were 8? <context>: CREATE TABLE table_13564637_3 (played VARCHAR, lost VARCHAR) | SELECT played FROM table_13564637_3 WHERE lost = "8" |
29,688 | <question>: what is the name of the club where drawn is 1 and lost is 10? <context>: CREATE TABLE table_13564637_3 (club VARCHAR, drawn VARCHAR, lost VARCHAR) | SELECT club FROM table_13564637_3 WHERE drawn = "1" AND lost = "10" |
29,689 | <question>: what are the tries where the game was lost by 4? <context>: CREATE TABLE table_13564637_3 (tries_against VARCHAR, lost VARCHAR) | SELECT tries_against FROM table_13564637_3 WHERE lost = "4" |
29,690 | <question>: what amount of try bonus where the game was won by 11? <context>: CREATE TABLE table_13564637_3 (try_bonus VARCHAR, won VARCHAR) | SELECT COUNT(try_bonus) FROM table_13564637_3 WHERE won = "11" |
29,691 | <question>: what is the total amount of tries where the points were 325? <context>: CREATE TABLE table_13564637_3 (tries_against VARCHAR, points_for VARCHAR) | SELECT COUNT(tries_against) FROM table_13564637_3 WHERE points_for = "325" |
29,692 | <question>: What is the name of the column points against? <context>: CREATE TABLE table_13564637_4 (Id VARCHAR) | SELECT "points" AS _against FROM table_13564637_4 WHERE "points" = "points" |
29,693 | <question>: How many points for when the points was 53? <context>: CREATE TABLE table_13564637_4 (points_for VARCHAR, points VARCHAR) | SELECT points_for FROM table_13564637_4 WHERE points = "53" |
29,694 | <question>: What is the played total when the points against was 321? <context>: CREATE TABLE table_13564637_4 (played VARCHAR, points_against VARCHAR) | SELECT played FROM table_13564637_4 WHERE points_against = "321" |
29,695 | <question>: How many tries for when the points against was 547? <context>: CREATE TABLE table_13564637_4 (tries_for VARCHAR, points_against VARCHAR) | SELECT tries_for FROM table_13564637_4 WHERE points_against = "547" |
29,696 | <question>: How many total games drawn for club tylorstown rfc? <context>: CREATE TABLE table_13564637_4 (drawn VARCHAR, club VARCHAR) | SELECT drawn FROM table_13564637_4 WHERE club = "Tylorstown RFC" |
29,697 | <question>: How many communities had a total renewable generation of 1375? <context>: CREATE TABLE table_13566548_1 (autonomous_community VARCHAR, total_renewable_generation VARCHAR) | SELECT COUNT(autonomous_community) FROM table_13566548_1 WHERE total_renewable_generation = 1375 |
29,698 | <question>: What is the community with a wind power of 1042? <context>: CREATE TABLE table_13566548_1 (autonomous_community VARCHAR, wind_power VARCHAR) | SELECT autonomous_community FROM table_13566548_1 WHERE wind_power = 1042 |
29,699 | <question>: How many races were for a distance of 2020 m? <context>: CREATE TABLE table_1358608_4 (group VARCHAR, distance VARCHAR) | SELECT COUNT(group) FROM table_1358608_4 WHERE distance = "2020 m" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.