answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT player FROM table_name_94 WHERE round > 5 AND college_junior_club_team = "leningrad ska (russia)" | Who is the player from a round larger than 5 and the college/junior/club team of Leningrad SKA (russia)? | CREATE TABLE table_name_94 (player VARCHAR, round VARCHAR, college_junior_club_team VARCHAR) |
SELECT game_site FROM table_name_90 WHERE week = 12 | Where did the Oakland Raiders play in week 12 of their 1976 season? | CREATE TABLE table_name_90 (game_site VARCHAR, week VARCHAR) |
SELECT type FROM table_11891841_2 WHERE name = "Bojan" | What is the type where the name is bojan? | CREATE TABLE table_11891841_2 (type VARCHAR, name VARCHAR) |
SELECT points_against FROM table_15607589_2 WHERE date = "November 14" | Name the points against for november 14 | CREATE TABLE table_15607589_2 (points_against VARCHAR, date VARCHAR) |
SELECT date FROM table_name_11 WHERE raiders_points = 17 | What day did the Raiders score 17? | CREATE TABLE table_name_11 (date VARCHAR, raiders_points VARCHAR) |
SELECT tournament FROM table_name_93 WHERE 2010 = "q2" AND 2009 = "1r" | What is the tournament when 2010 is q2, and 2009 is 1r? | CREATE TABLE table_name_93 (tournament VARCHAR) |
SELECT COUNT(rank) FROM table_name_93 WHERE club = "zulte waregem" AND points > 22 | Which Rank has a Club of zulte waregem, and Points larger than 22? | CREATE TABLE table_name_93 (rank VARCHAR, club VARCHAR, points VARCHAR) |
SELECT MIN(against) FROM table_name_78 WHERE venue = "twickenham , london" AND status = "six nations" AND opposing_teams = "france" | What is the lowest Against, when Venue is "Twickenham , London", when Status is "Six Nations", and when Opposing Teams is "France"? | CREATE TABLE table_name_78 (against INTEGER, opposing_teams VARCHAR, venue VARCHAR, status VARCHAR) |
SELECT part_1 FROM table_name_60 WHERE grid = "1" | Tell me the part 1 of grid of 1 | CREATE TABLE table_name_60 (part_1 VARCHAR, grid VARCHAR) |
SELECT area_km²__1998_ FROM table_11656578_2 WHERE abbreviation = "kn" | How big (in km2) is the voivodenship also known by the abbreviation KN? | CREATE TABLE table_11656578_2 (area_km²__1998_ VARCHAR, abbreviation VARCHAR) |
SELECT COUNT(*), t1.name FROM manufacturer AS t1 JOIN furniture_manufacte AS t2 ON t1.manufacturer_id = t2.manufacturer_id GROUP BY t1.manufacturer_id | Find the number of funiture types produced by each manufacturer as well as the company names. | CREATE TABLE furniture_manufacte (manufacturer_id VARCHAR); CREATE TABLE manufacturer (name VARCHAR, manufacturer_id VARCHAR) |
SELECT COUNT(campeonato_paulista) FROM table_name_72 WHERE campeonato_brasileiro > 2 AND others > 0 AND copa_sudamericana > 5 | How many Campeonato Paulistas had a campeonato brasileiro of more than 2, an others number of more than 0, and a copa sudamericana of more than 5? | CREATE TABLE table_name_72 (campeonato_paulista VARCHAR, copa_sudamericana VARCHAR, campeonato_brasileiro VARCHAR, others VARCHAR) |
SELECT winner FROM table_name_55 WHERE trofeo_fast_team = "carrera jeans-vagabond" AND stage = "5" | who is the winner when the trofeo fast team is carrera jeans-vagabond in stage 5? | CREATE TABLE table_name_55 (winner VARCHAR, trofeo_fast_team VARCHAR, stage VARCHAR) |
SELECT team_s_ FROM table_name_51 WHERE time = "3:29" | What teams used a track 3:29 long? | CREATE TABLE table_name_51 (team_s_ VARCHAR, time VARCHAR) |
SELECT date FROM table_17288825_9 WHERE team = "Memphis" | On what date did the Rockets play Memphis? | CREATE TABLE table_17288825_9 (date VARCHAR, team VARCHAR) |
SELECT district FROM table_1341598_44 WHERE incumbent = "Jack Hightower" | What district is incumbent jack hightower from? | CREATE TABLE table_1341598_44 (district VARCHAR, incumbent VARCHAR) |
SELECT tournament FROM table_name_56 WHERE surface = "carpet" AND date < 1995 AND opponent_in_the_final = "ken flach robert seguso" | Which Tournament has a Surface of carpet, and a Date smaller than 1995, and an Opponent in the final of ken flach robert seguso? | CREATE TABLE table_name_56 (tournament VARCHAR, opponent_in_the_final VARCHAR, surface VARCHAR, date VARCHAR) |
SELECT SUM(laps) FROM table_name_43 WHERE team = "gp motorsport" | How many Laps does GP Motorsport Team have? | CREATE TABLE table_name_43 (laps INTEGER, team VARCHAR) |
SELECT date FROM table_name_29 WHERE loss = "reed (0–2)" | What was the date of the game that had a loss of Reed (0–2)? | CREATE TABLE table_name_29 (date VARCHAR, loss VARCHAR) |
SELECT recipient FROM table_name_7 WHERE year < 2008 | Who was the recipient for Outstanding actress television series prior to 2008? | CREATE TABLE table_name_7 (recipient VARCHAR, year INTEGER) |
SELECT COUNT(overall) FROM table_name_63 WHERE position = "c" AND round > 9 | What is the total number of overall draft picks for player whose position is C and was picked after round 9? | CREATE TABLE table_name_63 (overall VARCHAR, position VARCHAR, round VARCHAR) |
SELECT film FROM table_name_98 WHERE award = "£3,740" | Name the film for award of £3,740 | CREATE TABLE table_name_98 (film VARCHAR, award VARCHAR) |
SELECT height FROM table_28062822_3 WHERE represent = 6 | What was the height of representative #6? | CREATE TABLE table_28062822_3 (height VARCHAR, represent VARCHAR) |
SELECT AVG(bodyweight) FROM table_name_89 WHERE snatch = 80 | what is the average bodyweight when snatch is 80? | CREATE TABLE table_name_89 (bodyweight INTEGER, snatch VARCHAR) |
SELECT COUNT(size___s_base_pair__) FROM table_140968_1 WHERE molecular_weight_kda = "102" | How many base pairs are there if the molecular weight is 102? | CREATE TABLE table_140968_1 (size___s_base_pair__ VARCHAR, molecular_weight_kda VARCHAR) |
SELECT captain FROM table_25527255_2 WHERE kit_manufacturer = "Nike" | Who is the captain of the team whose kit manufacturer is Nike? | CREATE TABLE table_25527255_2 (captain VARCHAR, kit_manufacturer VARCHAR) |
SELECT participants_recipients FROM table_26282750_1 WHERE category = "Best Female Actor" | Who was the participant or recipient for the Best Female Actor? | CREATE TABLE table_26282750_1 (participants_recipients VARCHAR, category VARCHAR) |
SELECT COUNT(conference) FROM table_24160890_3 WHERE tournament_winner = "Western Michigan" | When western michigan is the tournament winner how many conferences are there? | CREATE TABLE table_24160890_3 (conference VARCHAR, tournament_winner VARCHAR) |
SELECT surface FROM table_name_94 WHERE opponent = "roger federer" | What was the surface for the opponent Roger Federer? | CREATE TABLE table_name_94 (surface VARCHAR, opponent VARCHAR) |
SELECT SUM(points) FROM table_name_89 WHERE class = "250cc" AND rank = "13th" AND year > 1955 | What is the sum of Points for 250cc class, ranked 13th, later than 1955? | CREATE TABLE table_name_89 (points INTEGER, year VARCHAR, class VARCHAR, rank VARCHAR) |
SELECT player FROM table_name_41 WHERE years_for_rockets = "2002-03" | Which player played for the Rockets in 2002-03? | CREATE TABLE table_name_41 (player VARCHAR, years_for_rockets VARCHAR) |
SELECT host FROM table_name_12 WHERE city = "long beach" | Which university hosted in Long Beach? | CREATE TABLE table_name_12 (host VARCHAR, city VARCHAR) |
SELECT score FROM table_name_84 WHERE tie_no = "replay" AND away_team = "watford" | What was the score of the replay game when watford was the away team? | CREATE TABLE table_name_84 (score VARCHAR, tie_no VARCHAR, away_team VARCHAR) |
SELECT latin FROM table_name_80 WHERE greek = "μ" | What is the Latin term for the Greek symbol μ? | CREATE TABLE table_name_80 (latin VARCHAR, greek VARCHAR) |
SELECT MAX(no_in_season) FROM table_10701133_1 | What is the highest no. in season? | CREATE TABLE table_10701133_1 (no_in_season INTEGER) |
SELECT player FROM table_name_71 WHERE college = "cincinnati" | Who is the Cincinnati College player? | CREATE TABLE table_name_71 (player VARCHAR, college VARCHAR) |
SELECT laps FROM table_name_39 WHERE time_retired = "+1:08.491" | Tell me the Laps for time/retired of +1:08.491 | CREATE TABLE table_name_39 (laps VARCHAR, time_retired VARCHAR) |
SELECT MAX(created) FROM votes WHERE state = 'CA' | What is last date created of votes from the state 'CA'? | CREATE TABLE votes (created INTEGER, state VARCHAR) |
SELECT place FROM table_name_86 WHERE score < 71 AND country = "zimbabwe" | What is the Place when the score is less than 71, and Country is zimbabwe? | CREATE TABLE table_name_86 (place VARCHAR, score VARCHAR, country VARCHAR) |
SELECT MAX(wins) FROM table_1637041_6 WHERE starts = 22 | What is the maximum number of wins in the season with 22 starts? | CREATE TABLE table_1637041_6 (wins INTEGER, starts VARCHAR) |
SELECT partner FROM table_name_10 WHERE score_in_the_final = "2–6, 7–6, 7–6" | Who is the partner in the final with a score of 2–6, 7–6, 7–6? | CREATE TABLE table_name_10 (partner VARCHAR, score_in_the_final VARCHAR) |
SELECT customer_status_code, cell_mobile_phone_number, email_address FROM Customers WHERE first_name = "Marina" OR last_name = "Kohler" | What is the status code, mobile phone number and email address of customer with last name as Kohler or first name as Marina? | CREATE TABLE Customers (customer_status_code VARCHAR, cell_mobile_phone_number VARCHAR, email_address VARCHAR, first_name VARCHAR, last_name VARCHAR) |
SELECT opponent FROM table_name_92 WHERE result = "w 38-14" | Who was the opponent at the game with a result of W 38-14? | CREATE TABLE table_name_92 (opponent VARCHAR, result VARCHAR) |
SELECT held_every FROM table_name_97 WHERE sport = "cricket" | How often is the cricket competition held? | CREATE TABLE table_name_97 (held_every VARCHAR, sport VARCHAR) |
SELECT category FROM table_name_7 WHERE award = "2nd melon music awards" | Name the category for 2nd melon music awards | CREATE TABLE table_name_7 (category VARCHAR, award VARCHAR) |
SELECT date FROM table_name_3 WHERE result = "2–2" AND venue = "h" | Which Date has a Result of 2–2, and a Venue of H? | CREATE TABLE table_name_3 (date VARCHAR, result VARCHAR, venue VARCHAR) |
SELECT MIN(pick) FROM table_name_22 WHERE college = "ohio state" | Which Pick has a College of ohio state? | CREATE TABLE table_name_22 (pick INTEGER, college VARCHAR) |
SELECT AVG(top_10) FROM table_name_57 WHERE cuts_made = 10 AND top_25 > 6 | Name the average top-10 for cuts made of 10 and top-25 more than 6 | CREATE TABLE table_name_57 (top_10 INTEGER, cuts_made VARCHAR, top_25 VARCHAR) |
SELECT name FROM table_name_94 WHERE source = "apoelfc.com.cy" AND type = "transfer" | Which name has the source apoelfc.com.cy and a type of transfer? | CREATE TABLE table_name_94 (name VARCHAR, source VARCHAR, type VARCHAR) |
SELECT SUM(total) FROM table_name_97 WHERE year_s__won = "1993" | The golfer who won in 1993 had what total has his total? | CREATE TABLE table_name_97 (total INTEGER, year_s__won VARCHAR) |
SELECT runners_up FROM table_name_17 WHERE individual = "tiger woods" | Who were the runners-up when the individual winner was Tiger Woods? | CREATE TABLE table_name_17 (runners_up VARCHAR, individual VARCHAR) |
SELECT COUNT(total_goals) FROM table_name_52 WHERE fa_cup_apps > 0 AND position = "mf" AND league_goals = 4 | how many times is the fa cup apps more than 0, the position mf and the league goals 4? | CREATE TABLE table_name_52 (total_goals VARCHAR, league_goals VARCHAR, fa_cup_apps VARCHAR, position VARCHAR) |
SELECT open_cup FROM table_1939214_1 WHERE league = "USISL D-3 Pro league" AND regular_season = "2nd, Northeast" | What did the team do in the Open Cup in the 2nd, Northeast season of the USISL D-3 Pro League? | CREATE TABLE table_1939214_1 (open_cup VARCHAR, league VARCHAR, regular_season VARCHAR) |
SELECT last_title FROM table_name_11 WHERE club = "newell's old boys" | Name the last time for club of newell's old boys | CREATE TABLE table_name_11 (last_title VARCHAR, club VARCHAR) |
SELECT AVG(original_week) FROM table_name_18 WHERE venue = "soldier field" | Tell me the average original week for soldier field | CREATE TABLE table_name_18 (original_week INTEGER, venue VARCHAR) |
SELECT film_title_used_in_nomination FROM table_13719788_1 WHERE original_title = "Biola tak berdawai" | What title was used in the nomination for the title Biola Tak Berdawai? | CREATE TABLE table_13719788_1 (film_title_used_in_nomination VARCHAR, original_title VARCHAR) |
SELECT COUNT(week) FROM table_name_12 WHERE kickoff_time = "cbs 1:00pm" AND attendance = "60,473" | What week number was the kickoff time cbs 1:00pm, with 60,473 people in attendance? | CREATE TABLE table_name_12 (week VARCHAR, kickoff_time VARCHAR, attendance VARCHAR) |
SELECT result FROM table_name_95 WHERE week = 15 | What was the result of the game that was played on week 15? | CREATE TABLE table_name_95 (result VARCHAR, week VARCHAR) |
SELECT opponent_in_final FROM table_name_88 WHERE date = "may 22, 2006" | Who is the opponent in the final of the tournament on May 22, 2006? | CREATE TABLE table_name_88 (opponent_in_final VARCHAR, date VARCHAR) |
SELECT series FROM table_name_90 WHERE site = "ames" AND date = "september 10, 2005" | Which Series has a Site of ames on september 10, 2005? | CREATE TABLE table_name_90 (series VARCHAR, site VARCHAR, date VARCHAR) |
SELECT to_par FROM table_name_26 WHERE place = "t10" AND score = 72 - 74 - 71 - 69 = 286 | what is the to par when the place is t10 and the score is 72-74-71-69=286? | CREATE TABLE table_name_26 (to_par VARCHAR, place VARCHAR, score VARCHAR) |
SELECT MIN(rank) FROM table_name_21 WHERE bronze > 3 AND total > 36 | What is the lowest rank for nations with more than 3 bronze medals and more than 36 total medals? | CREATE TABLE table_name_21 (rank INTEGER, bronze VARCHAR, total VARCHAR) |
SELECT AVG(year) FROM table_name_37 WHERE engine = "cosworth v8" | What year did the Cosworth v8 engine participate in? | CREATE TABLE table_name_37 (year INTEGER, engine VARCHAR) |
SELECT arrival FROM table_14688744_2 WHERE station_code = "AWY" | what is the arrival time where the station code is awy? | CREATE TABLE table_14688744_2 (arrival VARCHAR, station_code VARCHAR) |
SELECT MIN(heat) FROM table_name_9 WHERE lane = 4 AND nationality = "canada" | Who was the 4 lane person from Canada? | CREATE TABLE table_name_9 (heat INTEGER, lane VARCHAR, nationality VARCHAR) |
SELECT time FROM table_name_85 WHERE event = "gcm: demolition 1" | What is Time, when Event is "GCM: Demolition 1"? | CREATE TABLE table_name_85 (time VARCHAR, event VARCHAR) |
SELECT class___type FROM table_name_32 WHERE location = "trieste" | What is the class/type at Trieste? | CREATE TABLE table_name_32 (class___type VARCHAR, location VARCHAR) |
SELECT song_name, releasedate FROM song ORDER BY releasedate DESC LIMIT 1 | What is the name of the song that was released in the most recent year? | CREATE TABLE song (song_name VARCHAR, releasedate VARCHAR) |
SELECT away_team FROM table_24949975_1 WHERE result = "2–1" AND home_team = "Bohemians" | What was the away team when the result was 2–1 and home team was the bohemians? | CREATE TABLE table_24949975_1 (away_team VARCHAR, result VARCHAR, home_team VARCHAR) |
SELECT doubles_w_l FROM table_name_91 WHERE player = "laurynas grigelis" | Tell me the doubles W-L for player of laurynas grigelis | CREATE TABLE table_name_91 (doubles_w_l VARCHAR, player VARCHAR) |
SELECT broadcast_date FROM table_1785117_1 WHERE run_time = "25:12" | What is the broadcast date of the episode with run time 25:12? | CREATE TABLE table_1785117_1 (broadcast_date VARCHAR, run_time VARCHAR) |
SELECT AVG(number) FROM table_name_54 WHERE pieces < 511 AND name = "chauchilla cemetery battle" | What is the number for Chauchilla Cemetery Battle with less than 511 pieces? | CREATE TABLE table_name_54 (number INTEGER, pieces VARCHAR, name VARCHAR) |
SELECT difference FROM table_name_53 WHERE position = 5 | What is the goal Difference at Position 5? | CREATE TABLE table_name_53 (difference VARCHAR, position VARCHAR) |
SELECT record FROM table_name_2 WHERE high_points = "thaddeus young (19)" AND team = "@ orlando" | What is Record, when High Points is "Thaddeus Young (19)", and when Team is "@ Orlando"? | CREATE TABLE table_name_2 (record VARCHAR, high_points VARCHAR, team VARCHAR) |
SELECT date FROM table_name_87 WHERE home = "hartford" | What was the date of the home game for Hartford? | CREATE TABLE table_name_87 (date VARCHAR, home VARCHAR) |
SELECT method FROM table_name_1 WHERE record = "4-2" | Tell me the method with a record of 4-2 | CREATE TABLE table_name_1 (method VARCHAR, record VARCHAR) |
SELECT name FROM table_name_39 WHERE transfer_fee = "dkk 6m" | Who had a transfer fee of dkk 6m? | CREATE TABLE table_name_39 (name VARCHAR, transfer_fee VARCHAR) |
SELECT recipient FROM table_name_77 WHERE play = "much ado about nothing" AND year = 1973 | Name the recipient of much ado about nothing for 1973 | CREATE TABLE table_name_77 (recipient VARCHAR, play VARCHAR, year VARCHAR) |
SELECT home_team AS score FROM table_name_28 WHERE away_team = "collingwood" | What did the home team score against the away team collingwood? | CREATE TABLE table_name_28 (home_team VARCHAR, away_team VARCHAR) |
SELECT original_air_date FROM table_22815870_1 WHERE prod_code = 105 | What is the original air date of the episode with a production code of 105? | CREATE TABLE table_22815870_1 (original_air_date VARCHAR, prod_code VARCHAR) |
SELECT MAX(year) FROM table_name_69 WHERE points > 27 AND wins > 5 | When is the most recent year with more than 27 points and more than 5 wins? | CREATE TABLE table_name_69 (year INTEGER, points VARCHAR, wins VARCHAR) |
SELECT rank FROM table_name_34 WHERE name = "petria thomas" | What is the rank of the swimmer named Petria Thomas? | CREATE TABLE table_name_34 (rank VARCHAR, name VARCHAR) |
SELECT college FROM table_name_57 WHERE position = "halfback" | What is the College of the Halfback Player? | CREATE TABLE table_name_57 (college VARCHAR, position VARCHAR) |
SELECT COUNT(pommel_horse) FROM table_name_65 WHERE rank > 16 AND vault = 9.475 | Name the total number of pommel horses for vault of 9.475 and rank more than 16 | CREATE TABLE table_name_65 (pommel_horse VARCHAR, rank VARCHAR, vault VARCHAR) |
SELECT COUNT(production_number) FROM table_name_76 WHERE title = "pre-hysterical hare" | What was the production number of the episode titel of pre-hysterical hare? | CREATE TABLE table_name_76 (production_number VARCHAR, title VARCHAR) |
SELECT prize_fund___¥__ FROM table_26144632_1 WHERE location = "Ibaraki" | What is the prize for the tournament at Ibaraki? | CREATE TABLE table_26144632_1 (prize_fund___¥__ VARCHAR, location VARCHAR) |
SELECT date FROM table_name_24 WHERE venue = "windy hill" | On what date did the game at Windy Hill take place? | CREATE TABLE table_name_24 (date VARCHAR, venue VARCHAR) |
SELECT pada_3 FROM table_name_27 WHERE pada_2 = "चे che" | which Pada 3 has a Pada 2 of चे che? | CREATE TABLE table_name_27 (pada_3 VARCHAR, pada_2 VARCHAR) |
SELECT SUM(grid) FROM table_name_46 WHERE rider = "shinichi nakatomi" | How many grids did Shinichi Nakatomi ride in? | CREATE TABLE table_name_46 (grid INTEGER, rider VARCHAR) |
SELECT site FROM table_name_67 WHERE opponent_number = "northwestern" | At which site was Northwestern an opponent? | CREATE TABLE table_name_67 (site VARCHAR, opponent_number VARCHAR) |
SELECT transfer_fee FROM table_name_41 WHERE source = "fcbarcelona.cat" AND country = "fra" AND name = "henry" | What is henry transfer fee at fcbarcelona.cat in fra? | CREATE TABLE table_name_41 (transfer_fee VARCHAR, name VARCHAR, source VARCHAR, country VARCHAR) |
SELECT circuit FROM table_19886463_1 WHERE format = "Two heats" | Which circuit has two heats as the format? | CREATE TABLE table_19886463_1 (circuit VARCHAR, format VARCHAR) |
SELECT date FROM table_name_68 WHERE week > 7 AND record = "9–1" | What is the Date for a week higher than 7 with a record of 9–1? | CREATE TABLE table_name_68 (date VARCHAR, week VARCHAR, record VARCHAR) |
SELECT venue FROM table_name_89 WHERE status = "five nations" AND against = 0 | What Venue has a Status of five nations, and Against of 0? | CREATE TABLE table_name_89 (venue VARCHAR, status VARCHAR, against VARCHAR) |
SELECT MIN(field_goals) FROM table_24912693_4 WHERE rebounds = 84 | How many field goals does the player with 84 rebounds have? | CREATE TABLE table_24912693_4 (field_goals INTEGER, rebounds VARCHAR) |
SELECT SUM(average) FROM table_name_86 WHERE swimsuit < 9.32 | What is the average of the contestant with a swimsuit less than 9.32? | CREATE TABLE table_name_86 (average INTEGER, swimsuit INTEGER) |
SELECT points FROM table_name_4 WHERE score = "3–3" AND date = "november 11" | Which Points have a Score of 3–3, and a Date of november 11? | CREATE TABLE table_name_4 (points VARCHAR, score VARCHAR, date VARCHAR) |
SELECT SUM(bronze) FROM table_name_25 WHERE total > 5 | How many bronzes were won by the country with a total higher than 5? | CREATE TABLE table_name_25 (bronze INTEGER, total INTEGER) |
SELECT COUNT(material_collected) FROM table_19534677_1 WHERE volume_title = "Justice League of America by George Pérez, Vol. 2" | Name the total number of material collected for justice league of america by george pérez, vol. 2 | CREATE TABLE table_19534677_1 (material_collected VARCHAR, volume_title VARCHAR) |
SELECT score FROM table_name_85 WHERE third_place = "henri leconte" AND runner_up = "michael stich" | Name the score for henri leconte and runner-up of michael stich | CREATE TABLE table_name_85 (score VARCHAR, third_place VARCHAR, runner_up VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.