question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What is the roll number for East Gore School?
CREATE TABLE table_name_21 (roll VARCHAR, name VARCHAR)
SELECT COUNT(roll) FROM table_name_21 WHERE name = "east gore school"
What line is 24.7 km and head towards Toyohashi East?
CREATE TABLE table_name_36 (name VARCHAR, direction VARCHAR, length__km_ VARCHAR)
SELECT name FROM table_name_36 WHERE direction = "toyohashi east" AND length__km_ = 24.7
What is the home team that Bradford City is playing against?
CREATE TABLE table_name_72 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_72 WHERE away_team = "bradford city"
Who's the shooter with 13 score points and 10 rank points?
CREATE TABLE table_name_32 (shooter VARCHAR, score_points VARCHAR, rank_points VARCHAR)
SELECT shooter FROM table_name_32 WHERE score_points = "13" AND rank_points = "10"
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 MAX(year) FROM table_name_69 WHERE points > 27 AND wins > 5
How many teams lost at the sydney football stadium, sydney (11)?
CREATE TABLE table_11236195_5 (losingteam VARCHAR, location VARCHAR)
SELECT COUNT(losingteam) FROM table_11236195_5 WHERE location = "Sydney Football Stadium, Sydney (11)"
What is the time (GMT) for the 12A Serial?
CREATE TABLE table_name_9 (time___gmt__ VARCHAR, serial VARCHAR)
SELECT time___gmt__ FROM table_name_9 WHERE serial = "12a"
how many opponent with date being october 25, 1964
CREATE TABLE table_14984126_1 (opponent VARCHAR, date VARCHAR)
SELECT COUNT(opponent) FROM table_14984126_1 WHERE date = "October 25, 1964"
What's the average Grid for those who spun off after Lap 64?
CREATE TABLE table_name_68 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)
SELECT AVG(grid) FROM table_name_68 WHERE time_retired = "spun off" AND laps > 64
Who directed the episode that originally aired on February 16, 1999?
CREATE TABLE table_228973_5 (directed_by VARCHAR, original_air_date VARCHAR)
SELECT directed_by FROM table_228973_5 WHERE original_air_date = "February 16, 1999"
What is the Venue for the 2002 fifa world cup qualifier, and a Result of 8-2?
CREATE TABLE table_name_23 (venue VARCHAR, competition VARCHAR, result VARCHAR)
SELECT venue FROM table_name_23 WHERE competition = "2002 fifa world cup qualifier" AND result = "8-2"
What were the most byes of Terang-Mortlake when they had more than 11 wins and more than 1118 against?
CREATE TABLE table_name_55 (byes INTEGER, hampden_fl VARCHAR, wins VARCHAR, against VARCHAR)
SELECT MAX(byes) FROM table_name_55 WHERE wins > 11 AND against > 1118 AND hampden_fl = "terang-mortlake"
What is the last name of the author that has published the most papers?
CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE authors (lname VARCHAR, fname VARCHAR, authid VARCHAR); CREATE TABLE papers (paperid VARCHAR)
SELECT t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid GROUP BY t1.fname, t1.lname ORDER BY COUNT(*) DESC LIMIT 1
What Points for has a Try bonus of 140?
CREATE TABLE table_name_26 (points_for VARCHAR, try_bonus VARCHAR)
SELECT points_for FROM table_name_26 WHERE try_bonus = "140"
What was the result with a record of 58–11?
CREATE TABLE table_name_49 (result VARCHAR, record VARCHAR)
SELECT result FROM table_name_49 WHERE record = "58–11"
What was the minimum number for opponents?
CREATE TABLE table_24560733_1 (opponents INTEGER)
SELECT MIN(opponents) FROM table_24560733_1
What is the name of the school in Hillcrest?
CREATE TABLE table_name_12 (name VARCHAR, area VARCHAR)
SELECT name FROM table_name_12 WHERE area = "hillcrest"
WHAT EPISODE HAS A REGION NUMBER BIGGER THAN 1, AND 32 DVDS?
CREATE TABLE table_name_58 (episode_no VARCHAR, region_no VARCHAR, no_of_dvds VARCHAR)
SELECT episode_no FROM table_name_58 WHERE region_no > 1 AND no_of_dvds = "32"
What is the Background of the Candidate from Barrington, Illinois?
CREATE TABLE table_name_82 (background VARCHAR, hometown VARCHAR)
SELECT background FROM table_name_82 WHERE hometown = "barrington, illinois"
Who performed the song named "Le Pop"?
CREATE TABLE Band (firstname VARCHAR, lastname VARCHAR, id VARCHAR); CREATE TABLE Performance (bandmate VARCHAR, SongId VARCHAR); CREATE TABLE Songs (SongId VARCHAR, Title VARCHAR)
SELECT T2.firstname, T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId WHERE T3.Title = "Le Pop"
Show the headquarters that have both companies in banking industry and companies in oil and gas industry.
CREATE TABLE company (Headquarters VARCHAR, Industry VARCHAR)
SELECT Headquarters FROM company WHERE Industry = "Banking" INTERSECT SELECT Headquarters FROM company WHERE Industry = "Oil and gas"
Name the starting from thiruvezhukkurrirukkai
CREATE TABLE table_1852650_1 (starting_from INTEGER, name_of_the_prabandham VARCHAR)
SELECT MIN(starting_from) FROM table_1852650_1 WHERE name_of_the_prabandham = "Thiruvezhukkurrirukkai"
What is the average value for Rd 8 in a position less than 2 for Audi Sport Australia?
CREATE TABLE table_name_68 (rd_8 INTEGER, team VARCHAR, position VARCHAR)
SELECT AVG(rd_8) FROM table_name_68 WHERE team = "audi sport australia" AND position < 2
What is the result for 2004 when A is the result for 2005, and the result of q1 when 2009?
CREATE TABLE table_name_32 (Id VARCHAR)
SELECT 2004 FROM table_name_32 WHERE 2005 = "a" AND 2009 = "q1"
What is the average goals scored of the team who scored 44 points and placed higher than 5?
CREATE TABLE table_name_48 (goals_scored INTEGER, points VARCHAR, place VARCHAR)
SELECT AVG(goals_scored) FROM table_name_48 WHERE points = "44" AND place > 5
What is the latest year that has more than 5 points and a renault ef15 1.5 v6 t engine?
CREATE TABLE table_name_20 (year INTEGER, engine VARCHAR, points VARCHAR)
SELECT MAX(year) FROM table_name_20 WHERE engine = "renault ef15 1.5 v6 t" AND points > 5
With a parallel bars score of 14.625 what is the average total?
CREATE TABLE table_name_8 (total INTEGER, parallel_bars VARCHAR)
SELECT AVG(total) FROM table_name_8 WHERE parallel_bars = "14.625"
at what location is the last flew on 11 june 2000
CREATE TABLE table_1997759_1 (location VARCHAR, last_flew VARCHAR)
SELECT location FROM table_1997759_1 WHERE last_flew = "11 June 2000"
What play has a base of Athens and was written by Aeschylus?
CREATE TABLE table_name_67 (play VARCHAR, author VARCHAR, base VARCHAR)
SELECT play FROM table_name_67 WHERE author = "aeschylus" AND base = "athens"
what team played on october 8
CREATE TABLE table_name_32 (home VARCHAR, date VARCHAR)
SELECT home FROM table_name_32 WHERE date = "october 8"
WHAT IS THE ORICON PEAK NUMBER WITH AN ATLANTIC LABEL, SUBHUMAN RACE, LATER THAN 1995?
CREATE TABLE table_name_72 (oricon_peak VARCHAR, date_of_release VARCHAR, label VARCHAR, title VARCHAR)
SELECT COUNT(oricon_peak) FROM table_name_72 WHERE label = "atlantic" AND title = "subhuman race" AND date_of_release > 1995
When has Score of 4–5 and quebec nordiques as Visitor?
CREATE TABLE table_name_92 (date VARCHAR, score VARCHAR, visitor VARCHAR)
SELECT date FROM table_name_92 WHERE score = "4–5" AND visitor = "quebec nordiques"
What is the number of deputies with 94.2% of the votes?
CREATE TABLE table_name_74 (number_of_deputies INTEGER, percentage_of_votes VARCHAR)
SELECT SUM(number_of_deputies) FROM table_name_74 WHERE percentage_of_votes = "94.2%"
How many fastest laps were there for a rd that equals 10?
CREATE TABLE table_10706879_3 (fastest_lap VARCHAR, rd VARCHAR)
SELECT COUNT(fastest_lap) FROM table_10706879_3 WHERE rd = 10
What is the market for KLRJ?
CREATE TABLE table_2709_4 (target_city__market VARCHAR, call_sign VARCHAR)
SELECT target_city__market FROM table_2709_4 WHERE call_sign = "KLRJ"
Find the last name of the individuals that have been contact individuals of an organization.
CREATE TABLE individuals (individual_last_name VARCHAR, individual_id VARCHAR); CREATE TABLE organization_contact_individuals (individual_id VARCHAR)
SELECT DISTINCT t1.individual_last_name FROM individuals AS t1 JOIN organization_contact_individuals AS t2 ON t1.individual_id = t2.individual_id
What team has rank 3?
CREATE TABLE table_name_73 (team VARCHAR, rank VARCHAR)
SELECT team FROM table_name_73 WHERE rank = 3
What was the engine belonging to Pierluigi Martini with a Tyre of P?
CREATE TABLE table_name_20 (engine VARCHAR, tyres VARCHAR, driver VARCHAR)
SELECT engine FROM table_name_20 WHERE tyres = "p" AND driver = "pierluigi martini"
How many times is the series italian and the circuit is valencia?
CREATE TABLE table_26920192_5 (round VARCHAR, series VARCHAR, circuit VARCHAR)
SELECT COUNT(round) FROM table_26920192_5 WHERE series = "Italian" AND circuit = "Valencia"
Which Set 3 has a Time of 10:00, and a Set 2 of 25–19?
CREATE TABLE table_name_22 (set_3 VARCHAR, time VARCHAR, set_2 VARCHAR)
SELECT set_3 FROM table_name_22 WHERE time = "10:00" AND set_2 = "25–19"
Name the week for date of bye
CREATE TABLE table_name_29 (week VARCHAR, date VARCHAR)
SELECT week FROM table_name_29 WHERE date = "bye"
what is the province when the rank is higher than 24 and the name is laforge-2?
CREATE TABLE table_name_42 (province VARCHAR, rank VARCHAR, name VARCHAR)
SELECT province FROM table_name_42 WHERE rank > 24 AND name = "laforge-2"
Name the score for game 63
CREATE TABLE table_17288845_9 (score VARCHAR, game VARCHAR)
SELECT score FROM table_17288845_9 WHERE game = 63
What are the years of participation for pickerington north?
CREATE TABLE table_17429402_7 (years_of_participation VARCHAR, school VARCHAR)
SELECT years_of_participation FROM table_17429402_7 WHERE school = "Pickerington North"
Find all the product whose name contains the word "Scanner".
CREATE TABLE product (product VARCHAR)
SELECT product FROM product WHERE product LIKE "%Scanner%"
What is the home team score of St Kilda?
CREATE TABLE table_name_4 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_4 WHERE home_team = "st kilda"
Which tournament had a final score of 6–7, 2–6, and a Partner of wayne arthurs?
CREATE TABLE table_name_7 (tournament VARCHAR, score_in_the_final VARCHAR, partner VARCHAR)
SELECT tournament FROM table_name_7 WHERE score_in_the_final = "6–7, 2–6" AND partner = "wayne arthurs"
Which U15 4th Quad had a U15 3rd Quad of BBC and U15 6th Quad of GT?
CREATE TABLE table_name_68 (u15_4th_quad VARCHAR, u15_3rd_quad VARCHAR, u15_6th_quad VARCHAR)
SELECT u15_4th_quad FROM table_name_68 WHERE u15_3rd_quad = "bbc" AND u15_6th_quad = "gt"
Which Fuel Type that has a mpg-US Extra-Urban larger than 53.5, and a mpg-US Combined larger than 50 from renault?
CREATE TABLE table_name_62 (fuel_type VARCHAR, manufacturer VARCHAR, mpg_us_extra_urban VARCHAR, mpg_us_combined VARCHAR)
SELECT fuel_type FROM table_name_62 WHERE mpg_us_extra_urban > 53.5 AND mpg_us_combined > 50 AND manufacturer = "renault"
How many seats have a quantity over 45?
CREATE TABLE table_name_53 (seats INTEGER, quantity INTEGER)
SELECT SUM(seats) FROM table_name_53 WHERE quantity > 45
If the Season is later than 2008 and Races is 11, what ate the Points?
CREATE TABLE table_name_64 (points VARCHAR, races VARCHAR, season VARCHAR)
SELECT points FROM table_name_64 WHERE races = "11" AND season > 2008
What was the record after game 41?
CREATE TABLE table_name_1 (record VARCHAR, game VARCHAR)
SELECT record FROM table_name_1 WHERE game = 41
Which Wednesday has a Sunday of གཟའ་ཉི་མ།?
CREATE TABLE table_name_16 (wednesday VARCHAR, sunday VARCHAR)
SELECT wednesday FROM table_name_16 WHERE sunday = "གཟའ་ཉི་མ།"
What was Bob Jameson's lowest bonus where he had less than 15 rides?
CREATE TABLE table_name_36 (bonus_pts INTEGER, rider VARCHAR, rides VARCHAR)
SELECT MIN(bonus_pts) FROM table_name_36 WHERE rider = "bob jameson" AND rides < 15
What was the date of week 8?
CREATE TABLE table_name_27 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_27 WHERE week = 8
how many video out connections does the sounddock portable have?
CREATE TABLE table_24384861_1 (video_out VARCHAR, version VARCHAR)
SELECT COUNT(video_out) FROM table_24384861_1 WHERE version = "SoundDock Portable"
What is the average amount of points larger than 154 laps?
CREATE TABLE table_name_87 (points INTEGER, laps INTEGER)
SELECT AVG(points) FROM table_name_87 WHERE laps > 154
What is the number for other when Adam Pepper is the player with a total more than 7?
CREATE TABLE table_name_60 (other VARCHAR, player VARCHAR, total VARCHAR)
SELECT COUNT(other) FROM table_name_60 WHERE player = "adam pepper" AND total > 7
In which condition(s) is bleeding time prolonged and prothrombin time unaffected?
CREATE TABLE table_1555308_1 (condition VARCHAR, bleeding_time VARCHAR, prothrombin_time VARCHAR)
SELECT condition FROM table_1555308_1 WHERE bleeding_time = "Prolonged" AND prothrombin_time = "Unaffected"
What time period had appearances of 219?
CREATE TABLE table_24565004_11 (period VARCHAR, appearances¹ VARCHAR)
SELECT period FROM table_24565004_11 WHERE appearances¹ = 219
Find the names of states that have some college students playing in goalie and mid positions.
CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR); CREATE TABLE college (state VARCHAR, cName VARCHAR)
SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.pPos = 'goalie' INTERSECT SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.pPos = 'mid'
Which City has Seasons in league of 17, and a Club of shakhter?
CREATE TABLE table_name_99 (city VARCHAR, seasons_in_league VARCHAR, club VARCHAR)
SELECT city FROM table_name_99 WHERE seasons_in_league = 17 AND club = "shakhter"
What is the name of the most common genre in all tracks?
CREATE TABLE GENRE (Name VARCHAR, GenreId VARCHAR); CREATE TABLE TRACK (GenreId VARCHAR)
SELECT T1.Name FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId GROUP BY T2.GenreId ORDER BY COUNT(*) DESC LIMIT 1
What is the urban population for the city of Fuzhou?
CREATE TABLE table_name_7 (urban_population__2010_ INTEGER, city VARCHAR)
SELECT AVG(urban_population__2010_) FROM table_name_7 WHERE city = "fuzhou"
what is the competition when the result is won and the score is 8-0?
CREATE TABLE table_name_11 (competition VARCHAR, result VARCHAR, score VARCHAR)
SELECT competition FROM table_name_11 WHERE result = "won" AND score = "8-0"
The person notable for tennis died in what year?
CREATE TABLE table_name_1 (born___died VARCHAR, notable_for VARCHAR)
SELECT born___died FROM table_name_1 WHERE notable_for = "tennis"
What is the score in the 2 truck pull of the player who got 1 (5 in 33.84s) in the 4 fingals fingers?
CREATE TABLE table_24302700_6 (event_2_truck_pull VARCHAR, event_4_fingals_fingers VARCHAR)
SELECT event_2_truck_pull FROM table_24302700_6 WHERE event_4_fingals_fingers = "1 (5 in 33.84s)"
What's the average round Red Bryant was drafted with a pick larger than 121?
CREATE TABLE table_name_29 (round INTEGER, name VARCHAR, pick VARCHAR)
SELECT AVG(round) FROM table_name_29 WHERE name = "red bryant" AND pick > 121
Which Slalom has an overall of 25 in the 2009 season?
CREATE TABLE table_name_32 (slalom VARCHAR, overall VARCHAR, season VARCHAR)
SELECT slalom FROM table_name_32 WHERE overall = "25" AND season = 2009
Which film was made before 2002?
CREATE TABLE table_name_1 (film VARCHAR, year INTEGER)
SELECT film FROM table_name_1 WHERE year < 2002
what is the lowest position of brendan sole
CREATE TABLE table_20090682_4 (pos INTEGER, driver VARCHAR)
SELECT MAX(pos) FROM table_20090682_4 WHERE driver = "Brendan Sole"
What is the highest K 2 O, when Na 2 O is greater than 1.87, when Fe 2 O 3 is greater than 0.07, when Objects is Ritual Disk, and when Al 2 O 3 is less than 0.62?
CREATE TABLE table_name_40 (k_2_o INTEGER, al_2_o_3 VARCHAR, objects VARCHAR, na_2_o VARCHAR, fe_2_o_3 VARCHAR)
SELECT MAX(k_2_o) FROM table_name_40 WHERE na_2_o > 1.87 AND fe_2_o_3 > 0.07 AND objects = "ritual disk" AND al_2_o_3 < 0.62
Who was the jockey that had post time odds of 34-1?
CREATE TABLE table_name_59 (jockey VARCHAR, post_time_odds VARCHAR)
SELECT jockey FROM table_name_59 WHERE post_time_odds = "34-1"
What Constructor has a +1.027 Time/Retired?
CREATE TABLE table_name_21 (constructor VARCHAR, time_retired VARCHAR)
SELECT constructor FROM table_name_21 WHERE time_retired = "+1.027"
What is the mean average score when the evening gown score is more than 9.35, the state is South Carolina, and the swimsuit score is more than 9.4?
CREATE TABLE table_name_52 (average INTEGER, swimsuit VARCHAR, evening_gown VARCHAR, state VARCHAR)
SELECT AVG(average) FROM table_name_52 WHERE evening_gown > 9.35 AND state = "south carolina" AND swimsuit > 9.4
Which venue hosted South Melbourne?
CREATE TABLE table_name_50 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_50 WHERE away_team = "south melbourne"
Find the states where have the colleges whose enrollments are less than the largest size.
CREATE TABLE college (state VARCHAR, enr INTEGER)
SELECT DISTINCT state FROM college WHERE enr < (SELECT MAX(enr) FROM college)
What year for the legatum institute?
CREATE TABLE table_name_79 (year VARCHAR, organization VARCHAR)
SELECT year FROM table_name_79 WHERE organization = "legatum institute"
Who was the Class A winner when the Class C winner was David Haynes?
CREATE TABLE table_24852622_1 (class_a_winner VARCHAR, class_c_winner VARCHAR)
SELECT class_a_winner FROM table_24852622_1 WHERE class_c_winner = "David Haynes"
For the Loss of Plesac (1-5), what is the Record?
CREATE TABLE table_name_18 (record VARCHAR, loss VARCHAR)
SELECT record FROM table_name_18 WHERE loss = "plesac (1-5)"
When the team classification was quick step, what was the total number of general classifications?
CREATE TABLE table_15294880_2 (general_classification VARCHAR, team_classification VARCHAR)
SELECT COUNT(general_classification) FROM table_15294880_2 WHERE team_classification = "Quick Step"
When st kilda played as the away team, what date was that?
CREATE TABLE table_name_67 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_67 WHERE away_team = "st kilda"
Which Rank has a Col (m) of 0, and a Peak of aoraki/mount cook, and a Prominence (m) larger than 3,755?
CREATE TABLE table_name_32 (rank INTEGER, prominence__m_ VARCHAR, col__m_ VARCHAR, peak VARCHAR)
SELECT SUM(rank) FROM table_name_32 WHERE col__m_ = 0 AND peak = "aoraki/mount cook" AND prominence__m_ > 3 OFFSET 755
Which Opponent has a Date of november 17, 1963?
CREATE TABLE table_name_30 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_30 WHERE date = "november 17, 1963"
The new entries this round was shown to be 12, in which phase would you find this?
CREATE TABLE table_1281200_1 (phase VARCHAR, new_entries_this_round VARCHAR)
SELECT phase FROM table_1281200_1 WHERE new_entries_this_round = "12"
What team is in the dhl-höllin arena?
CREATE TABLE table_name_5 (team VARCHAR, arena VARCHAR)
SELECT team FROM table_name_5 WHERE arena = "dhl-höllin"
What was the result for the award for best current affairs presenter?
CREATE TABLE table_name_68 (result VARCHAR, award VARCHAR)
SELECT result FROM table_name_68 WHERE award = "best current affairs presenter"
What ranking that had a start of 19?
CREATE TABLE table_name_72 (rank VARCHAR, start VARCHAR)
SELECT rank FROM table_name_72 WHERE start = "19"
What is the number range for the 56 quantity?
CREATE TABLE table_name_60 (number_range VARCHAR, quantity VARCHAR)
SELECT number_range FROM table_name_60 WHERE quantity = "56"
What is the time in week 3?
CREATE TABLE table_name_29 (tv_time VARCHAR, week VARCHAR)
SELECT tv_time FROM table_name_29 WHERE week = 3
Who had a Run 1 smaller than 51.96, a Run 2 larger than 51.13, and a Run 3 of 52.53?
CREATE TABLE table_name_23 (athlete VARCHAR, run_3 VARCHAR, run_1 VARCHAR, run_2 VARCHAR)
SELECT athlete FROM table_name_23 WHERE run_1 < 51.96 AND run_2 > 51.13 AND run_3 = 52.53
Find the names of the regions which were affected by the storm that killed the greatest number of people.
CREATE TABLE region (region_name VARCHAR, region_id VARCHAR); CREATE TABLE affected_region (region_id VARCHAR, storm_id VARCHAR); CREATE TABLE storm (storm_id VARCHAR, Number_Deaths VARCHAR)
SELECT T2.region_name FROM affected_region AS T1 JOIN region AS T2 ON T1.region_id = T2.region_id JOIN storm AS T3 ON T1.storm_id = T3.storm_id ORDER BY T3.Number_Deaths DESC LIMIT 1
Name the most goals for 1972 – 1975, 1976 – 1982
CREATE TABLE table_24565004_19 (goals¹ INTEGER, period VARCHAR)
SELECT MAX(goals¹) FROM table_24565004_19 WHERE period = "1972 – 1975, 1976 – 1982"
What is the sum of the draws with less than 2284 against, 8 losses, and more than 10 wins?
CREATE TABLE table_name_61 (draws INTEGER, wins VARCHAR, against VARCHAR, losses VARCHAR)
SELECT SUM(draws) FROM table_name_61 WHERE against < 2284 AND losses = 8 AND wins > 10
what is the race title when the winner is dick johnson and the circuit is sandown raceway?
CREATE TABLE table_name_53 (race_title VARCHAR, winner VARCHAR, circuit VARCHAR)
SELECT race_title FROM table_name_53 WHERE winner = "dick johnson" AND circuit = "sandown raceway"
What's the Air Force - Navy score in the 2018 season?
CREATE TABLE table_1850339_2 (air_force___navy_score VARCHAR, season VARCHAR)
SELECT air_force___navy_score FROM table_1850339_2 WHERE season = 2018
What is the average number of Gold medals when there are 5 bronze medals?
CREATE TABLE table_name_82 (gold INTEGER, bronze VARCHAR)
SELECT AVG(gold) FROM table_name_82 WHERE bronze = 5
Who was the host country when bronze is [[|]] (1) and host city is Krynica?
CREATE TABLE table_name_45 (host_country___countries VARCHAR, bronze VARCHAR, host_city___cities VARCHAR)
SELECT host_country___countries FROM table_name_45 WHERE bronze = "[[|]] (1)" AND host_city___cities = "krynica"
What year was Tim Holden first elected?
CREATE TABLE table_1805191_39 (first_elected INTEGER, incumbent VARCHAR)
SELECT MIN(first_elected) FROM table_1805191_39 WHERE incumbent = "Tim Holden"
Which Super Ghas a missed season due to injury?
CREATE TABLE table_name_50 (super_g VARCHAR, overall VARCHAR)
SELECT super_g FROM table_name_50 WHERE overall = "missed season due to injury"