answer
stringlengths 18
557
| question
stringlengths 12
244
| context
stringlengths 27
489
|
|---|---|---|
SELECT class FROM table_name_74 WHERE laps = 31
|
Which Class has Laps of 31?
|
CREATE TABLE table_name_74 (class VARCHAR, laps VARCHAR)
|
SELECT verb_meaning FROM table_1745843_5 WHERE class = "6"
|
What is the meaning of the class 6 verbs?
|
CREATE TABLE table_1745843_5 (verb_meaning VARCHAR, class VARCHAR)
|
SELECT players_per_console FROM table_name_51 WHERE genre = "strategy" AND year = 1992
|
For the strategy game in 1992, how many players were allowed per console?
|
CREATE TABLE table_name_51 (players_per_console VARCHAR, genre VARCHAR, year VARCHAR)
|
SELECT surface FROM table_name_19 WHERE outcome = "winner" AND date = "12 march 1989"
|
What was the surface where the outcome was winner on 12 march 1989?
|
CREATE TABLE table_name_19 (surface VARCHAR, outcome VARCHAR, date VARCHAR)
|
SELECT format FROM table_name_12 WHERE label = "bronze" AND date = "1982" AND catalogue = "204 636"
|
What is Format, when Label is Bronze, when Date is 1982, and when Catalogue is 204 636?
|
CREATE TABLE table_name_12 (format VARCHAR, catalogue VARCHAR, label VARCHAR, date VARCHAR)
|
SELECT couple FROM table_20424140_3 WHERE average = "17.2"
|
What couple has an average of 17.2?
|
CREATE TABLE table_20424140_3 (couple VARCHAR, average VARCHAR)
|
SELECT MIN(year) FROM table_name_16 WHERE us_cham_rank < 1
|
Which Year is the lowest one that has a US Cham Rank smaller than 1?
|
CREATE TABLE table_name_16 (year INTEGER, us_cham_rank INTEGER)
|
SELECT Time_of_purchase, age, address FROM member ORDER BY Time_of_purchase
|
Find the purchase time, age and address of each member, and show the results in the order of purchase time.
|
CREATE TABLE member (Time_of_purchase VARCHAR, age VARCHAR, address VARCHAR)
|
SELECT SUM(points) FROM table_name_77 WHERE chassis = "ferrari 125" AND year > 1952
|
How many total points were earned with ferrari 125 Chassis after 1952?
|
CREATE TABLE table_name_77 (points INTEGER, chassis VARCHAR, year VARCHAR)
|
SELECT score_in_the_final FROM table_name_47 WHERE surface = "hard" AND date = "august 20, 1989"
|
Which Score in the final has a Surface of hard on august 20, 1989?
|
CREATE TABLE table_name_47 (score_in_the_final VARCHAR, surface VARCHAR, date VARCHAR)
|
SELECT episodes FROM table_name_98 WHERE first_airdate = "september 22, 1989"
|
How many episodes were in the season that first aired on September 22, 1989?
|
CREATE TABLE table_name_98 (episodes VARCHAR, first_airdate VARCHAR)
|
SELECT COUNT(DISTINCT t2.position) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid WHERE t1.clubname = "Bootup Baltimore"
|
How many different roles are there in the club "Bootup Baltimore"?
|
CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE member_of_club (position VARCHAR, clubid VARCHAR)
|
SELECT exportable FROM table_14160327_4 WHERE decade = "1980s"
|
What game allow the 1980s to be exportable?
|
CREATE TABLE table_14160327_4 (exportable VARCHAR, decade VARCHAR)
|
SELECT leading_lady FROM table_name_59 WHERE director = "joseph kane" AND title = "the lonely trail"
|
Who is the leading lady in The Lonely Trail for Joseph Kane?
|
CREATE TABLE table_name_59 (leading_lady VARCHAR, director VARCHAR, title VARCHAR)
|
SELECT position FROM table_28059992_1 WHERE cfl_team = "Edmonton"
|
What is every position for the CFL Edmonton?
|
CREATE TABLE table_28059992_1 (position VARCHAR, cfl_team VARCHAR)
|
SELECT winner_and_score FROM table_name_43 WHERE semifinalists = "goran prpić sergi bruguera"
|
Who is the winner and score of the tournament with semifinalists goran prpić sergi bruguera?
|
CREATE TABLE table_name_43 (winner_and_score VARCHAR, semifinalists VARCHAR)
|
SELECT location FROM table_name_85 WHERE district = "huntingdonshire" AND station_number = "c17"
|
What is the location of the station at Huntingdonshire with a station number of c17?
|
CREATE TABLE table_name_85 (location VARCHAR, district VARCHAR, station_number VARCHAR)
|
SELECT week FROM table_name_66 WHERE opponent = "bye"
|
What week did they have a bye?
|
CREATE TABLE table_name_66 (week VARCHAR, opponent VARCHAR)
|
SELECT director FROM table_name_64 WHERE original_title = "sahə"
|
What is Director, when Original Title is "Sahə"?
|
CREATE TABLE table_name_64 (director VARCHAR, original_title VARCHAR)
|
SELECT MIN(species_in_the_peruvian_amazon) FROM table_11727969_1 WHERE species_in_peru = 1000
|
what's the minimum species in the peruvian amazon with species in peru of 1000
|
CREATE TABLE table_11727969_1 (species_in_the_peruvian_amazon INTEGER, species_in_peru VARCHAR)
|
SELECT womens_doubles FROM table_28138035_4 WHERE mens_singles = "Werner Schlager"
|
Name the womens doubles for werner schlager
|
CREATE TABLE table_28138035_4 (womens_doubles VARCHAR, mens_singles VARCHAR)
|
SELECT entrant FROM table_name_5 WHERE driver = "gary brabham"
|
Who was the entrant for Gary Brabham?
|
CREATE TABLE table_name_5 (entrant VARCHAR, driver VARCHAR)
|
SELECT platform FROM table_name_89 WHERE title = "super mario all-stars"
|
What's the platform of Super Mario All-Stars?
|
CREATE TABLE table_name_89 (platform VARCHAR, title VARCHAR)
|
SELECT cloud_cover FROM weather WHERE zip_code = 94107 GROUP BY cloud_cover ORDER BY COUNT(*) DESC LIMIT 3
|
What is the 3 most common cloud cover rates in the region of zip code 94107?
|
CREATE TABLE weather (cloud_cover VARCHAR, zip_code VARCHAR)
|
SELECT level FROM table_29697744_1 WHERE position = "7th"
|
what is the name of the level for the 7th position
|
CREATE TABLE table_29697744_1 (level VARCHAR, position VARCHAR)
|
SELECT height FROM table_name_2 WHERE floor_count < 25
|
What height has a floor count less than 25?
|
CREATE TABLE table_name_2 (height VARCHAR, floor_count INTEGER)
|
SELECT COUNT(swimsuit) FROM table_11690135_1 WHERE evening_gown = "9.89"
|
How many ladies scored a 9.89 for the evening gown?
|
CREATE TABLE table_11690135_1 (swimsuit VARCHAR, evening_gown VARCHAR)
|
SELECT shuttle_run__sec_ FROM table_name_54 WHERE points = 2
|
How many seconds is a shuttle run that give 2 points?
|
CREATE TABLE table_name_54 (shuttle_run__sec_ VARCHAR, points VARCHAR)
|
SELECT iucn FROM table_name_84 WHERE district = "cayo" AND reserve = "actun tunichil muknal"
|
What is the IUNC of district of Cayo and reserve of Actun Tunichil Muknal?
|
CREATE TABLE table_name_84 (iucn VARCHAR, district VARCHAR, reserve VARCHAR)
|
SELECT tv_time FROM table_name_40 WHERE attendance = "73,578"
|
What is the Tv Time of the game with an Attendance of 73,578?
|
CREATE TABLE table_name_40 (tv_time VARCHAR, attendance VARCHAR)
|
SELECT COUNT(date_of_birth) FROM table_10284385_1 WHERE representative = "Earl Hanley Beshlin"
|
How many birthdays does Earl Hanley Beshlin have?
|
CREATE TABLE table_10284385_1 (date_of_birth VARCHAR, representative VARCHAR)
|
SELECT COUNT(loss) FROM table_name_97 WHERE avg_g = "3.6" AND gain > 51
|
How many yards lost by the player with more gained than 51 and average/g of 3.6?
|
CREATE TABLE table_name_97 (loss VARCHAR, avg_g VARCHAR, gain VARCHAR)
|
SELECT COUNT(wins) FROM table_name_96 WHERE goals_against < 32
|
What was the number of wins with goals against of less than 32?
|
CREATE TABLE table_name_96 (wins VARCHAR, goals_against INTEGER)
|
SELECT surface FROM table_name_40 WHERE score = "7–6 (7–3) , 6–3"
|
What is the surface of the score, 7–6 (7–3) , 6–3?
|
CREATE TABLE table_name_40 (surface VARCHAR, score VARCHAR)
|
SELECT AVG(acc_bal), acc_type FROM customer WHERE credit_score < 50 GROUP BY acc_type
|
For each account type, find the average account balance of customers with credit score lower than 50.
|
CREATE TABLE customer (acc_type VARCHAR, acc_bal INTEGER, credit_score INTEGER)
|
SELECT country FROM table_name_63 WHERE place < 8 AND points < 5
|
Which country has a place smaller than 8 and points smaller than 5?
|
CREATE TABLE table_name_63 (country VARCHAR, place VARCHAR, points VARCHAR)
|
SELECT nationality FROM table_name_81 WHERE heat < 3 AND time = "2:35.31"
|
what is the nationality when the heat is less than 3 and the time is 2:35.31?
|
CREATE TABLE table_name_81 (nationality VARCHAR, heat VARCHAR, time VARCHAR)
|
SELECT player FROM table_name_8 WHERE nationality = "russia"
|
What player is from Russia?
|
CREATE TABLE table_name_8 (player VARCHAR, nationality VARCHAR)
|
SELECT icao FROM table_name_90 WHERE country = "india" AND iata = "trz"
|
What is the ICAO in India with IATA TRZ?
|
CREATE TABLE table_name_90 (icao VARCHAR, country VARCHAR, iata VARCHAR)
|
SELECT year__ceremony_ FROM table_name_38 WHERE language_s_ = "dari" AND original_title = "osama (أسامة)"
|
WHAT IS THE YEAR WITH DARI, AND TITLE osama (أسامة)?
|
CREATE TABLE table_name_38 (year__ceremony_ VARCHAR, language_s_ VARCHAR, original_title VARCHAR)
|
SELECT state_s__on_the_ballot FROM table_name_98 WHERE candidate = "jack herer"
|
Name the staes on the ballot for jack herer
|
CREATE TABLE table_name_98 (state_s__on_the_ballot VARCHAR, candidate VARCHAR)
|
SELECT T2.Name FROM election AS T1 JOIN representative AS T2 ON T1.Representative_ID = T2.Representative_ID WHERE Votes > 10000
|
What are the names of representatives with more than 10000 votes in election?
|
CREATE TABLE representative (Name VARCHAR, Representative_ID VARCHAR); CREATE TABLE election (Representative_ID VARCHAR)
|
SELECT segment_d FROM table_15187735_18 WHERE segment_a = "s Cufflink"
|
Name the segment d for s cufflink
|
CREATE TABLE table_15187735_18 (segment_d VARCHAR, segment_a VARCHAR)
|
SELECT type FROM table_name_1 WHERE award = "song of the year" AND position = "3rd place"
|
What was the type that had an award for song of the year and the position of 3rd place?
|
CREATE TABLE table_name_1 (type VARCHAR, award VARCHAR, position VARCHAR)
|
SELECT AVG(overall) FROM table_name_38 WHERE name = "john ayres" AND pick__number > 4
|
What is the average overall of John Ayres, who had a pick # greater than 4?
|
CREATE TABLE table_name_38 (overall INTEGER, name VARCHAR, pick__number VARCHAR)
|
SELECT venue FROM table_name_72 WHERE home_team = "south melbourne"
|
Where did South Melbourne play as the home team?
|
CREATE TABLE table_name_72 (venue VARCHAR, home_team VARCHAR)
|
SELECT playoffs FROM table_2357201_1 WHERE regular_season = "2nd, Great Lakes"
|
When Cleveland was 2nd, great lakes in the regular season what did they get to in the playoffs?
|
CREATE TABLE table_2357201_1 (playoffs VARCHAR, regular_season VARCHAR)
|
SELECT organization_name FROM organizations ORDER BY date_formed
|
List all the name of organizations in order of the date formed.
|
CREATE TABLE organizations (organization_name VARCHAR, date_formed VARCHAR)
|
SELECT points FROM table_name_1 WHERE year > 1977
|
What is the Focus that has a Year bigger than 1977?
|
CREATE TABLE table_name_1 (points VARCHAR, year INTEGER)
|
SELECT european_competitions FROM table_name_48 WHERE tier = 2 AND pos = 3
|
What European competitions have a tier of 2 and a position of 3?
|
CREATE TABLE table_name_48 (european_competitions VARCHAR, tier VARCHAR, pos VARCHAR)
|
SELECT spouse FROM table_name_71 WHERE name = "margaret of brabant"
|
Who was Margaret of Brabant's spouse?
|
CREATE TABLE table_name_71 (spouse VARCHAR, name VARCHAR)
|
SELECT date FROM table_name_24 WHERE result = "wi by 1 run"
|
On what date was the result Wi by 1 run?
|
CREATE TABLE table_name_24 (date VARCHAR, result VARCHAR)
|
SELECT score FROM table_name_89 WHERE player = "jock hutchison"
|
What is the score for Jock Hutchison?
|
CREATE TABLE table_name_89 (score VARCHAR, player VARCHAR)
|
SELECT result FROM table_name_1 WHERE date = "july 24"
|
What was the Result on July 24?
|
CREATE TABLE table_name_1 (result VARCHAR, date VARCHAR)
|
SELECT class AS pos FROM table_name_25 WHERE year > 1997 AND team = "corvette racing" AND class = "gt1" AND laps = 327
|
Which Class Pos has a Year larger than 1997, a Team of corvette racing, a Class of gt1, and 327 laps?
|
CREATE TABLE table_name_25 (class VARCHAR, laps VARCHAR, year VARCHAR, team VARCHAR)
|
SELECT role_episode FROM table_name_21 WHERE year > 2006 AND recipients_and_nominees = "ellen burstyn"
|
What was the Role/Episode after 2006 with Ellen Burstyn as a recipient and nominee?
|
CREATE TABLE table_name_21 (role_episode VARCHAR, year VARCHAR, recipients_and_nominees VARCHAR)
|
SELECT COUNT(free_float) FROM table_20667854_1 WHERE bse_code = "4EH"
|
How many values of free float for the BSE code of 4EH?
|
CREATE TABLE table_20667854_1 (free_float VARCHAR, bse_code VARCHAR)
|
SELECT played FROM table_12828723_5 WHERE club = "Tumble RFC"
|
What was the played with club tumble rfc?
|
CREATE TABLE table_12828723_5 (played VARCHAR, club VARCHAR)
|
SELECT date FROM table_name_97 WHERE visitor = "toronto"
|
what day did the team go to toronto
|
CREATE TABLE table_name_97 (date VARCHAR, visitor VARCHAR)
|
SELECT Carrier FROM phone GROUP BY Carrier ORDER BY COUNT(*) DESC LIMIT 1
|
Show the most frequently used carrier of the phones.
|
CREATE TABLE phone (Carrier VARCHAR)
|
SELECT model_name FROM table_1147701_5 WHERE engine_code = "D5244 T"
|
What is the model of the engine d5244 t?
|
CREATE TABLE table_1147701_5 (model_name VARCHAR, engine_code VARCHAR)
|
SELECT country FROM table_name_12 WHERE to_par = "–13"
|
Which Country has a To par of –13?
|
CREATE TABLE table_name_12 (country VARCHAR, to_par VARCHAR)
|
SELECT away_team AS score FROM table_name_71 WHERE venue = "windy hill"
|
What was the away team's score at windy hill?
|
CREATE TABLE table_name_71 (away_team VARCHAR, venue VARCHAR)
|
SELECT venue FROM table_name_32 WHERE year > 2003 AND notes = "3:34.88"
|
Which venue had a note of 3:34.88 after 2003?
|
CREATE TABLE table_name_32 (venue VARCHAR, year VARCHAR, notes VARCHAR)
|
SELECT COUNT(release_date) FROM table_name_7 WHERE country = "canada"
|
How many release dates has Canada had?
|
CREATE TABLE table_name_7 (release_date VARCHAR, country VARCHAR)
|
SELECT wins FROM table_name_14 WHERE engine = "zytek" AND racing_team = "super nova racing"
|
How many times did Super Nova Racing win with a zytek engine?
|
CREATE TABLE table_name_14 (wins VARCHAR, engine VARCHAR, racing_team VARCHAR)
|
SELECT MAX(wins) FROM table_name_92 WHERE season < 2007 AND team = "silverstone motorsport academy"
|
What is the largest amount of wins that was before the 2007 season, as well as the Team being silverstone motorsport academy?
|
CREATE TABLE table_name_92 (wins INTEGER, season VARCHAR, team VARCHAR)
|
SELECT voice_actor__japanese_ FROM table_name_59 WHERE character_name = "tien"
|
what voice acter played tien
|
CREATE TABLE table_name_59 (voice_actor__japanese_ VARCHAR, character_name VARCHAR)
|
SELECT country FROM table_name_45 WHERE previous_team__league_ = "kingston frontenacs ( ohl )" AND player = "anthony stewart category:articles with hcards"
|
What is Country, when Previous Team (League) is "Kingston Frontenacs ( OHL )", and when Player is "Anthony Stewart Category:Articles with hCards"?
|
CREATE TABLE table_name_45 (country VARCHAR, previous_team__league_ VARCHAR, player VARCHAR)
|
SELECT song_title FROM table_name_3 WHERE singer_s_ = "sonu nigam" AND lyricist = "dev kohli/biddu" AND number > 8
|
What is the song title sung by Sonu Nigam with lyricists of Dev Kohli/Biddu, and number over 8?
|
CREATE TABLE table_name_3 (song_title VARCHAR, number VARCHAR, singer_s_ VARCHAR, lyricist VARCHAR)
|
SELECT MIN(crowd) FROM table_name_45 WHERE away_team = "collingwood"
|
What was the attendance when Collingwood was the away team?
|
CREATE TABLE table_name_45 (crowd INTEGER, away_team VARCHAR)
|
SELECT process_technology FROM table_199666_1 WHERE wireless_lan = "Intel WiFi Link 5100"
|
What's the process technology of the Intel WiFi Link 5100 wireless LAN?
|
CREATE TABLE table_199666_1 (process_technology VARCHAR, wireless_lan VARCHAR)
|
SELECT AVG(season) FROM table_name_95 WHERE position = "10th"
|
What is the average of seasons for 10th place finishes?
|
CREATE TABLE table_name_95 (season INTEGER, position VARCHAR)
|
SELECT original_release FROM table_name_27 WHERE writer_s_ = "dallas frazier"
|
What is the original Release date of the Track written by Dallas Frazier?
|
CREATE TABLE table_name_27 (original_release VARCHAR, writer_s_ VARCHAR)
|
SELECT COUNT(byu_uu_score) FROM table_13665809_2 WHERE winner = "Utah State (2–1) Won over BYU by media vote"
|
how many byu-uu score with winner being utah state (2–1) won over byu by media vote
|
CREATE TABLE table_13665809_2 (byu_uu_score VARCHAR, winner VARCHAR)
|
SELECT T1.name, COUNT(*) FROM physician AS T1 JOIN patient AS T2 ON T1.employeeid = T2.PCP GROUP BY T1.employeeid
|
How many patients do each physician take care of? List their names and number of patients they take care of.
|
CREATE TABLE patient (PCP VARCHAR); CREATE TABLE physician (name VARCHAR, employeeid VARCHAR)
|
SELECT driver FROM table_name_62 WHERE laps = 45
|
Who is the driver for laps of 45
|
CREATE TABLE table_name_62 (driver VARCHAR, laps VARCHAR)
|
SELECT DISTINCT grade FROM list WHERE classroom = 105
|
Find the grade studying in room 105.
|
CREATE TABLE list (grade VARCHAR, classroom VARCHAR)
|
SELECT AVG(total) FROM table_name_70 WHERE nation = "denmark" AND gold > 0
|
The nation of denmark has what average total nad more than 0 gold?
|
CREATE TABLE table_name_70 (total INTEGER, nation VARCHAR, gold VARCHAR)
|
SELECT SUM(total) FROM table_name_8 WHERE rank = "5" AND silver > 0
|
Rank of 5, and a Silver larger than 0 had what sum of total?
|
CREATE TABLE table_name_8 (total INTEGER, rank VARCHAR, silver VARCHAR)
|
SELECT COUNT(population__2010_census_) FROM table_184334_2 WHERE s_barangay = 51
|
What is the population (2010 census) if s barangay is 51?
|
CREATE TABLE table_184334_2 (population__2010_census_ VARCHAR, s_barangay VARCHAR)
|
SELECT primary_conference FROM table_16078390_2 WHERE institution = "Gonzaga University"
|
What conference does Gonzaga University play in?
|
CREATE TABLE table_16078390_2 (primary_conference VARCHAR, institution VARCHAR)
|
SELECT start_station_id, start_station_name FROM trip GROUP BY start_station_name HAVING COUNT(*) >= 200
|
Find the ids and names of stations from which at least 200 trips started.
|
CREATE TABLE trip (start_station_id VARCHAR, start_station_name VARCHAR)
|
SELECT directed_by FROM table_27905664_1 WHERE production_code = "3X6116"
|
Who directed production code 3x6116?
|
CREATE TABLE table_27905664_1 (directed_by VARCHAR, production_code VARCHAR)
|
SELECT MAX(municipalities) FROM table_221375_1 WHERE province_of_1936 = "Alto Alentejo Province (partly Ribatejo)"
|
Name the most municipalities for alto alentejo province (partly ribatejo)
|
CREATE TABLE table_221375_1 (municipalities INTEGER, province_of_1936 VARCHAR)
|
SELECT lost FROM table_name_35 WHERE tries_against = "30"
|
What team lost with 30 tries against?
|
CREATE TABLE table_name_35 (lost VARCHAR, tries_against VARCHAR)
|
SELECT location FROM table_197446_1 WHERE term_ended = "January 3, 2011"
|
What location was the congressional service of which the term ended in January 3, 2011?
|
CREATE TABLE table_197446_1 (location VARCHAR, term_ended VARCHAR)
|
SELECT SUM(game) FROM table_name_63 WHERE november = 29
|
Which Game has a November of 29?
|
CREATE TABLE table_name_63 (game INTEGER, november VARCHAR)
|
SELECT pre__season FROM table_name_24 WHERE mar_3 = "nr" AND poll = "usa today/espn coaches' poll (top 25)"
|
Which pre-season has a Mar. 3 of nr, and a Poll of usa today/espn coaches' poll (top 25)?
|
CREATE TABLE table_name_24 (pre__season VARCHAR, mar_3 VARCHAR, poll VARCHAR)
|
SELECT result FROM table_21058823_1 WHERE record = "3-2-1"
|
What did they do in the game when their record was 3-2-1?
|
CREATE TABLE table_21058823_1 (result VARCHAR, record VARCHAR)
|
SELECT locomotive_type FROM table_name_93 WHERE name = "winston churchill"
|
What kind of locomotive is Winston Churchill?
|
CREATE TABLE table_name_93 (locomotive_type VARCHAR, name VARCHAR)
|
SELECT SUM(goals_for) FROM table_name_19 WHERE goal_difference > -3 AND club = "real avilés cf" AND goals_against > 60
|
what is the goals when the goal difference is more than -3, the club is real avilés cf and the goals against is more than 60?
|
CREATE TABLE table_name_19 (goals_for INTEGER, goals_against VARCHAR, goal_difference VARCHAR, club VARCHAR)
|
SELECT floors FROM table_name_58 WHERE height_m___feet = "900 / 2,952"
|
How many floors have a Height m / feet of 900 / 2,952?
|
CREATE TABLE table_name_58 (floors VARCHAR, height_m___feet VARCHAR)
|
SELECT opponent FROM table_name_52 WHERE score = "113-124"
|
Which opponent had a 113-124 score?
|
CREATE TABLE table_name_52 (opponent VARCHAR, score VARCHAR)
|
SELECT affiliation FROM table_name_47 WHERE nickname = "cougars"
|
Which Affiliation has a Nickname of cougars?
|
CREATE TABLE table_name_47 (affiliation VARCHAR, nickname VARCHAR)
|
SELECT steals FROM table_17309500_1 WHERE season = "2007/2008"
|
Name the steals for season 2007/2008
|
CREATE TABLE table_17309500_1 (steals VARCHAR, season VARCHAR)
|
SELECT score1 FROM table_name_99 WHERE opponent = "thurrock"
|
What was the final score for the Thurrock?
|
CREATE TABLE table_name_99 (score1 VARCHAR, opponent VARCHAR)
|
SELECT MIN(placings) FROM table_name_30 WHERE nation = "united kingdom" AND rank < 13
|
Tell me the lowest placings for United Kingdom and rank less than 13
|
CREATE TABLE table_name_30 (placings INTEGER, nation VARCHAR, rank VARCHAR)
|
SELECT COUNT(first_year) FROM table_name_18 WHERE displacement_cc > 4719 AND engine = "v8" AND power_hp__kw_ = "335 (246)" AND model = "ghibli ss"
|
What is the total number of First Year, when Displacement CC is greater than 4719, when Engine is V8, when Power HP (kW) is "335 (246)", and when Model is "Ghibli SS"?
|
CREATE TABLE table_name_18 (first_year VARCHAR, model VARCHAR, power_hp__kw_ VARCHAR, displacement_cc VARCHAR, engine VARCHAR)
|
SELECT represent_province FROM table_27946889_2 WHERE hometown = "Woerden"
|
What is the represent province for the contestant whose hometown is Woerden?
|
CREATE TABLE table_27946889_2 (represent_province VARCHAR, hometown VARCHAR)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.