answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT original_artist FROM table_28715942_6 WHERE vocal_percussionist = "Benjamin Holder" | Who is the artist where the vocal percussionist is Benjamin Holder? | CREATE TABLE table_28715942_6 (original_artist VARCHAR, vocal_percussionist VARCHAR) |
SELECT T3.manager_name FROM station_company AS T1 JOIN company AS T2 ON T1.company_id = T2.company_id JOIN gas_station AS T3 ON T1.station_id = T3.station_id WHERE T2.company = 'ExxonMobil' | Show the manager name for gas stations belonging to the ExxonMobil company. | CREATE TABLE gas_station (manager_name VARCHAR, station_id VARCHAR); CREATE TABLE station_company (company_id VARCHAR, station_id VARCHAR); CREATE TABLE company (company_id VARCHAR, company VARCHAR) |
SELECT away_captain FROM table_name_68 WHERE result = "[[|]] by 7 wickets" | Who is the away captain when the game resulted in [[|]] by 7 wickets? | CREATE TABLE table_name_68 (away_captain VARCHAR, result VARCHAR) |
SELECT away_team FROM table_name_55 WHERE tie_no = "replay" AND home_team = "chesterfield" | Which Away Team has a Tie no of replay and a Home Team of Chesterfield? | CREATE TABLE table_name_55 (away_team VARCHAR, tie_no VARCHAR, home_team VARCHAR) |
SELECT singapore_league_cup FROM table_name_99 WHERE name = "masahiro fukasawa" | What Singapore League Cup does Masahiro Fukasawa have? | CREATE TABLE table_name_99 (singapore_league_cup VARCHAR, name VARCHAR) |
SELECT score FROM table_name_92 WHERE away_team = "stafford rangers" | What was the score of the game where stafford rangers was the away team? | CREATE TABLE table_name_92 (score VARCHAR, away_team VARCHAR) |
SELECT round FROM table_name_67 WHERE score = "10-52" | Which round resulted in 10-52? | CREATE TABLE table_name_67 (round VARCHAR, score VARCHAR) |
SELECT MAX(game) FROM table_name_32 WHERE record = "1-0" AND hornets_score > 100 | What is the highest game with a 1-0 record, and the Hornets scored more than 100? | CREATE TABLE table_name_32 (game INTEGER, record VARCHAR, hornets_score VARCHAR) |
SELECT MAX(nightly_rank) FROM table_22892217_4 | What is the highest numbered nightly rank for any episode? | CREATE TABLE table_22892217_4 (nightly_rank INTEGER) |
SELECT COUNT(district) FROM table_1342359_17 WHERE first_elected = 1914 | how many people won in 1914 | CREATE TABLE table_1342359_17 (district VARCHAR, first_elected VARCHAR) |
SELECT away_team FROM table_name_9 WHERE home_team = "blackpool" | What was the Away Team of Blackpool's Home game? | CREATE TABLE table_name_9 (away_team VARCHAR, home_team VARCHAR) |
SELECT home_team FROM table_name_94 WHERE venue = "arden street oval" | Which home team has a venue of Arden Street Oval? | CREATE TABLE table_name_94 (home_team VARCHAR, venue VARCHAR) |
SELECT order_and_title FROM table_name_88 WHERE elevated = "1261, december 17" AND faction = "angevin" | What is the Order and Title with an Elevated with 1261, december 17, and a Faction with angevin? | CREATE TABLE table_name_88 (order_and_title VARCHAR, elevated VARCHAR, faction VARCHAR) |
SELECT COUNT(march) FROM table_name_83 WHERE january < 8.77 AND december > 1.69 AND average_monthly_additions_in_millions_ < 5.35 AND year < 2004 | What was the total number for March with less than 8.77 in January, more than 1.69 in December, an average monthly addition less than 5.35, and before 2004? | CREATE TABLE table_name_83 (march VARCHAR, year VARCHAR, average_monthly_additions_in_millions_ VARCHAR, january VARCHAR, december VARCHAR) |
SELECT COUNT(title) FROM table_12159115_2 WHERE production_code = "2T6705" | What's the total number of episodes with production code 2T6705? | CREATE TABLE table_12159115_2 (title VARCHAR, production_code VARCHAR) |
SELECT year FROM table_name_95 WHERE extra = "800 m" AND tournament = "european indoor championships" AND result = "2nd" | In which year was the Tournament of european indoor championships played where the Extra was 800 m and the Result was 2nd? | CREATE TABLE table_name_95 (year VARCHAR, result VARCHAR, extra VARCHAR, tournament VARCHAR) |
SELECT location FROM table_name_56 WHERE country = "spain" | What was the location of the tournament held in Spain? | CREATE TABLE table_name_56 (location VARCHAR, country VARCHAR) |
SELECT college FROM table_name_13 WHERE position = "center" | What college was the draft pick from who plays center position? | CREATE TABLE table_name_13 (college VARCHAR, position VARCHAR) |
SELECT conductor FROM table_name_3 WHERE orchestra = "chicago symphony orchestra" | Who is the conductor when the chicago symphony orchestra is featured? | CREATE TABLE table_name_3 (conductor VARCHAR, orchestra VARCHAR) |
SELECT player FROM table_name_79 WHERE position = "fly-half" | Which player was a fly-half? | CREATE TABLE table_name_79 (player VARCHAR, position VARCHAR) |
SELECT MIN(weight) FROM table_name_78 WHERE spike < 330 AND block = 315 AND height > 187 | What is the smallest Weight, when Spike is less than 330, when Block is 315, and when Height is greater than 187? | CREATE TABLE table_name_78 (weight INTEGER, height VARCHAR, spike VARCHAR, block VARCHAR) |
SELECT original_artist FROM table_name_88 WHERE week__number = "top 9" | What is the original artist of top 9 as the week number? | CREATE TABLE table_name_88 (original_artist VARCHAR, week__number VARCHAR) |
SELECT athletic_nickname FROM table_22171978_1 WHERE location = "Quezon City , Metro Manila" | For the location of quezon city , metro manila what is the athletic nickname? | CREATE TABLE table_22171978_1 (athletic_nickname VARCHAR, location VARCHAR) |
SELECT cyrillic_name_other_names FROM table_2562572_9 WHERE population__2011_ = 2125 | What is the cyrillic name for the settlement with the population of 2125? | CREATE TABLE table_2562572_9 (cyrillic_name_other_names VARCHAR, population__2011_ VARCHAR) |
SELECT country FROM table_name_71 WHERE score = "70-76-68-214" | Which country has the score 70-76-68-214? | CREATE TABLE table_name_71 (country VARCHAR, score VARCHAR) |
SELECT opponent FROM table_name_3 WHERE record = "34–31–6" | What is the Opponent when the Record is 34–31–6? | CREATE TABLE table_name_3 (opponent VARCHAR, record VARCHAR) |
SELECT stadium FROM table_name_8 WHERE past_season = "7th" | what stadium has a prior record of 7th? | CREATE TABLE table_name_8 (stadium VARCHAR, past_season VARCHAR) |
SELECT bronze FROM table_name_20 WHERE location = "seoul" | Who won bronze in Seoul? | CREATE TABLE table_name_20 (bronze VARCHAR, location VARCHAR) |
SELECT engine_type___cyl FROM table_name_14 WHERE wheelbase_in = "127" AND year = "1915" | What is the engine type with a wheelbase of 127 inches in 1915? | CREATE TABLE table_name_14 (engine_type___cyl VARCHAR, wheelbase_in VARCHAR, year VARCHAR) |
SELECT COUNT(games) FROM table_name_75 WHERE name = "shlomi avrahami" | What is the number of games for Shlomi Avrahami? | CREATE TABLE table_name_75 (games VARCHAR, name VARCHAR) |
SELECT archive FROM table_1601935_1 WHERE viewers__in_millions_ = "6.6" | What was the archive for episode with 6.6 million viewers? | CREATE TABLE table_1601935_1 (archive VARCHAR, viewers__in_millions_ VARCHAR) |
SELECT record FROM table_name_87 WHERE date = "5 february 2008" | What is the record of the game on 5 February 2008? | CREATE TABLE table_name_87 (record VARCHAR, date VARCHAR) |
SELECT run_3 FROM table_name_73 WHERE team = "united states (usa) usa i" | What is Run 3, when Team is United States (USA) USA I? | CREATE TABLE table_name_73 (run_3 VARCHAR, team VARCHAR) |
SELECT MAX(total) FROM table_name_98 WHERE name = "andrea sinko" AND all_around > 9.65 | What is the highest total that has andrea sinko as the name, with an all around greater than 9.65? | CREATE TABLE table_name_98 (total INTEGER, name VARCHAR, all_around VARCHAR) |
SELECT home FROM table_name_72 WHERE date = "february 3" | What is the home team of the game on February 3? | CREATE TABLE table_name_72 (home VARCHAR, date VARCHAR) |
SELECT nationality FROM table_name_78 WHERE team_from = "södertälje sk" | Name the Nationality of södertälje sk? | CREATE TABLE table_name_78 (nationality VARCHAR, team_from VARCHAR) |
SELECT singer_s_ FROM table_23667534_1 WHERE song_s__title = "He's Bigfoot" | Who sand He's Bigfoot? | CREATE TABLE table_23667534_1 (singer_s_ VARCHAR, song_s__title VARCHAR) |
SELECT position FROM table_name_34 WHERE unanimous = "no" AND college_hall_of_fame = "no" | What is the position of the player with a unanimous no result without a college hall of fame? | CREATE TABLE table_name_34 (position VARCHAR, unanimous VARCHAR, college_hall_of_fame VARCHAR) |
SELECT party FROM table_name_70 WHERE incumbent = "w. jasper talbert" | Which party had an incumbent of W. Jasper Talbert? | CREATE TABLE table_name_70 (party VARCHAR, incumbent VARCHAR) |
SELECT team_classification FROM table_22941863_19 WHERE stage = 9 | If the stage is 9, what is the team classification name? | CREATE TABLE table_22941863_19 (team_classification VARCHAR, stage VARCHAR) |
SELECT actual_title FROM table_name_15 WHERE artist = "tom richmond" AND issue < 508 AND writer = "desmond devlin" | What was the actual title of the show that had an issue number less than 508, was written by Desmond Devlin, and for which Tom Richmond was the artist? | CREATE TABLE table_name_15 (actual_title VARCHAR, writer VARCHAR, artist VARCHAR, issue VARCHAR) |
SELECT writer FROM table_27846651_1 WHERE viewers__millions_ = "5.93" | Who wrote the episode that had 5.93 million viewers? | CREATE TABLE table_27846651_1 (writer VARCHAR, viewers__millions_ VARCHAR) |
SELECT platelet_count FROM table_name_39 WHERE condition = "factor v deficiency" | Which Platelet count has a Condition of factor v deficiency? | CREATE TABLE table_name_39 (platelet_count VARCHAR, condition VARCHAR) |
SELECT country FROM table_name_41 WHERE player = "lee trevino" | What country is Lee Trevino from? | CREATE TABLE table_name_41 (country VARCHAR, player VARCHAR) |
SELECT COUNT(week) FROM table_name_74 WHERE attendance > 68 OFFSET 000 | How many weeks had an attendance of over 68,000? | CREATE TABLE table_name_74 (week VARCHAR, attendance INTEGER) |
SELECT song_choice FROM table_23871828_1 WHERE theme = "British Invasion" | List the song chose for the British Invasion. | CREATE TABLE table_23871828_1 (song_choice VARCHAR, theme VARCHAR) |
SELECT MIN(round) FROM table_name_86 WHERE pick__number = 12 AND position = "linebacker" | Which is the lowest round to have a pick of 12 and position of linebacker? | CREATE TABLE table_name_86 (round INTEGER, pick__number VARCHAR, position VARCHAR) |
SELECT 1 AS st_leg FROM table_name_66 WHERE team_1 = "kabwe warriors" | When Kabwe Warriors (team 1) played, what was the result of the 1st leg? | CREATE TABLE table_name_66 (team_1 VARCHAR) |
SELECT result FROM table_name_79 WHERE date = "june 5" | Which Result that is on june 5? | CREATE TABLE table_name_79 (result VARCHAR, date VARCHAR) |
SELECT COUNT(DISTINCT church_id) FROM wedding WHERE YEAR = 2016 | How many churches have a wedding in year 2016? | CREATE TABLE wedding (church_id VARCHAR, YEAR VARCHAR) |
SELECT 2004 FROM table_name_10 WHERE 2011 = "q1" | What is the 2004 tournament that has a Q1 of 2011? | CREATE TABLE table_name_10 (Id VARCHAR) |
SELECT to_par FROM table_name_55 WHERE place = "t9" AND country = "spain" | Which To par has a Place in t9 and a Country of Spain? | CREATE TABLE table_name_55 (to_par VARCHAR, place VARCHAR, country VARCHAR) |
SELECT to_par FROM table_name_3 WHERE place = "t6" AND country = "united states" AND player = "leonard thompson" | What is the to par for Leonard Thompson from the United States with a place of T6? | CREATE TABLE table_name_3 (to_par VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR) |
SELECT power__kw_ FROM table_name_72 WHERE frequency = "95.1mhz" | What is the Power (kW) for the station with a frequency of 95.1mhz? | CREATE TABLE table_name_72 (power__kw_ VARCHAR, frequency VARCHAR) |
SELECT ri_song_hui___prk__ FROM table_name_49 WHERE world_record = "olympic record" AND "snatch" = "snatch" | What's the Ri Song-Hui when the olympic record is the world record and snatch was snatch? | CREATE TABLE table_name_49 (ri_song_hui___prk__ VARCHAR, world_record VARCHAR) |
SELECT outcome FROM table_name_97 WHERE opponent_in_final = "alizé cornet janette husárová" | Name the outcome for alizé cornet janette husárová being opponent in final | CREATE TABLE table_name_97 (outcome VARCHAR, opponent_in_final VARCHAR) |
SELECT opponent FROM table_name_63 WHERE loss = "lowe (1-4)" | Who were the opposing team when a Loss was listed with Lowe (1-4)? | CREATE TABLE table_name_63 (opponent VARCHAR, loss VARCHAR) |
SELECT distance__miles_ FROM table_27833186_1 WHERE best_conditioned_horse = "Freedom" | What was the total distance (in miles) of the championship where the best conditioned horse was Freedom? | CREATE TABLE table_27833186_1 (distance__miles_ VARCHAR, best_conditioned_horse VARCHAR) |
SELECT season FROM table_1474099_6 WHERE goals = 17 AND runners_up = "Slavija" | When the team scored 17 and Slavija placed second, what year was it? | CREATE TABLE table_1474099_6 (season VARCHAR, goals VARCHAR, runners_up VARCHAR) |
SELECT date FROM table_name_56 WHERE away_team = "york city" | What date was the game with the away team york city? | CREATE TABLE table_name_56 (date VARCHAR, away_team VARCHAR) |
SELECT date FROM table_name_69 WHERE competition = "friendly" AND result = "3–0" | On what date was a friendly competition and a result of 3–0? | CREATE TABLE table_name_69 (date VARCHAR, competition VARCHAR, result VARCHAR) |
SELECT COUNT(silver) FROM table_name_62 WHERE total < 6 AND bronze < 0 | How many silvers for the nation with under 6 total and under 0 bronze? | CREATE TABLE table_name_62 (silver VARCHAR, total VARCHAR, bronze VARCHAR) |
SELECT COUNT(position) FROM table_name_9 WHERE drawn = 9 AND difference = "5" AND lost < 14 | How many positions have 9 as a drawn, 5 as a difference, with a lost less than 14? | CREATE TABLE table_name_9 (position VARCHAR, lost VARCHAR, drawn VARCHAR, difference VARCHAR) |
SELECT MAX(year) FROM table_name_93 WHERE winning_team = "europe" AND usa_captain = "kathy whitworth" | What is the highest year that Europe won, when the USA's Captain was Kathy Whitworth? | CREATE TABLE table_name_93 (year INTEGER, winning_team VARCHAR, usa_captain VARCHAR) |
SELECT COUNT(kills) FROM table_name_32 WHERE percentage > 0.313 AND total_attempts > 1035 AND assists > 57 | How many kills when percentage is more than 0.313, attempts are more than 1035 and assists are larger than 57? | CREATE TABLE table_name_32 (kills VARCHAR, assists VARCHAR, percentage VARCHAR, total_attempts VARCHAR) |
SELECT prohibition_ticket FROM table_name_73 WHERE greenback_ticket = "thomas armstrong" | Who was on the Prohibition ticket when Thomas Armstrong ran on the Greenback ticket? | CREATE TABLE table_name_73 (prohibition_ticket VARCHAR, greenback_ticket VARCHAR) |
SELECT COUNT(avg_g) FROM table_name_81 WHERE gain < 1571 AND long < 46 | How much Avg/G has a Gain smaller than 1571, and a Long smaller than 46? | CREATE TABLE table_name_81 (avg_g VARCHAR, gain VARCHAR, long VARCHAR) |
SELECT MAX(dave_viewers) FROM table_25721_3 WHERE dave_ja_vu_viewers = 119000 | What is the highest number of dave viewers of an episode with 119000 dave ja vu viewers? | CREATE TABLE table_25721_3 (dave_viewers INTEGER, dave_ja_vu_viewers VARCHAR) |
SELECT AVG(week) FROM table_name_71 WHERE opponent = "green bay packers" | What is the Week of the game against Green Bay Packers? | CREATE TABLE table_name_71 (week INTEGER, opponent VARCHAR) |
SELECT MAX(year) FROM table_name_13 WHERE entrant = "shadow racing team" AND pts > 0 | What is the latest year that shadow racing team scored more than 0 points? | CREATE TABLE table_name_13 (year INTEGER, entrant VARCHAR, pts VARCHAR) |
SELECT COUNT(*) FROM COURSE WHERE Credits > 2 | How many courses have more than 2 credits? | CREATE TABLE COURSE (Credits INTEGER) |
SELECT distance__miles_ FROM table_27833186_1 WHERE horse_name = "Koona" | What was the distance (in miles) of the championship were the winning horse was Koona? | CREATE TABLE table_27833186_1 (distance__miles_ VARCHAR, horse_name VARCHAR) |
SELECT 3 AS _dart_average FROM table_18317531_1 WHERE player = "Michael van Gerwen" | Name the 3 dart average for michael van gerwen | CREATE TABLE table_18317531_1 (player VARCHAR) |
SELECT number_stayed_in_southeast FROM table_name_26 WHERE total_number_emigrated_or_forcibly_removed = "over 4,000" | Which Number stayed in Southeast has over 4,000 emigrated or forcibly removed? | CREATE TABLE table_name_26 (number_stayed_in_southeast VARCHAR, total_number_emigrated_or_forcibly_removed VARCHAR) |
SELECT nickname FROM table_26355116_1 WHERE school = "University of Alabama" | What is the nickname of the University of Alabama? | CREATE TABLE table_26355116_1 (nickname VARCHAR, school VARCHAR) |
SELECT attendance FROM table_name_13 WHERE result = "l12–21" | What Attendance has a Result of l12–21? | CREATE TABLE table_name_13 (attendance VARCHAR, result VARCHAR) |
SELECT championship FROM table_name_23 WHERE year < 2012 AND opponents_in_final = "stephane houdet michael jeremiasz" | What was the championship before 2012 that had Stephane Houdet Michael Jeremiasz as opponents? | CREATE TABLE table_name_23 (championship VARCHAR, year VARCHAR, opponents_in_final VARCHAR) |
SELECT race FROM table_name_71 WHERE distance = "201.44 miles" | Which race has a distance of 201.44 miles? | CREATE TABLE table_name_71 (race VARCHAR, distance VARCHAR) |
SELECT MIN(runs) FROM table_name_83 WHERE name = "clem hill" AND inns > 126 | Name of clem hill, and Inns larger than 126 has the lowest runs? | CREATE TABLE table_name_83 (runs INTEGER, name VARCHAR, inns VARCHAR) |
SELECT score FROM table_name_85 WHERE date = "march 28" | WHAT IS THE SCORE OF MARCH 28? | CREATE TABLE table_name_85 (score VARCHAR, date VARCHAR) |
SELECT vctp FROM table_name_86 WHERE vcrt = "7.62mm (0.3in) fn mag 60-20 machine gun" | If there is a VCRT of 7.62mm (0.3in) fn mag 60-20 machine gun, what is the VCTP of that? | CREATE TABLE table_name_86 (vctp VARCHAR, vcrt VARCHAR) |
SELECT SUM(Amount_Settled) FROM Settlements | What is the total amount of settlement made for all the settlements? | CREATE TABLE Settlements (Amount_Settled INTEGER) |
SELECT COUNT(*), building FROM classroom WHERE capacity > 50 GROUP BY building | Find the number of rooms with more than 50 capacity for each building. | CREATE TABLE classroom (building VARCHAR, capacity INTEGER) |
SELECT score FROM table_name_23 WHERE country = "united states" AND money___$__ = "73" AND player = "harry hampton" | What is the score for the United States when Harry Hampton is the player and the money is $73? | CREATE TABLE table_name_23 (score VARCHAR, player VARCHAR, country VARCHAR, money___$__ VARCHAR) |
SELECT COUNT(political_parties) FROM table_21132404_1 WHERE _percentage_2006 = "43.5" | How many political parties had a %2006 rating of 43.5? | CREATE TABLE table_21132404_1 (political_parties VARCHAR, _percentage_2006 VARCHAR) |
SELECT COUNT(us_viewers__millions_) FROM table_19925114_1 WHERE no_in_season = 8 | How many different numbers of people in the US who'd seen the episode with a season number 8 are there? | CREATE TABLE table_19925114_1 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR) |
SELECT pole_position FROM table_29690363_3 WHERE most_laps_led = "Esteban Guerrieri" AND fastest_lap = "Josef Newgarden" AND rd = "8A" | Who had the pole(s) when esteban guerrieri led the most laps round 8a and josef newgarden had the fastest lap? | CREATE TABLE table_29690363_3 (pole_position VARCHAR, rd VARCHAR, most_laps_led VARCHAR, fastest_lap VARCHAR) |
SELECT no_2 FROM table_name_66 WHERE no_3 = "jacob" AND no_10 = "wyatt" AND no_6 = "ethan" | Name the No. 2 which has a No. 3 of jacob, and a No. 10 of wyatt, and a No. 6 of ethan? | CREATE TABLE table_name_66 (no_2 VARCHAR, no_6 VARCHAR, no_3 VARCHAR, no_10 VARCHAR) |
SELECT MIN(podiums) FROM table_25375093_1 WHERE position = "9th" | Name the least podiums for 9th position | CREATE TABLE table_25375093_1 (podiums INTEGER, position VARCHAR) |
SELECT SUM(laps) FROM table_name_19 WHERE team = "mi-jack conquest racing" AND points < 11 | Name the sum of laps for mi-jack conquest racing and points less than 11 | CREATE TABLE table_name_19 (laps INTEGER, team VARCHAR, points VARCHAR) |
SELECT attendance FROM table_name_10 WHERE away_team = "solihull moors" | What was the attendance for the away team Solihull Moors? | CREATE TABLE table_name_10 (attendance VARCHAR, away_team VARCHAR) |
SELECT largest_ethnic_group__2002_ FROM table_2562572_27 WHERE cyrillic_name_other_names = "Пачир (Hungarian: Pacsér)" | What are the largest ethnic groups where the cyrillic name and other names is пачир (hungarian: pacsér)? | CREATE TABLE table_2562572_27 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR) |
SELECT score FROM table_name_23 WHERE home_team = "notts county" | What score has notts county as the home team? | CREATE TABLE table_name_23 (score VARCHAR, home_team VARCHAR) |
SELECT space_crusade FROM table_name_92 WHERE genestealers = "genrøvere (gene robbers)" | Name the space crusade which has Genestealers of genrøvere (gene robbers) | CREATE TABLE table_name_92 (space_crusade VARCHAR, genestealers VARCHAR) |
SELECT AVG(debut) FROM table_name_33 WHERE player = "radoslava topalova" AND years_played < 2 | what is the debut when the play er is radoslava topalova and the years played is less than 2? | CREATE TABLE table_name_33 (debut INTEGER, player VARCHAR, years_played VARCHAR) |
SELECT argon FROM table_name_51 WHERE neon = "10.5" | What argon has a neon of 10.5? | CREATE TABLE table_name_51 (argon VARCHAR, neon VARCHAR) |
SELECT fleet_number_s_ FROM table_name_42 WHERE quantity_made = "3" | What fleet number had 3 made? | CREATE TABLE table_name_42 (fleet_number_s_ VARCHAR, quantity_made VARCHAR) |
SELECT club_province FROM table_name_28 WHERE caps > 18 AND position = "fly-half" | What club/province for the player with over 18 caps and plays the fly-half? | CREATE TABLE table_name_28 (club_province VARCHAR, caps VARCHAR, position VARCHAR) |
SELECT date FROM table_name_52 WHERE opponent = "bye" | When was the opponent Bye? | CREATE TABLE table_name_52 (date VARCHAR, opponent VARCHAR) |
SELECT SUM(debut_year) FROM table_name_39 WHERE years_at_club = "1950–1951" AND games > 14 | How many debut years have Years at club of 1950–1951, and Games larger than 14? | CREATE TABLE table_name_39 (debut_year INTEGER, years_at_club VARCHAR, games VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.