question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
What was the result of the election when Clarence F. Lea was the incumbent? | CREATE TABLE table_1346118_5 (result VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT result FROM table_1346118_5 WHERE incumbent = \"Clarence F. Lea\""
} |
Which team played in game 20? | CREATE TABLE table_13464416_5 (team VARCHAR, game VARCHAR) | {
"SQL_Query": "SELECT team FROM table_13464416_5 WHERE game = 20"
} |
what's the height (ft) with name being leadenhall building | CREATE TABLE table_13463790_2 (height__ft_ VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT height__ft_ FROM table_13463790_2 WHERE name = \"Leadenhall Building\""
} |
what's the height (ft) with name being 52-54 lime street | CREATE TABLE table_13463790_2 (height__ft_ VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT height__ft_ FROM table_13463790_2 WHERE name = \"52-54 Lime Street\""
} |
how many city with name being providence tower | CREATE TABLE table_13463790_2 (city VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT COUNT(city) FROM table_13463790_2 WHERE name = \"Providence Tower\""
} |
What station has the call number K213cl | CREATE TABLE table_134729_3 (format VARCHAR, call_sign VARCHAR) | {
"SQL_Query": "SELECT format FROM table_134729_3 WHERE call_sign = \"K213CL\""
} |
What market is Wessington Springs in | CREATE TABLE table_134729_3 (target_city__market VARCHAR, city_of_license VARCHAR) | {
"SQL_Query": "SELECT target_city__market FROM table_134729_3 WHERE city_of_license = \"Wessington Springs\""
} |
What station owns Moody Bible Institute | CREATE TABLE table_134729_3 (format VARCHAR, owner VARCHAR) | {
"SQL_Query": "SELECT format FROM table_134729_3 WHERE owner = \"Moody Bible Institute\""
} |
how many date with score being w 113–87 | CREATE TABLE table_13480122_5 (date VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT COUNT(date) FROM table_13480122_5 WHERE score = \"W 113–87\""
} |
what's the game with record being 29–3 | CREATE TABLE table_13480122_5 (game VARCHAR, record VARCHAR) | {
"SQL_Query": "SELECT game FROM table_13480122_5 WHERE record = \"29–3\""
} |
who is the the high rebounds with high assbeingts being scottie pippen (9) | CREATE TABLE table_13480122_5 (high_rebounds VARCHAR, high_assists VARCHAR) | {
"SQL_Query": "SELECT high_rebounds FROM table_13480122_5 WHERE high_assists = \"Scottie Pippen (9)\""
} |
who is the the high points with score being w 117–93 | CREATE TABLE table_13480122_5 (high_points VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT high_points FROM table_13480122_5 WHERE score = \"W 117–93\""
} |
what's the record with date being january 13 | CREATE TABLE table_13480122_5 (record VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT record FROM table_13480122_5 WHERE date = \"January 13\""
} |
what are all the record where date is january 21 | CREATE TABLE table_13480122_5 (record VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT record FROM table_13480122_5 WHERE date = \"January 21\""
} |
What is the name of Rapid City's Adult Contemporary station? | CREATE TABLE table_134987_3 (name VARCHAR, city_of_license VARCHAR, format VARCHAR) | {
"SQL_Query": "SELECT name FROM table_134987_3 WHERE city_of_license = \"Rapid City\" AND format = \"Adult Contemporary\""
} |
What are the market city/market(s) for Rapid City Alternative format? | CREATE TABLE table_134987_3 (target_city__market VARCHAR, city_of_license VARCHAR, format VARCHAR) | {
"SQL_Query": "SELECT target_city__market FROM table_134987_3 WHERE city_of_license = \"Rapid City\" AND format = \"Alternative\""
} |
What is the frequency for the Christian Kawz-fm Translator station? | CREATE TABLE table_134987_3 (frequency VARCHAR, format VARCHAR) | {
"SQL_Query": "SELECT frequency FROM table_134987_3 WHERE format = \"Christian KAWZ-FM translator\""
} |
What is the target market for the station on 97.9 fm? | CREATE TABLE table_134987_3 (target_city__market VARCHAR, frequency VARCHAR) | {
"SQL_Query": "SELECT target_city__market FROM table_134987_3 WHERE frequency = \"97.9 FM\""
} |
What is the frequency of the Classic Country Krki-fm booster station? | CREATE TABLE table_134987_3 (frequency VARCHAR, format VARCHAR) | {
"SQL_Query": "SELECT frequency FROM table_134987_3 WHERE format = \"Classic Country KRKI-FM booster\""
} |
What is the target market of the station with call sign KFXS? | CREATE TABLE table_134987_3 (target_city__market VARCHAR, call_sign VARCHAR) | {
"SQL_Query": "SELECT target_city__market FROM table_134987_3 WHERE call_sign = \"KFXS\""
} |
What year did the season finale have a total of 10.29 million viewers? | CREATE TABLE table_1348989_2 (season VARCHAR, viewers__in_millions_ VARCHAR) | {
"SQL_Query": "SELECT season AS Finale FROM table_1348989_2 WHERE viewers__in_millions_ = \"10.29\""
} |
In what TV season did the 3rd season air? | CREATE TABLE table_1348989_2 (TV VARCHAR, season VARCHAR) | {
"SQL_Query": "SELECT TV AS season FROM table_1348989_2 WHERE season = \"3rd\""
} |
How many rankings did the 5th season have? | CREATE TABLE table_1348989_2 (ranking VARCHAR, season VARCHAR) | {
"SQL_Query": "SELECT COUNT(ranking) FROM table_1348989_2 WHERE season = \"5th\""
} |
How many times did the 2nd season have a finale? | CREATE TABLE table_1348989_2 (season VARCHAR) | {
"SQL_Query": "SELECT COUNT(season) AS Finale FROM table_1348989_2 WHERE season = \"2nd\""
} |
how many county with per capita income being $20,101 | CREATE TABLE table_1350350_2 (county VARCHAR, per_capita_income VARCHAR) | {
"SQL_Query": "SELECT COUNT(county) FROM table_1350350_2 WHERE per_capita_income = \"$20,101\""
} |
who is the the place with per capita income being $14,793 | CREATE TABLE table_1350350_2 (place VARCHAR, per_capita_income VARCHAR) | {
"SQL_Query": "SELECT place FROM table_1350350_2 WHERE per_capita_income = \"$14,793\""
} |
what's the number of households with per capita income being $16,820 | CREATE TABLE table_1350350_2 (number_of_households VARCHAR, per_capita_income VARCHAR) | {
"SQL_Query": "SELECT number_of_households FROM table_1350350_2 WHERE per_capita_income = \"$16,820\""
} |
what is the maximum rank with per capita income being $17,013 | CREATE TABLE table_1350350_2 (rank INTEGER, per_capita_income VARCHAR) | {
"SQL_Query": "SELECT MAX(rank) FROM table_1350350_2 WHERE per_capita_income = \"$17,013\""
} |
How old is Darryll Holland's horse | CREATE TABLE table_13498403_1 (barrier VARCHAR, jockey VARCHAR) | {
"SQL_Query": "SELECT barrier FROM table_13498403_1 WHERE jockey = \"Darryll Holland\""
} |
how many people work with N Rawiller | CREATE TABLE table_13498403_1 (trainer VARCHAR, jockey VARCHAR) | {
"SQL_Query": "SELECT COUNT(trainer) FROM table_13498403_1 WHERE jockey = \"N Rawiller\""
} |
How old is Daniel Morton | CREATE TABLE table_13498403_1 (barrier INTEGER, trainer VARCHAR) | {
"SQL_Query": "SELECT MAX(barrier) FROM table_13498403_1 WHERE trainer = \"Daniel Morton\""
} |
What are radio electricals when secretariat is wtr i? | CREATE TABLE table_1348246_3 (Radio VARCHAR, secretariat VARCHAR) | {
"SQL_Query": "SELECT Radio AS electrical FROM table_1348246_3 WHERE secretariat = \"WTR I\""
} |
What are electricals where secretariat is po(w)? | CREATE TABLE table_1348246_3 (electrical VARCHAR, secretariat VARCHAR) | {
"SQL_Query": "SELECT electrical FROM table_1348246_3 WHERE secretariat = \"PO(W)\""
} |
What mechanical has lpm regulation? | CREATE TABLE table_1348246_3 (mechanical VARCHAR, regulating VARCHAR) | {
"SQL_Query": "SELECT mechanical FROM table_1348246_3 WHERE regulating = \"LPM\""
} |
What number episode in the series is the episode "things that fly"? | CREATE TABLE table_13505192_3 (series_number INTEGER, episode_title VARCHAR) | {
"SQL_Query": "SELECT MAX(series_number) FROM table_13505192_3 WHERE episode_title = \"Things That Fly\""
} |
What is the production code for season episode 8? | CREATE TABLE table_13505192_3 (production_code INTEGER, season_number VARCHAR) | {
"SQL_Query": "SELECT MIN(production_code) FROM table_13505192_3 WHERE season_number = 8"
} |
How many episodes have a series number of 35? | CREATE TABLE table_13505192_3 (episode_title VARCHAR, series_number VARCHAR) | {
"SQL_Query": "SELECT COUNT(episode_title) FROM table_13505192_3 WHERE series_number = 35"
} |
What is the series number for season episode 24? | CREATE TABLE table_13505192_3 (series_number INTEGER, season_number VARCHAR) | {
"SQL_Query": "SELECT MIN(series_number) FROM table_13505192_3 WHERE season_number = 24"
} |
how many have times of 6 | CREATE TABLE table_13512105_3 (fastest_lap VARCHAR, rnd VARCHAR) | {
"SQL_Query": "SELECT COUNT(fastest_lap) FROM table_13512105_3 WHERE rnd = 6"
} |
which brand have drivers who won with the names of ryan briscoe and tomas scheckter | CREATE TABLE table_13512105_3 (winning_team VARCHAR, winning_driver VARCHAR, fastest_lap VARCHAR) | {
"SQL_Query": "SELECT winning_team FROM table_13512105_3 WHERE winning_driver = \"Ryan Briscoe\" AND fastest_lap = \"Tomas Scheckter\""
} |
who else along with scott dixon and graham rahal drove with the most speed | CREATE TABLE table_13512105_3 (fastest_lap VARCHAR, most_laps_led VARCHAR, pole_position VARCHAR) | {
"SQL_Query": "SELECT fastest_lap FROM table_13512105_3 WHERE most_laps_led = \"Scott Dixon\" AND pole_position = \"Graham Rahal\""
} |
tell the number of times where kansas was the location | CREATE TABLE table_13512105_3 (rnd VARCHAR, race VARCHAR) | {
"SQL_Query": "SELECT COUNT(rnd) FROM table_13512105_3 WHERE race = \"Kansas\""
} |
What TV channel had a license from Boston? | CREATE TABLE table_1353096_2 (channel_tv___dt__ VARCHAR, city_of_license_market VARCHAR) | {
"SQL_Query": "SELECT channel_tv___dt__ FROM table_1353096_2 WHERE city_of_license_market = \"Boston\""
} |
Which station has a license in Fort Collins, Colorado? | CREATE TABLE table_1353096_2 (station VARCHAR, city_of_license_market VARCHAR) | {
"SQL_Query": "SELECT station FROM table_1353096_2 WHERE city_of_license_market = \"Fort Collins, Colorado\""
} |
What is the current status of the KDAF ** Station? | CREATE TABLE table_1353096_2 (current_status VARCHAR, station VARCHAR) | {
"SQL_Query": "SELECT current_status FROM table_1353096_2 WHERE station = \"KDAF **\""
} |
How many entries are listed under "current status" for the WJW-TV ++ Station? | CREATE TABLE table_1353096_2 (current_status VARCHAR, station VARCHAR) | {
"SQL_Query": "SELECT COUNT(current_status) FROM table_1353096_2 WHERE station = \"WJW-TV ++\""
} |
How many stations have fox as the primary affiliation and have been owned since 1986? | CREATE TABLE table_1353096_1 (station VARCHAR, primary_affiliation VARCHAR, owned_since VARCHAR) | {
"SQL_Query": "SELECT COUNT(station) FROM table_1353096_1 WHERE primary_affiliation = \"Fox\" AND owned_since = \"1986\""
} |
What channel has station kdfw ++? | CREATE TABLE table_1353096_1 (channel_tv___dt__ VARCHAR, station VARCHAR) | {
"SQL_Query": "SELECT channel_tv___dt__ FROM table_1353096_1 WHERE station = \"KDFW ++\""
} |
What city has channel tv (dt) 25 (31)? | CREATE TABLE table_1353096_1 (city_of_license__market VARCHAR, channel_tv___dt__ VARCHAR) | {
"SQL_Query": "SELECT city_of_license__market FROM table_1353096_1 WHERE channel_tv___dt__ = \"25 (31)\""
} |
How many channel tv (dt)s are in austin, texas? | CREATE TABLE table_1353096_1 (channel_tv___dt__ VARCHAR, city_of_license__market VARCHAR) | {
"SQL_Query": "SELECT COUNT(channel_tv___dt__) FROM table_1353096_1 WHERE city_of_license__market = \"Austin, Texas\""
} |
When was 10 (10) bought? | CREATE TABLE table_1353096_1 (owned_since VARCHAR, channel_tv___dt__ VARCHAR) | {
"SQL_Query": "SELECT owned_since FROM table_1353096_1 WHERE channel_tv___dt__ = \"10 (10)\""
} |
Who were the umpires when Paul Medhurst (C) won the Simpson Medal? | CREATE TABLE table_13514348_7 (umpires VARCHAR, simpson_medal VARCHAR) | {
"SQL_Query": "SELECT umpires FROM table_13514348_7 WHERE simpson_medal = \"Paul Medhurst (C)\""
} |
Who were the umpires when Paul Vines (S) won the Simpson Medal? | CREATE TABLE table_13514348_7 (umpires VARCHAR, simpson_medal VARCHAR) | {
"SQL_Query": "SELECT umpires FROM table_13514348_7 WHERE simpson_medal = \"Paul Vines (S)\""
} |
Which venue did Luke Blackwell serve as captain? | CREATE TABLE table_13514348_7 (venue VARCHAR, captain VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_13514348_7 WHERE captain = \"Luke Blackwell\""
} |
what's the minimum 180s value | CREATE TABLE table_13535824_2 (Id VARCHAR) | {
"SQL_Query": "SELECT MIN(180 AS s) FROM table_13535824_2"
} |
What channel number is Gladiators on | CREATE TABLE table_13549921_18 (new_channel_s_ VARCHAR, programme VARCHAR) | {
"SQL_Query": "SELECT new_channel_s_ FROM table_13549921_18 WHERE programme = \"Gladiators\""
} |
What show is coming back on in July 2008 | CREATE TABLE table_13549921_18 (programme VARCHAR, date_s__of_return VARCHAR) | {
"SQL_Query": "SELECT programme FROM table_13549921_18 WHERE date_s__of_return = \"July 2008\""
} |
Who are the mens doubles and womens singles is wang shixian? | CREATE TABLE table_13553701_1 (mens_doubles VARCHAR, womens_singles VARCHAR) | {
"SQL_Query": "SELECT mens_doubles FROM table_13553701_1 WHERE womens_singles = \"Wang Shixian\""
} |
Who is the mens singles and womens singlses is wang shixian? | CREATE TABLE table_13553701_1 (mens_singles VARCHAR, womens_singles VARCHAR) | {
"SQL_Query": "SELECT mens_singles FROM table_13553701_1 WHERE womens_singles = \"Wang Shixian\""
} |
Who are the mens doubles and and mens singles is lee hyun-il? | CREATE TABLE table_13553701_1 (mens_doubles VARCHAR, mens_singles VARCHAR) | {
"SQL_Query": "SELECT mens_doubles FROM table_13553701_1 WHERE mens_singles = \"Lee Hyun-il\""
} |
Who are the mens singles and womens singles with sun yu? | CREATE TABLE table_13553701_1 (mens_singles VARCHAR, womens_singles VARCHAR) | {
"SQL_Query": "SELECT mens_singles FROM table_13553701_1 WHERE womens_singles = \"Sun Yu\""
} |
what is the highest number where people got done at 31.1 | CREATE TABLE table_1354805_6 (competition_finish INTEGER, average VARCHAR) | {
"SQL_Query": "SELECT MAX(competition_finish) FROM table_1354805_6 WHERE average = \"31.1\""
} |
who danced 11 and finished at more than a 2.0 | CREATE TABLE table_1354805_6 (couple VARCHAR, number_of_dances VARCHAR, competition_finish VARCHAR) | {
"SQL_Query": "SELECT couple FROM table_1354805_6 WHERE number_of_dances = 11 AND competition_finish > 2.0"
} |
tell the competitions where the mean is 1 | CREATE TABLE table_1354805_6 (average VARCHAR, number_of_dances VARCHAR) | {
"SQL_Query": "SELECT average FROM table_1354805_6 WHERE number_of_dances = 1"
} |
tell the mean of the times competition for the 7 jigs | CREATE TABLE table_1354805_6 (rank_by_average VARCHAR, number_of_dances VARCHAR) | {
"SQL_Query": "SELECT rank_by_average FROM table_1354805_6 WHERE number_of_dances = 7"
} |
how many turns were completed to make a mean of 34.0 | CREATE TABLE table_1354805_6 (number_of_dances VARCHAR, average VARCHAR) | {
"SQL_Query": "SELECT COUNT(number_of_dances) FROM table_1354805_6 WHERE average = \"34.0\""
} |
What is the gender of the junior high school is 24mm? | CREATE TABLE table_13555999_1 (gender VARCHAR, junior_high_school__12_15_yrs_ VARCHAR) | {
"SQL_Query": "SELECT gender FROM table_13555999_1 WHERE junior_high_school__12_15_yrs_ = \"24mm\""
} |
What amount of the university students and adults ehre the the senior high school is 26mm? | CREATE TABLE table_13555999_1 (university_students_and_adults__18yrs VARCHAR, _ VARCHAR, senior_high_school__15_18_yrs_ VARCHAR) | {
"SQL_Query": "SELECT university_students_and_adults__18yrs + _ FROM table_13555999_1 WHERE senior_high_school__15_18_yrs_ = \"26mm\""
} |
What amount of senior high school where junior high school is 114cm? | CREATE TABLE table_13555999_1 (senior_high_school__15_18_yrs_ VARCHAR, junior_high_school__12_15_yrs_ VARCHAR) | {
"SQL_Query": "SELECT senior_high_school__15_18_yrs_ FROM table_13555999_1 WHERE junior_high_school__12_15_yrs_ = \"114cm\""
} |
What is the specification where senior high school is 25mm? | CREATE TABLE table_13555999_1 (specification VARCHAR, senior_high_school__15_18_yrs_ VARCHAR) | {
"SQL_Query": "SELECT specification FROM table_13555999_1 WHERE senior_high_school__15_18_yrs_ = \"25mm\""
} |
What amount is the junior high school where the gender is male and the specification is minimum diameter of sakigawa? | CREATE TABLE table_13555999_1 (junior_high_school__12_15_yrs_ VARCHAR, gender VARCHAR, specification VARCHAR) | {
"SQL_Query": "SELECT junior_high_school__12_15_yrs_ FROM table_13555999_1 WHERE gender = \"Male\" AND specification = \"Minimum diameter of sakigawa\""
} |
What is the gender of senior high school 26mm? | CREATE TABLE table_13555999_1 (gender VARCHAR, senior_high_school__15_18_yrs_ VARCHAR) | {
"SQL_Query": "SELECT gender FROM table_13555999_1 WHERE senior_high_school__15_18_yrs_ = \"26mm\""
} |
What was the score of the game when the team was 1-2? | CREATE TABLE table_13557843_3 (score VARCHAR, record VARCHAR) | {
"SQL_Query": "SELECT score FROM table_13557843_3 WHERE record = \"1-2\""
} |
Who had the high assists against charlotte? | CREATE TABLE table_13557843_3 (high_assists VARCHAR, team VARCHAR) | {
"SQL_Query": "SELECT high_assists FROM table_13557843_3 WHERE team = \"Charlotte\""
} |
How many leading scorers were there in the game against Utah? | CREATE TABLE table_13557843_5 (high_points VARCHAR, team VARCHAR) | {
"SQL_Query": "SELECT COUNT(high_points) FROM table_13557843_5 WHERE team = \"Utah\""
} |
how many location attendance with team being charlotte | CREATE TABLE table_13557843_7 (location_attendance VARCHAR, team VARCHAR) | {
"SQL_Query": "SELECT COUNT(location_attendance) FROM table_13557843_7 WHERE team = \"Charlotte\""
} |
what's the game with date being march 7 | CREATE TABLE table_13557843_7 (game VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT game FROM table_13557843_7 WHERE date = \"March 7\""
} |
what's the date with game being 72 | CREATE TABLE table_13557843_7 (date VARCHAR, game VARCHAR) | {
"SQL_Query": "SELECT date FROM table_13557843_7 WHERE game = 72"
} |
how many high assbeingts with score being l 90–98 (ot) | CREATE TABLE table_13557843_7 (high_assists VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT COUNT(high_assists) FROM table_13557843_7 WHERE score = \"L 90–98 (OT)\""
} |
who is the the high rebounds with team being vancouver | CREATE TABLE table_13557843_7 (high_rebounds VARCHAR, team VARCHAR) | {
"SQL_Query": "SELECT high_rebounds FROM table_13557843_7 WHERE team = \"Vancouver\""
} |
How many pairs of numbers are under record on April 12? | CREATE TABLE table_13557843_8 (record VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT COUNT(record) FROM table_13557843_8 WHERE date = \"April 12\""
} |
Name total number of won for tries for 92 | CREATE TABLE table_13564702_3 (won VARCHAR, tries_for VARCHAR) | {
"SQL_Query": "SELECT COUNT(won) FROM table_13564702_3 WHERE tries_for = \"92\""
} |
Name the club when tries for is 83 | CREATE TABLE table_13564702_3 (club VARCHAR, tries_for VARCHAR) | {
"SQL_Query": "SELECT club FROM table_13564702_3 WHERE tries_for = \"83\""
} |
Name the try bonus for kenfig hill rfc | CREATE TABLE table_13564702_3 (try_bonus VARCHAR, club VARCHAR) | {
"SQL_Query": "SELECT try_bonus FROM table_13564702_3 WHERE club = \"Kenfig Hill RFC\""
} |
Name the tries against for played 22 and points against of 183 | CREATE TABLE table_13564702_3 (tries_against VARCHAR, played VARCHAR, points_against VARCHAR) | {
"SQL_Query": "SELECT tries_against FROM table_13564702_3 WHERE played = \"22\" AND points_against = \"183\""
} |
Name the total number of points for when try bonus is 10 | CREATE TABLE table_13564702_3 (points_for VARCHAR, try_bonus VARCHAR) | {
"SQL_Query": "SELECT COUNT(points_for) FROM table_13564702_3 WHERE try_bonus = \"10\""
} |
Name the number of won for maesteg harlequins rfc | CREATE TABLE table_13564702_3 (won VARCHAR, club VARCHAR) | {
"SQL_Query": "SELECT COUNT(won) FROM table_13564702_3 WHERE club = \"Maesteg Harlequins RFC\""
} |
What amount had all played that lost were 8? | CREATE TABLE table_13564637_3 (played VARCHAR, lost VARCHAR) | {
"SQL_Query": "SELECT played FROM table_13564637_3 WHERE lost = \"8\""
} |
what is the name of the club where drawn is 1 and lost is 10? | CREATE TABLE table_13564637_3 (club VARCHAR, drawn VARCHAR, lost VARCHAR) | {
"SQL_Query": "SELECT club FROM table_13564637_3 WHERE drawn = \"1\" AND lost = \"10\""
} |
what are the tries where the game was lost by 4? | CREATE TABLE table_13564637_3 (tries_against VARCHAR, lost VARCHAR) | {
"SQL_Query": "SELECT tries_against FROM table_13564637_3 WHERE lost = \"4\""
} |
what amount of try bonus where the game was won by 11? | CREATE TABLE table_13564637_3 (try_bonus VARCHAR, won VARCHAR) | {
"SQL_Query": "SELECT COUNT(try_bonus) FROM table_13564637_3 WHERE won = \"11\""
} |
what is the total amount of tries where the points were 325? | CREATE TABLE table_13564637_3 (tries_against VARCHAR, points_for VARCHAR) | {
"SQL_Query": "SELECT COUNT(tries_against) FROM table_13564637_3 WHERE points_for = \"325\""
} |
What is the name of the column points against? | CREATE TABLE table_13564637_4 (Id VARCHAR) | {
"SQL_Query": "SELECT \"points\" AS _against FROM table_13564637_4 WHERE \"points\" = \"points\""
} |
How many points for when the points was 53? | CREATE TABLE table_13564637_4 (points_for VARCHAR, points VARCHAR) | {
"SQL_Query": "SELECT points_for FROM table_13564637_4 WHERE points = \"53\""
} |
What is the played total when the points against was 321? | CREATE TABLE table_13564637_4 (played VARCHAR, points_against VARCHAR) | {
"SQL_Query": "SELECT played FROM table_13564637_4 WHERE points_against = \"321\""
} |
How many tries for when the points against was 547? | CREATE TABLE table_13564637_4 (tries_for VARCHAR, points_against VARCHAR) | {
"SQL_Query": "SELECT tries_for FROM table_13564637_4 WHERE points_against = \"547\""
} |
How many total games drawn for club tylorstown rfc? | CREATE TABLE table_13564637_4 (drawn VARCHAR, club VARCHAR) | {
"SQL_Query": "SELECT drawn FROM table_13564637_4 WHERE club = \"Tylorstown RFC\""
} |
How many communities had a total renewable generation of 1375? | CREATE TABLE table_13566548_1 (autonomous_community VARCHAR, total_renewable_generation VARCHAR) | {
"SQL_Query": "SELECT COUNT(autonomous_community) FROM table_13566548_1 WHERE total_renewable_generation = 1375"
} |
What is the community with a wind power of 1042? | CREATE TABLE table_13566548_1 (autonomous_community VARCHAR, wind_power VARCHAR) | {
"SQL_Query": "SELECT autonomous_community FROM table_13566548_1 WHERE wind_power = 1042"
} |
How many races were for a distance of 2020 m? | CREATE TABLE table_1358608_4 (group VARCHAR, distance VARCHAR) | {
"SQL_Query": "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.