answer
stringlengths 18
557
| question
stringlengths 12
244
| context
stringlengths 27
489
|
|---|---|---|
SELECT date FROM table_name_75 WHERE result = "3–0"
|
What is the Date of the Competition with a Result of 3–0?
|
CREATE TABLE table_name_75 (date VARCHAR, result VARCHAR)
|
SELECT country FROM stadium GROUP BY country HAVING COUNT(*) <= 3
|
Which country has at most 3 stadiums listed?
|
CREATE TABLE stadium (country VARCHAR)
|
SELECT SUM(yr_plyf) FROM table_name_6 WHERE g_plyf = 0 AND coach = "ed robinson"
|
What is the sum of the yr plyf of coach ed robinson, who has a G plyf of 0?
|
CREATE TABLE table_name_6 (yr_plyf INTEGER, g_plyf VARCHAR, coach VARCHAR)
|
SELECT agg FROM table_name_38 WHERE team_2 = "vantour club mangoungou"
|
What is the agg of team 2 for Vantour Club Mangoungou?
|
CREATE TABLE table_name_38 (agg VARCHAR, team_2 VARCHAR)
|
SELECT team FROM table_name_28 WHERE conmebol_1995 = "round 1"
|
Which Team has a round 1 CONMEBOL 1995?
|
CREATE TABLE table_name_28 (team VARCHAR, conmebol_1995 VARCHAR)
|
SELECT runs FROM table_name_75 WHERE strike_rate = "101.42"
|
How many runs were scored when the strike rate was 101.42?
|
CREATE TABLE table_name_75 (runs VARCHAR, strike_rate VARCHAR)
|
SELECT name FROM swimmer WHERE NOT id IN (SELECT swimmer_id FROM record)
|
Find the names of the swimmers who have no record.
|
CREATE TABLE swimmer (name VARCHAR, id VARCHAR, swimmer_id VARCHAR); CREATE TABLE record (name VARCHAR, id VARCHAR, swimmer_id VARCHAR)
|
SELECT COUNT(loss) FROM table_name_87 WHERE avg_g > 129.2
|
How much Loss has an Avg/G larger than 129.2?
|
CREATE TABLE table_name_87 (loss VARCHAR, avg_g INTEGER)
|
SELECT MAX(opp_points) FROM table_22903773_2 WHERE record = "16-5"
|
How many points did the opponents score on the game where Sooners' record was 16-5?
|
CREATE TABLE table_22903773_2 (opp_points INTEGER, record VARCHAR)
|
SELECT COUNT(district) FROM table_2668374_13 WHERE first_elected = "1808" AND incumbent = "George Smith"
|
How many districts first elected someone in 1808 and had george smith as the incumbent?
|
CREATE TABLE table_2668374_13 (district VARCHAR, first_elected VARCHAR, incumbent VARCHAR)
|
SELECT total_non_qatar FROM table_26214389_3 WHERE grand_total = 5814
|
If the grand total is 5814, what is the total non qatar?
|
CREATE TABLE table_26214389_3 (total_non_qatar VARCHAR, grand_total VARCHAR)
|
SELECT tournament FROM table_name_96 WHERE date = "sep 12, 1976"
|
What is Tournament, when Date is "Sep 12, 1976"?
|
CREATE TABLE table_name_96 (tournament VARCHAR, date VARCHAR)
|
SELECT drivers FROM table_name_21 WHERE engine = "chevrolet" AND chassis = "eagle"
|
Who drove the Chevrolet with the Eagle chassis?
|
CREATE TABLE table_name_21 (drivers VARCHAR, engine VARCHAR, chassis VARCHAR)
|
SELECT away_team AS score FROM table_name_36 WHERE away_team = "south melbourne"
|
What is the away team's score when south melbourne is the away team?
|
CREATE TABLE table_name_36 (away_team VARCHAR)
|
SELECT school_club_team FROM table_name_58 WHERE position = "guard" AND player = "juan dixon"
|
What School/Club Team has a Player named Juan Dixon and a Position of guard?
|
CREATE TABLE table_name_58 (school_club_team VARCHAR, position VARCHAR, player VARCHAR)
|
SELECT second_vice_president FROM table_name_49 WHERE inaugurated = "15 march 1935"
|
What is Second Vice President, when Inaugurated is "15 March 1935"?
|
CREATE TABLE table_name_49 (second_vice_president VARCHAR, inaugurated VARCHAR)
|
SELECT nation FROM table_name_58 WHERE total < 11 AND silver < 1 AND bronze < 1
|
What nation has a total less than 11, more than 1 silver and less than 1 bronze?
|
CREATE TABLE table_name_58 (nation VARCHAR, bronze VARCHAR, total VARCHAR, silver VARCHAR)
|
SELECT part_number_s_ FROM table_name_99 WHERE release_date = "january 2011" AND frequency = "3.4 ghz" AND release_price___usd__ = "$317"
|
what is the part number when the release date is january 2011, the frequency is 3.4 ghz and the release price (usd) is $317?
|
CREATE TABLE table_name_99 (part_number_s_ VARCHAR, release_price___usd__ VARCHAR, release_date VARCHAR, frequency VARCHAR)
|
SELECT away_team AS score FROM table_name_12 WHERE home_team = "essendon"
|
What is the score of the away team when the home team is Essendon?
|
CREATE TABLE table_name_12 (away_team VARCHAR, home_team VARCHAR)
|
SELECT partnered_with FROM table_name_97 WHERE score_in_final = "4–6, 3–6"
|
Who was Alicja Rosolska Partnered with when the Score in Final was 4–6, 3–6?
|
CREATE TABLE table_name_97 (partnered_with VARCHAR, score_in_final VARCHAR)
|
SELECT total_trade FROM table_26160007_1 WHERE country = "Switzerland"
|
In the country Switzerland, what is the total trade?
|
CREATE TABLE table_26160007_1 (total_trade VARCHAR, country VARCHAR)
|
SELECT MIN(fa_cup_goals) FROM table_27170987_5
|
What is the lowest number of fa cup goals by a player?
|
CREATE TABLE table_27170987_5 (fa_cup_goals INTEGER)
|
SELECT MIN(year) FROM table_name_22 WHERE location = "bangkok"
|
What's the lowest Year with the Location of Bangkok?
|
CREATE TABLE table_name_22 (year INTEGER, location VARCHAR)
|
SELECT MAX(attendance) FROM table_14875671_1 WHERE week = 8
|
What was the attendance in week 8?
|
CREATE TABLE table_14875671_1 (attendance INTEGER, week VARCHAR)
|
SELECT transmitter_location FROM table_name_62 WHERE digital_power = "570kw"
|
What transmitter location has digital power of 570kw?
|
CREATE TABLE table_name_62 (transmitter_location VARCHAR, digital_power VARCHAR)
|
SELECT nationality FROM table_name_30 WHERE years_for_jazz = "1977-79"
|
What is the nationality of the Jazz player 1977-79?
|
CREATE TABLE table_name_30 (nationality VARCHAR, years_for_jazz VARCHAR)
|
SELECT location_attendance FROM table_name_49 WHERE high_rebounds = "a. horford (10)" AND high_points = "j. johnson (21)"
|
What is the location attendance of the game with A. Horford (10) as the highest rebounds and J. Johnson (21) as the highest points?
|
CREATE TABLE table_name_49 (location_attendance VARCHAR, high_rebounds VARCHAR, high_points VARCHAR)
|
SELECT T1.id, T1.name, T1.nationality FROM architect AS T1 JOIN mill AS T2 ON T1.id = T2.architect_id GROUP BY T1.id ORDER BY COUNT(*) DESC LIMIT 1
|
What is the id, name and nationality of the architect who built most mills?
|
CREATE TABLE architect (id VARCHAR, name VARCHAR, nationality VARCHAR); CREATE TABLE mill (architect_id VARCHAR)
|
SELECT Name FROM roller_coaster ORDER BY LENGTH
|
List the names of roller coasters by ascending order of length.
|
CREATE TABLE roller_coaster (Name VARCHAR, LENGTH VARCHAR)
|
SELECT home_team AS score FROM table_name_17 WHERE away_team = "richmond"
|
What was the home team score at Richmond's away game against Footscray?
|
CREATE TABLE table_name_17 (home_team VARCHAR, away_team VARCHAR)
|
SELECT MIN(rank) FROM table_name_89 WHERE carriers = "china eastern airlines, korean air" AND passengers > 97 OFFSET 055
|
What is the lowest rank for China Eastern Airlines, Korean Air with more passengers than 97,055?
|
CREATE TABLE table_name_89 (rank INTEGER, carriers VARCHAR, passengers VARCHAR)
|
SELECT points FROM table_name_52 WHERE score = "3–1" AND record = "25–19–11"
|
What is the points when the score was 3–1, and record was 25–19–11?
|
CREATE TABLE table_name_52 (points VARCHAR, score VARCHAR, record VARCHAR)
|
SELECT MIN(heat) FROM table_name_88 WHERE nationality = "germany" AND lane > 8
|
What was the least number of heats with more than 8 lanes for the Nationality of Germany?
|
CREATE TABLE table_name_88 (heat INTEGER, nationality VARCHAR, lane VARCHAR)
|
SELECT constructor FROM table_name_12 WHERE rank > 10 AND driver = "joe james"
|
Who constructed Joe James car when his rank was more than 10?
|
CREATE TABLE table_name_12 (constructor VARCHAR, rank VARCHAR, driver VARCHAR)
|
SELECT LOCATION FROM school WHERE NOT School_ID IN (SELECT School_ID FROM Player)
|
List the locations of schools that do not have any player.
|
CREATE TABLE school (LOCATION VARCHAR, School_ID VARCHAR); CREATE TABLE Player (LOCATION VARCHAR, School_ID VARCHAR)
|
SELECT name FROM table_1211545_2 WHERE heavy_vehicle__2_axles_ = "R87.00"
|
What is the name of the plaza where the toll for heavy vehicles with 2 axles is r87.00?
|
CREATE TABLE table_1211545_2 (name VARCHAR, heavy_vehicle__2_axles_ VARCHAR)
|
SELECT championship FROM table_name_27 WHERE score = "6–3, 2–6, 3–6, 6–3, 3–6"
|
What Championship has Scores of 6–3, 2–6, 3–6, 6–3, 3–6?
|
CREATE TABLE table_name_27 (championship VARCHAR, score VARCHAR)
|
SELECT release_date FROM table_name_10 WHERE title = "forward march hare"
|
What's the release date of Forward March Hare?
|
CREATE TABLE table_name_10 (release_date VARCHAR, title VARCHAR)
|
SELECT time_retired FROM table_name_30 WHERE grid > 10 AND laps > 2 AND constructor = "maserati" AND driver = "masten gregory carroll shelby"
|
What is the time/retired of Driver Masten Gregory Carroll Shelby when the constructor was Maserati, the Grid was larger than 10 and there were more than 2 laps?
|
CREATE TABLE table_name_30 (time_retired VARCHAR, driver VARCHAR, constructor VARCHAR, grid VARCHAR, laps VARCHAR)
|
SELECT crowd FROM table_name_63 WHERE away_team = "geelong"
|
How many people watched the away team of Geelong?
|
CREATE TABLE table_name_63 (crowd VARCHAR, away_team VARCHAR)
|
SELECT area, _in_thousands_of_km_2 FROM table_11614581_3 WHERE name_in_russian = "Плоцкая губерния"
|
плоцкая губерния governs an area with what area (in thousand km 2)?
|
CREATE TABLE table_11614581_3 (area VARCHAR, _in_thousands_of_km_2 VARCHAR, name_in_russian VARCHAR)
|
SELECT comedians FROM table_23122988_1 WHERE episode = "1x03"
|
Who were the comedians on episode 1x03?
|
CREATE TABLE table_23122988_1 (comedians VARCHAR, episode VARCHAR)
|
SELECT COUNT(enrollment) FROM table_name_52 WHERE nickname = "fightin' blue hens"
|
What is the total enrollment at the school that has the nickname of the Fightin' Blue Hens?
|
CREATE TABLE table_name_52 (enrollment VARCHAR, nickname VARCHAR)
|
SELECT lost FROM table_name_32 WHERE losing_bonus = "1" AND points_for = "148"
|
WHAT IS THE LOST WITH 1 LOSING BONUS, 148 POINTS?
|
CREATE TABLE table_name_32 (lost VARCHAR, losing_bonus VARCHAR, points_for VARCHAR)
|
SELECT record FROM table_name_30 WHERE score = "1–4"
|
which Record has a Score of 1–4?
|
CREATE TABLE table_name_30 (record VARCHAR, score VARCHAR)
|
SELECT german_voice_actor FROM table_14960574_6 WHERE french_voice_actor = "Alain Dorval"
|
Name the german voice actor for alain dorval
|
CREATE TABLE table_14960574_6 (german_voice_actor VARCHAR, french_voice_actor VARCHAR)
|
SELECT team FROM table_17311759_6 WHERE date = "January 23"
|
Who was the team played on January 23?
|
CREATE TABLE table_17311759_6 (team VARCHAR, date VARCHAR)
|
SELECT entrant FROM table_name_64 WHERE year = 1999
|
What is the entrant in 1999?
|
CREATE TABLE table_name_64 (entrant VARCHAR, year VARCHAR)
|
SELECT team_1 FROM table_name_99 WHERE team_2 = "renova"
|
What is team 1 if Renova is team 2?
|
CREATE TABLE table_name_99 (team_1 VARCHAR, team_2 VARCHAR)
|
SELECT position FROM table_name_15 WHERE player = "john carlson"
|
What position does John Carlson play?
|
CREATE TABLE table_name_15 (position VARCHAR, player VARCHAR)
|
SELECT runner_s__up FROM table_name_10 WHERE margin_of_victory = "1 stroke" AND tournament = "legend financial group classic"
|
Name the runner-up for margin of victory of 1 stroke and tournament of legend financial group classic
|
CREATE TABLE table_name_10 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)
|
SELECT directed_by FROM table_19929970_1 WHERE production_code = "4AKJ08"
|
Who directed the episode with production code 4akj08?
|
CREATE TABLE table_19929970_1 (directed_by VARCHAR, production_code VARCHAR)
|
SELECT AVG(laps) FROM table_name_70 WHERE driver = "masten gregory"
|
What is masten gregory's average lap?
|
CREATE TABLE table_name_70 (laps INTEGER, driver VARCHAR)
|
SELECT AVG(top_25) FROM table_name_45 WHERE events = 20 AND wins > 2
|
What is the Top-25 with an Events of 20, and a Wins larger than 2?
|
CREATE TABLE table_name_45 (top_25 INTEGER, events VARCHAR, wins VARCHAR)
|
SELECT COUNT(high_assists) FROM table_13762472_4 WHERE record = "15-11"
|
how many high assists with record being 15-11
|
CREATE TABLE table_13762472_4 (high_assists VARCHAR, record VARCHAR)
|
SELECT MIN(lost) FROM table_17357929_1
|
What is the fewest number of games lost?
|
CREATE TABLE table_17357929_1 (lost INTEGER)
|
SELECT set_5 FROM table_name_44 WHERE set_2 = "25-20"
|
What is the Set 5 if Set 2 is 25-20?
|
CREATE TABLE table_name_44 (set_5 VARCHAR, set_2 VARCHAR)
|
SELECT location_attendance FROM table_17344582_11 WHERE series = "1-1"
|
List all location attendance for series 1-1.
|
CREATE TABLE table_17344582_11 (location_attendance VARCHAR, series VARCHAR)
|
SELECT club FROM table_name_4 WHERE goals = 0
|
What club had 0 goals?
|
CREATE TABLE table_name_4 (club VARCHAR, goals VARCHAR)
|
SELECT gross FROM table_name_74 WHERE studio = "20th century fox" AND director_s_ = "joel schumacher"
|
The 20th Century Fox film directed by Joel Schumacher grossed how much?
|
CREATE TABLE table_name_74 (gross VARCHAR, studio VARCHAR, director_s_ VARCHAR)
|
SELECT tournament FROM table_name_37 WHERE year > 1973
|
What tournament took place after 1973?
|
CREATE TABLE table_name_37 (tournament VARCHAR, year INTEGER)
|
SELECT socket FROM table_name_67 WHERE order_part_number = "tmdtl68hax5dm"
|
What is the socket for Order Part Number TMDTL68HAX5DM?
|
CREATE TABLE table_name_67 (socket VARCHAR, order_part_number VARCHAR)
|
SELECT points_against FROM table_name_67 WHERE try_diff = "+23"
|
What is the points against when try diff is +23?
|
CREATE TABLE table_name_67 (points_against VARCHAR, try_diff VARCHAR)
|
SELECT district FROM table_1342218_5 WHERE result = "Re-elected" AND incumbent = "Wilbur Mills"
|
Which district has the incumbent Wilbur Mills and a re-elected result?
|
CREATE TABLE table_1342218_5 (district VARCHAR, result VARCHAR, incumbent VARCHAR)
|
SELECT title FROM table_name_64 WHERE left_office = "982" AND entered_office = "949"
|
What is the title of the king who left office in 982 and entered office in 949?
|
CREATE TABLE table_name_64 (title VARCHAR, left_office VARCHAR, entered_office VARCHAR)
|
SELECT location_attendance FROM table_name_26 WHERE game = "4"
|
Where is the location of Game 4?
|
CREATE TABLE table_name_26 (location_attendance VARCHAR, game VARCHAR)
|
SELECT record FROM table_21007615_1 WHERE sun_devils_points = 44
|
What was the record for the Sun Devils when they scored 44 points?
|
CREATE TABLE table_21007615_1 (record VARCHAR, sun_devils_points VARCHAR)
|
SELECT series FROM table_name_73 WHERE podiums > 10
|
What series had more than 10 Podiums?
|
CREATE TABLE table_name_73 (series VARCHAR, podiums INTEGER)
|
SELECT mountain_range FROM table_name_35 WHERE rank = 19
|
Which mountain range has a rank of 19?
|
CREATE TABLE table_name_35 (mountain_range VARCHAR, rank VARCHAR)
|
SELECT region FROM table_name_10 WHERE venue = "frank erwin center"
|
Tell me the region for frank erwin center
|
CREATE TABLE table_name_10 (region VARCHAR, venue VARCHAR)
|
SELECT country FROM table_name_18 WHERE place = "t3" AND score = 70 - 68 = 138
|
Which country earned place T3 with a score of 70-68=138?
|
CREATE TABLE table_name_18 (country VARCHAR, place VARCHAR, score VARCHAR)
|
SELECT date FROM table_name_58 WHERE venue = "princes park"
|
If the Venue was princes park, which Date did the game take place on?
|
CREATE TABLE table_name_58 (date VARCHAR, venue VARCHAR)
|
SELECT previous_conference FROM table_name_49 WHERE school = "whiting"
|
Which conference held at School of whiting?
|
CREATE TABLE table_name_49 (previous_conference VARCHAR, school VARCHAR)
|
SELECT model FROM table_name_92 WHERE seats = 175
|
Which model has 175 seats?
|
CREATE TABLE table_name_92 (model VARCHAR, seats VARCHAR)
|
SELECT home_team FROM table_name_91 WHERE away_team = "rivercity rage"
|
who is the home team when the away team is rivercity rage?
|
CREATE TABLE table_name_91 (home_team VARCHAR, away_team VARCHAR)
|
SELECT COUNT(celebrity) FROM table_14345690_4 WHERE famous_for = "Athlete"
|
Name the number of celebrity for athlete
|
CREATE TABLE table_14345690_4 (celebrity VARCHAR, famous_for VARCHAR)
|
SELECT "coat_of_cash" AS _wearing_celebrity FROM table_name_92 WHERE episode_number > 1 AND musical_guest__song_performed_ = "amy macdonald ( mr rock & roll )"
|
WHich Coat of Cash" Wearing Celebrity has a Episode Number larger than 1 and with amy macdonald ( mr rock & roll )?
|
CREATE TABLE table_name_92 (episode_number VARCHAR, musical_guest__song_performed_ VARCHAR)
|
SELECT SUM(premiere) FROM table_name_59 WHERE chinese_title = "野蠻奶奶大戰戈師奶" AND peak < 41
|
What is the premiere rating for a Chinese title of 野蠻奶奶大戰戈師奶, and a Peak smaller than 41?
|
CREATE TABLE table_name_59 (premiere INTEGER, chinese_title VARCHAR, peak VARCHAR)
|
SELECT COUNT(tied) FROM table_name_57 WHERE span = "2011–2013" AND win__percentage < 80
|
How many games were Tied during the Span of 2011–2013 with a less than 80% Win %?
|
CREATE TABLE table_name_57 (tied VARCHAR, span VARCHAR, win__percentage VARCHAR)
|
SELECT Starting_Year FROM technician WHERE Team = "CLE" INTERSECT SELECT Starting_Year FROM technician WHERE Team = "CWS"
|
Show the starting years shared by technicians from team "CLE" and "CWS".
|
CREATE TABLE technician (Starting_Year VARCHAR, Team VARCHAR)
|
SELECT location_attendance FROM table_17311759_5 WHERE date = "December 9"
|
What was the location and the crowd attendance on December 9?
|
CREATE TABLE table_17311759_5 (location_attendance VARCHAR, date VARCHAR)
|
SELECT COUNT(title) FROM table_12419515_4 WHERE written_by = "Casey Johnson"
|
What is the total number of titles written by Casey Johnson?
|
CREATE TABLE table_12419515_4 (title VARCHAR, written_by VARCHAR)
|
SELECT date FROM table_name_64 WHERE loss = "tavárez"
|
When did tavárez lose?
|
CREATE TABLE table_name_64 (date VARCHAR, loss VARCHAR)
|
SELECT winning_score FROM table_name_42 WHERE runner_s__up = "beth daniel" AND margin_of_victory = "7 strokes"
|
What was the winning score when the runner-up was Beth Daniel and the margin of victory was 7 strokes?
|
CREATE TABLE table_name_42 (winning_score VARCHAR, runner_s__up VARCHAR, margin_of_victory VARCHAR)
|
SELECT record FROM table_name_19 WHERE round = 2 AND event = "dream 9"
|
What record does the event of dream 9 with a round of 2 hold?
|
CREATE TABLE table_name_19 (record VARCHAR, round VARCHAR, event VARCHAR)
|
SELECT y_ = _2011 FROM table_214479_8 WHERE expression = month = FLOOR((d + e + 114) / 31)
|
What is the y = 2011 when the expression is month = floor ((d + e + 114) / 31)?
|
CREATE TABLE table_214479_8 (y_ VARCHAR, _2011 VARCHAR, expression VARCHAR, month VARCHAR, d VARCHAR, e VARCHAR)
|
SELECT rank__number FROM table_name_53 WHERE result = "w42-14"
|
What was the rank# of the opponent when the result of the game was w42-14?
|
CREATE TABLE table_name_53 (rank__number VARCHAR, result VARCHAR)
|
SELECT COUNT(caliber) FROM table_21538523_1 WHERE type = "LB/RN"
|
How many calibers require the type LB/RN?
|
CREATE TABLE table_21538523_1 (caliber VARCHAR, type VARCHAR)
|
SELECT SUM(crowd) FROM table_name_65 WHERE venue = "western oval"
|
What was the sum of the crowds at Western Oval?
|
CREATE TABLE table_name_65 (crowd INTEGER, venue VARCHAR)
|
SELECT MAX(diameter__km_) FROM table_name_3 WHERE latitude = "43.5s"
|
What is the highest diameter when the latitude is 43.5s?
|
CREATE TABLE table_name_3 (diameter__km_ INTEGER, latitude VARCHAR)
|
SELECT ratt FROM table_name_49 WHERE comp = "48"
|
What is the RAtt when the comp is 48?
|
CREATE TABLE table_name_49 (ratt VARCHAR, comp VARCHAR)
|
SELECT week_4 FROM table_name_75 WHERE week_2 = "lexi lombardelli"
|
What is the name of the cyber girl in week 4 when Lexi Lombardelli was the cyber girl in week 2?
|
CREATE TABLE table_name_75 (week_4 VARCHAR, week_2 VARCHAR)
|
SELECT margin_of_victory FROM table_name_21 WHERE date = "oct 5, 1997"
|
What is the Margin of victory on oct 5, 1997?
|
CREATE TABLE table_name_21 (margin_of_victory VARCHAR, date VARCHAR)
|
SELECT race_4 FROM table_name_51 WHERE race_1 = "28"
|
What is Race 4, when Race 1 is 28?
|
CREATE TABLE table_name_51 (race_4 VARCHAR, race_1 VARCHAR)
|
SELECT MAX(crowd) FROM table_name_12 WHERE venue = "kardinia park"
|
If the Venue was kardinia park what was the highest Crowd attended?
|
CREATE TABLE table_name_12 (crowd INTEGER, venue VARCHAR)
|
SELECT COUNT(losses) FROM table_name_43 WHERE wins < 12 AND golden_rivers = "ultima" AND byes > 2
|
How many losses did the golden rivers of ultima have when wins were less than 12 and byes larger than 2?
|
CREATE TABLE table_name_43 (losses VARCHAR, byes VARCHAR, wins VARCHAR, golden_rivers VARCHAR)
|
SELECT MIN(average_points_per_race_entered) FROM table_name_3 WHERE driver = "kimi räikkönen" AND entries > 194
|
What is the lowest average points per race entered of driver kimi räikkönen, who has more than 194 entries?
|
CREATE TABLE table_name_3 (average_points_per_race_entered INTEGER, driver VARCHAR, entries VARCHAR)
|
SELECT SUM(1955) FROM table_name_7 WHERE 1956 > 2.9 AND 1953 > 4.5
|
What is the 1955 rate when the 1956 is more than 2.9, and 1953 is larger than 4.5?
|
CREATE TABLE table_name_7 (Id VARCHAR)
|
SELECT res FROM table_name_63 WHERE time = "2:48"
|
What is the result for the match that was only 2:48 long?
|
CREATE TABLE table_name_63 (res VARCHAR, time VARCHAR)
|
SELECT directed_and_produced_by FROM table_24725951_1 WHERE celebrities = "Nick Hewer and Saira Khan"
|
List the director and producer when Nick Hewer and Saira Khan were starring.
|
CREATE TABLE table_24725951_1 (directed_and_produced_by VARCHAR, celebrities VARCHAR)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.