answer
stringlengths 18
557
| question
stringlengths 12
244
| context
stringlengths 27
489
|
|---|---|---|
SELECT MAX(gold_medals) FROM table_1305623_12 WHERE ensemble = "Choctawhatchee High School"
|
How many gold medals does the Choctawhatchee High School have?
|
CREATE TABLE table_1305623_12 (gold_medals INTEGER, ensemble VARCHAR)
|
SELECT amiga_demo FROM table_2490289_1 WHERE pc_demo = "Alto Knallo (Free Electric Band)"
|
What won best amiga demo when alto knallo (free electric band) won best pc demo?
|
CREATE TABLE table_2490289_1 (amiga_demo VARCHAR, pc_demo VARCHAR)
|
SELECT city FROM table_name_18 WHERE prize = "$146,000"
|
What is City, when Prize is "$146,000"?
|
CREATE TABLE table_name_18 (city VARCHAR, prize VARCHAR)
|
SELECT score FROM table_name_41 WHERE home = "dallas" AND visitor = "edmonton"
|
What was the score from the game where Dallas played Home and Edmonton was visiting?
|
CREATE TABLE table_name_41 (score VARCHAR, home VARCHAR, visitor VARCHAR)
|
SELECT AVG(round) FROM table_name_23 WHERE overall = "138"
|
What is the average round of a player with an overall of 138?
|
CREATE TABLE table_name_23 (round INTEGER, overall VARCHAR)
|
SELECT viewers__millions_ FROM table_27927185_1 WHERE episode__number < 2.0
|
How many million viewers watched episodes prior to episode 2.0?
|
CREATE TABLE table_27927185_1 (viewers__millions_ VARCHAR, episode__number INTEGER)
|
SELECT to_par FROM table_name_52 WHERE winning_score = 71 - 66 - 70 - 67 = 274
|
What is the To Par of winning score 71-66-70-67=274?
|
CREATE TABLE table_name_52 (to_par VARCHAR, winning_score VARCHAR)
|
SELECT home_team AS score FROM table_name_43 WHERE away_team = "carlton"
|
What was the home team score when the away team was Carlton?
|
CREATE TABLE table_name_43 (home_team VARCHAR, away_team VARCHAR)
|
SELECT mar_3 FROM table_name_35 WHERE poll = "baseball america (top 25)"
|
Which March 3 has a Poll of baseball america (top 25)?
|
CREATE TABLE table_name_35 (mar_3 VARCHAR, poll VARCHAR)
|
SELECT runner_s__up FROM table_name_74 WHERE winning_score = −16(66 - 68 - 70 - 68 = 272)
|
Who were the Runner(s)-up with the winning score of −16 (66-68-70-68=272)?
|
CREATE TABLE table_name_74 (runner_s__up VARCHAR, winning_score VARCHAR)
|
SELECT written_by FROM table_28210383_1 WHERE prod_code = "2ACX12"
|
Who wrote the episode with production code 2acx12?
|
CREATE TABLE table_28210383_1 (written_by VARCHAR, prod_code VARCHAR)
|
SELECT age_as_of_1_february_2014 FROM table_name_18 WHERE name = "dorothy peel"
|
What is the Age of dorothy Peel as of 1 February 2014 ?
|
CREATE TABLE table_name_18 (age_as_of_1_february_2014 VARCHAR, name VARCHAR)
|
SELECT team FROM table_name_12 WHERE sponsor = "motorola"
|
what is the sponsor of motorola
|
CREATE TABLE table_name_12 (team VARCHAR, sponsor VARCHAR)
|
SELECT home_team FROM table_name_97 WHERE away_team = "southampton"
|
In the tie where Southampton was the away team, who was the home team?
|
CREATE TABLE table_name_97 (home_team VARCHAR, away_team VARCHAR)
|
SELECT spanish_voice_actor FROM table_name_36 WHERE french_voice_actor = "véronique desmadryl"
|
Which Spanish voice actor does the same character as French voice actor Véronique Desmadryl?
|
CREATE TABLE table_name_36 (spanish_voice_actor VARCHAR, french_voice_actor VARCHAR)
|
SELECT region FROM table_name_27 WHERE catalog = "vlmx 1087-3"
|
What is the Region with a Catalog that is vlmx 1087-3?
|
CREATE TABLE table_name_27 (region VARCHAR, catalog VARCHAR)
|
SELECT MAX(game) FROM table_name_78 WHERE time = "2:44"
|
What is the highest game number that had a time of 2:44?
|
CREATE TABLE table_name_78 (game INTEGER, time VARCHAR)
|
SELECT MAX(geo_id) FROM table_18600760_10 WHERE county = "Logan"
|
What is the geo id for Logan county?
|
CREATE TABLE table_18600760_10 (geo_id INTEGER, county VARCHAR)
|
SELECT SUM(draws) FROM table_name_55 WHERE losses = 1
|
How many draws with 1 loss?
|
CREATE TABLE table_name_55 (draws INTEGER, losses VARCHAR)
|
SELECT year__ceremony_ FROM table_22032599_1 WHERE director = "Jaroslav Vojtek Category:Articles with hCards"
|
What year did jaroslav vojtek category:articles with hcards Direct?
|
CREATE TABLE table_22032599_1 (year__ceremony_ VARCHAR, director VARCHAR)
|
SELECT to_par FROM table_name_76 WHERE player = "sandy lyle"
|
What is Sandy Lyle's To Par?
|
CREATE TABLE table_name_76 (to_par VARCHAR, player VARCHAR)
|
SELECT title FROM table_name_83 WHERE type = "ep" AND year > 2003
|
Which Title has a Type of ep and a Year larger than 2003?
|
CREATE TABLE table_name_83 (title VARCHAR, type VARCHAR, year VARCHAR)
|
SELECT engine_type FROM table_name_77 WHERE length = "ft (m)" AND year = "2003" AND numbers = "6600-6684 (84 buses)"
|
If length is ft (m) with numbers of 6600-6684 (84 buses) for 2003, what is the engine type?
|
CREATE TABLE table_name_77 (engine_type VARCHAR, numbers VARCHAR, length VARCHAR, year VARCHAR)
|
SELECT co_drivers FROM table_name_59 WHERE team = "toyota racing" AND year > 2012
|
Who was the co-driver for Toyota Racing after the year 2012?
|
CREATE TABLE table_name_59 (co_drivers VARCHAR, team VARCHAR, year VARCHAR)
|
SELECT league FROM table_name_86 WHERE regular_season = "3rd, atlantic"
|
Name the League which has a Regular Season of 3rd, atlantic?
|
CREATE TABLE table_name_86 (league VARCHAR, regular_season VARCHAR)
|
SELECT prohibition_ticket FROM table_name_34 WHERE socialist_labor_ticket = "joseph smith"
|
Which Prohibition ticket has a Socialist Labor ticket of joseph smith?
|
CREATE TABLE table_name_34 (prohibition_ticket VARCHAR, socialist_labor_ticket VARCHAR)
|
SELECT MAX(rank) FROM table_name_59 WHERE time = "1:05.14.10"
|
What is the best rank with a time of 1:05.14.10?
|
CREATE TABLE table_name_59 (rank INTEGER, time VARCHAR)
|
SELECT record FROM table_name_55 WHERE loss = "blyleven (4-5)"
|
What was the record at the game that had a loss of Blyleven (4-5)?
|
CREATE TABLE table_name_55 (record VARCHAR, loss VARCHAR)
|
SELECT t1.product_name, COUNT(*) FROM products AS t1 JOIN complaints AS t2 ON t1.product_id = t2.product_id GROUP BY t1.product_name
|
List the name of all products along with the number of complaints that they have received.
|
CREATE TABLE products (product_name VARCHAR, product_id VARCHAR); CREATE TABLE complaints (product_id VARCHAR)
|
SELECT COUNT(rank) FROM table_name_41 WHERE time = 49 AND lane > 7
|
What is the Rank of the swimmer with a Time of 49 in Lane 7 or larger?
|
CREATE TABLE table_name_41 (rank VARCHAR, time VARCHAR, lane VARCHAR)
|
SELECT tries_for FROM table_name_47 WHERE losing_bonus = "losing bonus"
|
what is the tries fow when losing bonus is losing bonus?
|
CREATE TABLE table_name_47 (tries_for VARCHAR, losing_bonus VARCHAR)
|
SELECT gvw__kg_ton_ FROM table_20866024_4 WHERE model_designation = "97H00"
|
What is the GVW for model 97H00?
|
CREATE TABLE table_20866024_4 (gvw__kg_ton_ VARCHAR, model_designation VARCHAR)
|
SELECT MIN(area__km_2__) FROM table_28741_1 WHERE capital = "Nay Pyi Taw"
|
How few km 2 does the area with Nay Pyi Taw as capital cover?
|
CREATE TABLE table_28741_1 (area__km_2__ INTEGER, capital VARCHAR)
|
SELECT range__m_ FROM table_21538523_1 WHERE type = "FJ/PB/SCP"
|
What range does type FJ/PB/SCP work at?
|
CREATE TABLE table_21538523_1 (range__m_ VARCHAR, type VARCHAR)
|
SELECT SUM(year) FROM table_name_26 WHERE position = "center" AND player = "ann wauters"
|
What year is center Ann Wauters?
|
CREATE TABLE table_name_26 (year INTEGER, position VARCHAR, player VARCHAR)
|
SELECT SUM(distance) FROM table_name_87 WHERE notes = "north end terminus of ar 155"
|
How much Distance has Notes of north end terminus of ar 155?
|
CREATE TABLE table_name_87 (distance INTEGER, notes VARCHAR)
|
SELECT opponent_in_the_final FROM table_name_62 WHERE score_in_the_final = "6–2, 6–3, 2–6, 7–5"
|
Which Opponent in the final has a Score in the final of 6–2, 6–3, 2–6, 7–5?
|
CREATE TABLE table_name_62 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR)
|
SELECT ordained_bishop FROM table_name_80 WHERE born = "february 10, 1858"
|
When was the archbishop that was born on February 10, 1858 ordained a bishop?
|
CREATE TABLE table_name_80 (ordained_bishop VARCHAR, born VARCHAR)
|
SELECT high_assists FROM table_23285761_11 WHERE date = "April 26"
|
Who has the high assists when April 26 is the date?
|
CREATE TABLE table_23285761_11 (high_assists VARCHAR, date VARCHAR)
|
SELECT team FROM table_name_92 WHERE replaced_by = "jesús ramírez"
|
What is Team, when Replaced By is "Jesús Ramírez"?
|
CREATE TABLE table_name_92 (team VARCHAR, replaced_by VARCHAR)
|
SELECT partially_deleted FROM table_name_67 WHERE cerclis_id = "az7570028582"
|
when was the site partially deleted when the cerclis id is az7570028582?
|
CREATE TABLE table_name_67 (partially_deleted VARCHAR, cerclis_id VARCHAR)
|
SELECT score FROM table_name_93 WHERE visitor = "edmonton"
|
What is the score of the game that had a visiting team of Edmonton?
|
CREATE TABLE table_name_93 (score VARCHAR, visitor VARCHAR)
|
SELECT MIN(goals_for) FROM table_name_65 WHERE team = "goole town" AND position < 9
|
W hat was the lowest Goals For when they played Team Goole Town and had a position lower than 9?
|
CREATE TABLE table_name_65 (goals_for INTEGER, team VARCHAR, position VARCHAR)
|
SELECT COUNT(type) FROM table_2562572_43 WHERE cyrillic_name_other_names = "Падина (Slovak: Padina)"
|
How many entries are there for type for the cyrillic name other names is падина (slovak: padina)?
|
CREATE TABLE table_2562572_43 (type VARCHAR, cyrillic_name_other_names VARCHAR)
|
SELECT date FROM table_name_71 WHERE score = "7-1"
|
When was there a score of 7-1?
|
CREATE TABLE table_name_71 (date VARCHAR, score VARCHAR)
|
SELECT COUNT(total_number_of_students) FROM table_142950_1 WHERE vice_chancellor = "Professor Edward Acton"
|
How many members have professor edward acton as vice-chancellor?
|
CREATE TABLE table_142950_1 (total_number_of_students VARCHAR, vice_chancellor VARCHAR)
|
SELECT MIN(total) FROM table_name_50 WHERE nanquan = 9.72 AND rank > 3 AND nangun < 9.5
|
WHAT IS THE TOTAL WITH A NANQUAN OF 9.72, RANK BIGGER THAN 3, NANGUN SMALLER THAN 9.5?
|
CREATE TABLE table_name_50 (total INTEGER, nangun VARCHAR, nanquan VARCHAR, rank VARCHAR)
|
SELECT score FROM table_name_42 WHERE team = "charlotte"
|
What was the score of the game against Charlotte?
|
CREATE TABLE table_name_42 (score VARCHAR, team VARCHAR)
|
SELECT founded FROM table_22171978_1 WHERE institution = "Ateneo de Manila University"
|
What year was the ateneo de manila university founded?
|
CREATE TABLE table_22171978_1 (founded VARCHAR, institution VARCHAR)
|
SELECT COUNT(date) FROM table_13259019_2 WHERE game_site = "Oakland-Alameda County Coliseum"
|
How many times did the team play at oakland-alameda county coliseum?
|
CREATE TABLE table_13259019_2 (date VARCHAR, game_site VARCHAR)
|
SELECT driver FROM table_15530244_5 WHERE race_2 = "2"
|
Name the driver for race 2 2
|
CREATE TABLE table_15530244_5 (driver VARCHAR, race_2 VARCHAR)
|
SELECT date FROM table_name_89 WHERE home_team = "richmond"
|
When did the home team of Richmond play?
|
CREATE TABLE table_name_89 (date VARCHAR, home_team VARCHAR)
|
SELECT MIN(year) FROM table_name_3 WHERE surface = "hard" AND opponent = "dinara safina"
|
What is the lowest Year, when Surface is Hard, and when Opponent is Dinara Safina?
|
CREATE TABLE table_name_3 (year INTEGER, surface VARCHAR, opponent VARCHAR)
|
SELECT locomotive FROM table_name_74 WHERE gauge = "standard" AND serial_no = "83-1015"
|
What is the locomotive with a standard gauge and a serial number of 83-1015?
|
CREATE TABLE table_name_74 (locomotive VARCHAR, gauge VARCHAR, serial_no VARCHAR)
|
SELECT lead_envoy FROM table_name_62 WHERE ryūkyūan_king = "shō eki"
|
Who was the lead envoy of the mission with the Ryūkyūan King shō eki?
|
CREATE TABLE table_name_62 (lead_envoy VARCHAR, ryūkyūan_king VARCHAR)
|
SELECT rounds FROM table_name_17 WHERE engine_† = "mercedes fo110m"
|
what is the rounds when the engine is mercedes fo110m?
|
CREATE TABLE table_name_17 (rounds VARCHAR, engine_† VARCHAR)
|
SELECT winner FROM table_11622562_1 WHERE tournament = "PaineWebber Invitational"
|
What's the winner of the Painewebber Invitational tournament?
|
CREATE TABLE table_11622562_1 (winner VARCHAR, tournament VARCHAR)
|
SELECT second_member FROM table_name_70 WHERE second_party = "liberal" AND third_party = "conservative" AND election > 1841
|
Who is the second member for the Second Party Liberal, and the Third Party Conservative, after the 1841 election?
|
CREATE TABLE table_name_70 (second_member VARCHAR, election VARCHAR, second_party VARCHAR, third_party VARCHAR)
|
SELECT SUM(term_expiration) FROM table_name_22 WHERE appointing_governor = "george pataki, republican" AND appointed > 2004
|
Which Term expiration has an Appointing Governor of george pataki, republican, and an Appointed larger than 2004?
|
CREATE TABLE table_name_22 (term_expiration INTEGER, appointing_governor VARCHAR, appointed VARCHAR)
|
SELECT date FROM table_name_34 WHERE kickoff_[a_] = "4:00" AND opponent = "detroit lions"
|
Which date has a Kickoff [a] of 4:00, and an Opponent of detroit lions?
|
CREATE TABLE table_name_34 (date VARCHAR, opponent VARCHAR, kickoff_ VARCHAR, a_ VARCHAR)
|
SELECT event FROM table_name_96 WHERE year < 2001 AND result = "16th"
|
In which event before 2001 did the athlete place 16th?
|
CREATE TABLE table_name_96 (event VARCHAR, year VARCHAR, result VARCHAR)
|
SELECT musical_guest_song_performed FROM table_name_99 WHERE pilot = "3"
|
What is the Musical Guest/Song with a pilot of 3?
|
CREATE TABLE table_name_99 (musical_guest_song_performed VARCHAR, pilot VARCHAR)
|
SELECT locomotive FROM table_name_2 WHERE delivered_as = "t414"
|
What Locomotive was Delivered as T414?
|
CREATE TABLE table_name_2 (locomotive VARCHAR, delivered_as VARCHAR)
|
SELECT player FROM table_name_90 WHERE total_goals > 1 AND qualifying_goals < 3
|
Which Player has a Total Goals greater than 1 and Qualifying Goals smaller than 3?
|
CREATE TABLE table_name_90 (player VARCHAR, total_goals VARCHAR, qualifying_goals VARCHAR)
|
SELECT gdp__ppp__$m_usd FROM table_name_26 WHERE area__km²_ = "116"
|
How much is the GDP for an area of 116?
|
CREATE TABLE table_name_26 (gdp__ppp__$m_usd VARCHAR, area__km²_ VARCHAR)
|
SELECT MAX(varsity_teams) FROM table_2439728_1 WHERE location = "West Roxbury, MA"
|
how many varsity teams are in west roxbury, ma?
|
CREATE TABLE table_2439728_1 (varsity_teams INTEGER, location VARCHAR)
|
SELECT schwante FROM table_11680175_1 WHERE bärenklau = "1.270"
|
What was the number for Schwante where Bärenklau is 1.270?
|
CREATE TABLE table_11680175_1 (schwante VARCHAR, bärenklau VARCHAR)
|
SELECT vacator FROM table_2159571_1 WHERE date_of_successors_formal_installation = "August 8, 1960"
|
Who is every vacator if date of successors formal installation is August 8, 1960?
|
CREATE TABLE table_2159571_1 (vacator VARCHAR, date_of_successors_formal_installation VARCHAR)
|
SELECT competition FROM table_name_75 WHERE notes = "400 m hurdles" AND year < 2004 AND venue = "johannesburg, south africa"
|
Prior to 2004, what was the name of the competition that took place in Johannesburg, South Africa and had the 400 m hurdles event?
|
CREATE TABLE table_name_75 (competition VARCHAR, venue VARCHAR, notes VARCHAR, year VARCHAR)
|
SELECT away_team FROM table_name_68 WHERE attendance = "3,395"
|
What Away team had an Attendance of 3,395?
|
CREATE TABLE table_name_68 (away_team VARCHAR, attendance VARCHAR)
|
SELECT MIN(shot_pct) FROM table_name_1 WHERE ends_won > 29 AND ends_lost < 26
|
What is the smallest shot % with ends won larger than 29 and ends lost smaller than 26?
|
CREATE TABLE table_name_1 (shot_pct INTEGER, ends_won VARCHAR, ends_lost VARCHAR)
|
SELECT segment_a FROM table_name_57 WHERE segment_d = "kitchen shears"
|
Which segment A also has a segment D of kitchen shears?
|
CREATE TABLE table_name_57 (segment_a VARCHAR, segment_d VARCHAR)
|
SELECT first_store FROM table_name_20 WHERE country = "india"
|
What year was the first store in India?
|
CREATE TABLE table_name_20 (first_store VARCHAR, country VARCHAR)
|
SELECT MIN(time) FROM table_name_45 WHERE athlete = "muna lee"
|
What is the athlete muna lee lowest time?
|
CREATE TABLE table_name_45 (time INTEGER, athlete VARCHAR)
|
SELECT home_team FROM table_name_66 WHERE venue = "lake oval"
|
Who was the home team at Lake Oval?
|
CREATE TABLE table_name_66 (home_team VARCHAR, venue VARCHAR)
|
SELECT callback_audition_date FROM table_27455867_1 WHERE episode_air_date = "February 9, 2011"
|
When were the callback auditions for the audition city in the episode aired on February 9, 2011?
|
CREATE TABLE table_27455867_1 (callback_audition_date VARCHAR, episode_air_date VARCHAR)
|
SELECT series FROM table_name_55 WHERE date = "may 6"
|
What is the series score of the game on May 6?
|
CREATE TABLE table_name_55 (series VARCHAR, date VARCHAR)
|
SELECT SUM(gold) FROM table_name_51 WHERE silver < 3 AND rank = "10" AND total > 1
|
What is the sum of gold medals won by teams that won fewer than 3 silver medals, more than 1 total medal, and rank 10?
|
CREATE TABLE table_name_51 (gold INTEGER, total VARCHAR, silver VARCHAR, rank VARCHAR)
|
SELECT platform FROM table WHERE weight = "131.5g"
|
What is the platform if the weight is 131.5g?
|
CREATE TABLE table (platform VARCHAR, weight VARCHAR)
|
SELECT opponent FROM table_name_19 WHERE record = "6-2"
|
Name the opponent with record of 6-2
|
CREATE TABLE table_name_19 (opponent VARCHAR, record VARCHAR)
|
SELECT driver FROM table_name_25 WHERE entrant = "arrows racing team" AND rounds = "1-3"
|
Which Driver has an Entrant of Arrows Racing Team and Rounds 1-3?
|
CREATE TABLE table_name_25 (driver VARCHAR, entrant VARCHAR, rounds VARCHAR)
|
SELECT game FROM table_name_94 WHERE date = "april 26"
|
What is the playoffs Game number on April 26?
|
CREATE TABLE table_name_94 (game VARCHAR, date VARCHAR)
|
SELECT entrant FROM table_name_23 WHERE year < 1965 AND points > 0 AND chassis = "lotus 25"
|
Which entrant before 1965 scored more than 0 point with the lotus 25 chassis?
|
CREATE TABLE table_name_23 (entrant VARCHAR, chassis VARCHAR, year VARCHAR, points VARCHAR)
|
SELECT construction_start FROM table_name_99 WHERE design_flow__lpm_ = 1300
|
What Construction Start has a Design flow (LPM) of 1300?
|
CREATE TABLE table_name_99 (construction_start VARCHAR, design_flow__lpm_ VARCHAR)
|
SELECT no_in_series FROM table_23528223_2 WHERE directed_by = "Skipp Sudduth"
|
What's the series number of the episode directed by Skipp Sudduth?
|
CREATE TABLE table_23528223_2 (no_in_series VARCHAR, directed_by VARCHAR)
|
SELECT time FROM table_name_35 WHERE lane = 8
|
Can you tell me the Time that has the Lane of 8?
|
CREATE TABLE table_name_35 (time VARCHAR, lane VARCHAR)
|
SELECT catalogue FROM table_name_48 WHERE date = "october 15, 2004"
|
Name the october 15, 2004 catalogue
|
CREATE TABLE table_name_48 (catalogue VARCHAR, date VARCHAR)
|
SELECT arena FROM table_name_79 WHERE opponent = "@ oilers" AND date = "may 25"
|
Which Arena has an Opponent of @ oilers, and a Date of may 25?
|
CREATE TABLE table_name_79 (arena VARCHAR, opponent VARCHAR, date VARCHAR)
|
SELECT position FROM table_14038363_1 WHERE player = "Roman Bragin"
|
What is Roman Bragin's position?
|
CREATE TABLE table_14038363_1 (position VARCHAR, player VARCHAR)
|
SELECT location FROM table_name_42 WHERE aircraft = "f-27-600rf" AND tail_number = "6o-saz"
|
What was the location that had an accident by the F-27-600RF aircraft with tail number 6O-SAZ?
|
CREATE TABLE table_name_42 (location VARCHAR, aircraft VARCHAR, tail_number VARCHAR)
|
SELECT protein_name FROM table_name_2 WHERE sequence_identity_to_human_protein = "32%"
|
What is the protein name of the protein with a sequence identity to human protein of 32%?
|
CREATE TABLE table_name_2 (protein_name VARCHAR, sequence_identity_to_human_protein VARCHAR)
|
SELECT opponent FROM table_10361453_2 WHERE record = "9-4"
|
The record of 9-4 was against which opponent?
|
CREATE TABLE table_10361453_2 (opponent VARCHAR, record VARCHAR)
|
SELECT SUM(credits), dept_name FROM course GROUP BY dept_name
|
Find the total credits of courses provided by different department.
|
CREATE TABLE course (dept_name VARCHAR, credits INTEGER)
|
SELECT COUNT(laps) FROM table_name_22 WHERE manufacturer = "ktm" AND time_retired = "+3.578" AND grid > 4
|
What is total number of laps for bikes manufactured by KTM with a time of +3.578 and a grid number larger than 4?
|
CREATE TABLE table_name_22 (laps VARCHAR, grid VARCHAR, manufacturer VARCHAR, time_retired VARCHAR)
|
SELECT format FROM table_name_53 WHERE date = "february 14, 2002"
|
What is the format of the date February 14, 2002?
|
CREATE TABLE table_name_53 (format VARCHAR, date VARCHAR)
|
SELECT college FROM table_name_47 WHERE team = "denver broncos"
|
What is the College of the Pick from Denver Broncos?
|
CREATE TABLE table_name_47 (college VARCHAR, team VARCHAR)
|
SELECT circuit FROM table_name_64 WHERE team = "peter jackson racing" AND series = "atcc round 4"
|
What was the circuit for Team Peter Jackson Racing in the ATCC Round 4 series?
|
CREATE TABLE table_name_64 (circuit VARCHAR, team VARCHAR, series VARCHAR)
|
SELECT name FROM table_name_78 WHERE moving_from = "manchester united"
|
What player was moving from manchester united?
|
CREATE TABLE table_name_78 (name VARCHAR, moving_from VARCHAR)
|
SELECT COUNT(rebounds) FROM table_name_89 WHERE name = "ann wauters"
|
How many rebounds does Ann Wauters have?
|
CREATE TABLE table_name_89 (rebounds VARCHAR, name VARCHAR)
|
SELECT career_sr FROM table_name_66 WHERE 1996 = "a" AND tournament = "madrid (stuttgart)"
|
Madrid (Stuttgart) tournament with a 1996 of A has this for a Career SR?
|
CREATE TABLE table_name_66 (career_sr VARCHAR, tournament VARCHAR)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.