question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
At what date is the score 66-72-64-65=267?
|
CREATE TABLE table_1529260_2 (dates VARCHAR, score VARCHAR)
|
SELECT dates FROM table_1529260_2 WHERE score = 66 - 72 - 64 - 65 = 267
|
Name the average ERP W and call sign of w237br
|
CREATE TABLE table_name_36 (erp_w INTEGER, call_sign VARCHAR)
|
SELECT AVG(erp_w) FROM table_name_36 WHERE call_sign = "w237br"
|
What was the score of the game where Montreal was the home team and the Devils had a record of 40–24–6?
|
CREATE TABLE table_name_91 (score VARCHAR, home VARCHAR, record VARCHAR)
|
SELECT score FROM table_name_91 WHERE home = "montreal" AND record = "40–24–6"
|
What is the place of Mark O'Meara?
|
CREATE TABLE table_name_28 (place VARCHAR, player VARCHAR)
|
SELECT place FROM table_name_28 WHERE player = "mark o'meara"
|
What was the name that had a starting price of 11/1 and a jockey named Garrett Cotter?
|
CREATE TABLE table_20668268_1 (name VARCHAR, starting_price VARCHAR, jockey VARCHAR)
|
SELECT name FROM table_20668268_1 WHERE starting_price = "11/1" AND jockey = "Garrett Cotter"
|
What is the street address of Notre Dame Basilica?
|
CREATE TABLE table_name_74 (street_address VARCHAR, name VARCHAR)
|
SELECT street_address FROM table_name_74 WHERE name = "notre dame basilica"
|
When is the first broadcast for episodes where Rufus's guest is Jack Whitehall?
|
CREATE TABLE table_19930660_3 (first_broadcast VARCHAR, rufus_guest VARCHAR)
|
SELECT first_broadcast FROM table_19930660_3 WHERE rufus_guest = "Jack Whitehall"
|
Who was the home team at MCG?
|
CREATE TABLE table_name_39 (home_team VARCHAR, venue VARCHAR)
|
SELECT home_team FROM table_name_39 WHERE venue = "mcg"
|
What are the minutes of the Player from Real Madrid Club with a Rank of 7 or larger?
|
CREATE TABLE table_name_73 (minutes INTEGER, rank VARCHAR, club VARCHAR)
|
SELECT SUM(minutes) FROM table_name_73 WHERE rank > 7 AND club = "real madrid"
|
Which Competition has the Date July 1, 2000?
|
CREATE TABLE table_name_17 (competition VARCHAR, date VARCHAR)
|
SELECT competition FROM table_name_17 WHERE date = "july 1, 2000"
|
Name the average place for ties less than 1 and losess more than 3 with points of 6 qc
|
CREATE TABLE table_name_70 (place INTEGER, losses VARCHAR, ties VARCHAR, points VARCHAR)
|
SELECT AVG(place) FROM table_name_70 WHERE ties < 1 AND points = "6 qc" AND losses > 3
|
Which Site that has a Sex and other data of old male?
|
CREATE TABLE table_name_42 (site INTEGER, sex_and_other_data VARCHAR)
|
SELECT MAX(site) FROM table_name_42 WHERE sex_and_other_data = "old male"
|
What score has tim duncan (27) as the leading scorer?
|
CREATE TABLE table_name_96 (score VARCHAR, leading_scorer VARCHAR)
|
SELECT score FROM table_name_96 WHERE leading_scorer = "tim duncan (27)"
|
How many entries are listed in poor law union when townland is dromidiclogh?
|
CREATE TABLE table_30121075_1 (poor_law_union VARCHAR, townland VARCHAR)
|
SELECT COUNT(poor_law_union) FROM table_30121075_1 WHERE townland = "Dromidiclogh"
|
Who is the manager of the Stenhousemuir club?
|
CREATE TABLE table_name_16 (manager VARCHAR, club VARCHAR)
|
SELECT manager FROM table_name_16 WHERE club = "stenhousemuir"
|
What was the attendance at the Red Sox game that had a loss of Wakefield (7–10)?
|
CREATE TABLE table_name_22 (attendance VARCHAR, loss VARCHAR)
|
SELECT attendance FROM table_name_22 WHERE loss = "wakefield (7–10)"
|
what is the highest grid when the laps is less than 44 and the constructor is renault?
|
CREATE TABLE table_name_10 (grid INTEGER, laps VARCHAR, constructor VARCHAR)
|
SELECT MAX(grid) FROM table_name_10 WHERE laps < 44 AND constructor = "renault"
|
what is the date for catolog 88697185162 when the region is canada?
|
CREATE TABLE table_name_9 (date VARCHAR, catalog VARCHAR, region VARCHAR)
|
SELECT date FROM table_name_9 WHERE catalog = 88697185162 AND region = "canada"
|
Who is the gymnast with a floor score of 14.800?
|
CREATE TABLE table_name_83 (gymnast VARCHAR, floor VARCHAR)
|
SELECT gymnast FROM table_name_83 WHERE floor = "14.800"
|
Who was the leading scorer and how many did he score for the game on June 13?
|
CREATE TABLE table_name_54 (high_points VARCHAR, date VARCHAR)
|
SELECT high_points FROM table_name_54 WHERE date = "june 13"
|
What is Place, when Score is "71-71-69-71=282"?
|
CREATE TABLE table_name_3 (place VARCHAR, score VARCHAR)
|
SELECT place FROM table_name_3 WHERE score = 71 - 71 - 69 - 71 = 282
|
What was the attendance when the VFL played Junction Oval?
|
CREATE TABLE table_name_58 (crowd VARCHAR, venue VARCHAR)
|
SELECT COUNT(crowd) FROM table_name_58 WHERE venue = "junction oval"
|
Name the scores for david baddiel and maureen lipman
|
CREATE TABLE table_23575917_2 (scores VARCHAR, davids_team VARCHAR)
|
SELECT COUNT(scores) FROM table_23575917_2 WHERE davids_team = "David Baddiel and Maureen Lipman"
|
What is the interview score for the state of Virginia?
|
CREATE TABLE table_12338595_1 (interview VARCHAR, state VARCHAR)
|
SELECT interview FROM table_12338595_1 WHERE state = "Virginia"
|
The player who plays left wing is from what college/junior/club team?
|
CREATE TABLE table_17371135_30 (college_junior_club_team__league_ VARCHAR, position VARCHAR)
|
SELECT college_junior_club_team__league_ FROM table_17371135_30 WHERE position = "Left Wing"
|
When mount gauttier is the peak what is the highest prominence in meters?
|
CREATE TABLE table_18946749_1 (prominence__m_ INTEGER, peak VARCHAR)
|
SELECT MAX(prominence__m_) FROM table_18946749_1 WHERE peak = "Mount Gauttier"
|
Where did the team in which Tom Pryce was in Pole Position race?
|
CREATE TABLE table_name_10 (location VARCHAR, pole_position VARCHAR)
|
SELECT location FROM table_name_10 WHERE pole_position = "tom pryce"
|
What is the rank of the cadillac northstar lmp02 chassis?
|
CREATE TABLE table_name_78 (rank VARCHAR, chassis VARCHAR)
|
SELECT rank FROM table_name_78 WHERE chassis = "cadillac northstar lmp02"
|
Which game was on September 12?
|
CREATE TABLE table_name_2 (game VARCHAR, date VARCHAR)
|
SELECT game FROM table_name_2 WHERE date = "september 12"
|
What was the time of the swimmer in lane 7?
|
CREATE TABLE table_name_77 (time VARCHAR, lane VARCHAR)
|
SELECT time FROM table_name_77 WHERE lane = 7
|
In how many years was Tom Fleming the final television commentator?
|
CREATE TABLE table_17766232_7 (year_s_ VARCHAR, final_television_commentator VARCHAR)
|
SELECT COUNT(year_s_) FROM table_17766232_7 WHERE final_television_commentator = "Tom Fleming"
|
What was Larry Nelson's final score?
|
CREATE TABLE table_name_39 (score VARCHAR, player VARCHAR)
|
SELECT score FROM table_name_39 WHERE player = "larry nelson"
|
What is the name of the person with a total of 22?
|
CREATE TABLE table_name_6 (name VARCHAR, total VARCHAR)
|
SELECT name FROM table_name_6 WHERE total = 22
|
What is the lowest total goals when position is df, and FA Cup Goals is smaller than 0?
|
CREATE TABLE table_name_89 (total_goals INTEGER, position VARCHAR, fa_cup_goals VARCHAR)
|
SELECT MIN(total_goals) FROM table_name_89 WHERE position = "df" AND fa_cup_goals < 0
|
What is the lowest number of wins of the team with less than 24 scored, 27 conceded, and more than 18 played?
|
CREATE TABLE table_name_32 (wins INTEGER, played VARCHAR, scored VARCHAR, conceded VARCHAR)
|
SELECT MIN(wins) FROM table_name_32 WHERE scored < 24 AND conceded = 27 AND played > 18
|
What shows for 2nd round when the team 1 was Rc Strasbourg (d1)?
|
CREATE TABLE table_name_63 (team_1 VARCHAR)
|
SELECT 2 AS nd_round FROM table_name_63 WHERE team_1 = "rc strasbourg (d1)"
|
What is the earliest year that the discus throw event occur?
|
CREATE TABLE table_name_2 (year INTEGER, event VARCHAR)
|
SELECT MIN(year) FROM table_name_2 WHERE event = "discus throw"
|
List the employees who have not showed up in any circulation history of documents. List the employee's name.
|
CREATE TABLE Circulation_History (employee_name VARCHAR); CREATE TABLE Employees (employee_name VARCHAR)
|
SELECT employee_name FROM Employees EXCEPT SELECT Employees.employee_name FROM Employees JOIN Circulation_History ON Circulation_History.employee_id = Employees.employee_id
|
Who does pádraig harrington play for?
|
CREATE TABLE table_name_72 (country VARCHAR, player VARCHAR)
|
SELECT country FROM table_name_72 WHERE player = "pádraig harrington"
|
What is the average number of laps for max biaggi
|
CREATE TABLE table_name_80 (laps INTEGER, rider VARCHAR)
|
SELECT AVG(laps) FROM table_name_80 WHERE rider = "max biaggi"
|
Where was the universiade held in 1959?
|
CREATE TABLE table_name_3 (venue VARCHAR, tournament VARCHAR, year VARCHAR)
|
SELECT venue FROM table_name_3 WHERE tournament = "universiade" AND year = 1959
|
List the names of wrestlers that have not been eliminated.
|
CREATE TABLE elimination (Name VARCHAR, Wrestler_ID VARCHAR); CREATE TABLE wrestler (Name VARCHAR, Wrestler_ID VARCHAR)
|
SELECT Name FROM wrestler WHERE NOT Wrestler_ID IN (SELECT Wrestler_ID FROM elimination)
|
What was the date of the victory when the Soviet Unit was 73 giap, and the Enemy Aircraft was bf.109g-? w.nr.?
|
CREATE TABLE table_name_74 (date__ddmmyyyy_ VARCHAR, soviet_unit VARCHAR, enemy_aircraft VARCHAR)
|
SELECT date__ddmmyyyy_ FROM table_name_74 WHERE soviet_unit = "73 giap" AND enemy_aircraft = "bf.109g-? w.nr.?"
|
What was the spending per capita when the revenue per capita was $7,755?
|
CREATE TABLE table_14700336_1 (spending_per_capita VARCHAR, revenue_per_capita VARCHAR)
|
SELECT spending_per_capita FROM table_14700336_1 WHERE revenue_per_capita = "$7,755"
|
What the name of Peter White's party?
|
CREATE TABLE table_name_31 (party VARCHAR, member VARCHAR)
|
SELECT party FROM table_name_31 WHERE member = "peter white"
|
What year weas John McEnroe the champion?
|
CREATE TABLE table_name_64 (year INTEGER, champion VARCHAR)
|
SELECT AVG(year) FROM table_name_64 WHERE champion = "john mcenroe"
|
What year was the brabham bt46 bt48 bt49 Chassis common?
|
CREATE TABLE table_name_89 (year INTEGER, chassis VARCHAR)
|
SELECT AVG(year) FROM table_name_89 WHERE chassis = "brabham bt46 bt48 bt49"
|
Which Position has a College of colorado?
|
CREATE TABLE table_name_31 (position VARCHAR, college VARCHAR)
|
SELECT position FROM table_name_31 WHERE college = "colorado"
|
What weapon is used by the guardian whose consort is śacī?
|
CREATE TABLE table_100518_1 (weapon VARCHAR, consort VARCHAR)
|
SELECT weapon FROM table_100518_1 WHERE consort = "Śacī"
|
Name the studio for super callanetics
|
CREATE TABLE table_27303975_2 (studio VARCHAR, title VARCHAR)
|
SELECT studio FROM table_27303975_2 WHERE title = "Super Callanetics"
|
How many Mixed Doubles won when Oliver Pongratz won the Men's Singles?
|
CREATE TABLE table_12164707_1 (mixed_doubles VARCHAR, mens_singles VARCHAR)
|
SELECT COUNT(mixed_doubles) FROM table_12164707_1 WHERE mens_singles = "Oliver Pongratz"
|
What place is Fredrik Jacobson from?
|
CREATE TABLE table_name_87 (place VARCHAR, player VARCHAR)
|
SELECT place FROM table_name_87 WHERE player = "fredrik jacobson"
|
Name the most against for minas gerais
|
CREATE TABLE table_15400878_1 (against INTEGER, team VARCHAR)
|
SELECT MAX(against) FROM table_15400878_1 WHERE team = "Minas Gerais"
|
What is the English word for the Latin word uxor?
|
CREATE TABLE table_name_92 (english VARCHAR, latin VARCHAR)
|
SELECT english FROM table_name_92 WHERE latin = "uxor"
|
Find the first name and office of history professor who did not get a Ph.D. degree.
|
CREATE TABLE department (dept_code VARCHAR, dept_name VARCHAR); CREATE TABLE professor (prof_office VARCHAR, emp_num VARCHAR, dept_code VARCHAR, prof_high_degree VARCHAR); CREATE TABLE employee (emp_fname VARCHAR, emp_num VARCHAR)
|
SELECT T2.emp_fname, T1.prof_office FROM professor AS T1 JOIN employee AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T1.dept_code = T3.dept_code WHERE T3.dept_name = 'History' AND T1.prof_high_degree <> 'Ph.D.'
|
Which school has the mascot of the Colonials?
|
CREATE TABLE table_16403890_1 (institution VARCHAR, team_nickname VARCHAR)
|
SELECT institution FROM table_16403890_1 WHERE team_nickname = "Colonials"
|
What's the lineage of ōoka tadatomo (大岡忠與)?
|
CREATE TABLE table_name_15 (lineage VARCHAR, name VARCHAR)
|
SELECT lineage FROM table_name_15 WHERE name = "ōoka tadatomo (大岡忠與)"
|
Which FA Cup is the highest one that has a Malaysia Cup of 0, and a Player of ahmad fouzee masuri, and a Total larger than 0?
|
CREATE TABLE table_name_25 (fa_cup INTEGER, total VARCHAR, malaysia_cup VARCHAR, player VARCHAR)
|
SELECT MAX(fa_cup) FROM table_name_25 WHERE malaysia_cup = 0 AND player = "ahmad fouzee masuri" AND total > 0
|
what is the lowest crowd at kardinia park
|
CREATE TABLE table_name_50 (crowd INTEGER, venue VARCHAR)
|
SELECT MIN(crowd) FROM table_name_50 WHERE venue = "kardinia park"
|
What is the Attendance, when the Opponent is the Tampa Bay Buccaneers?
|
CREATE TABLE table_name_80 (attendance VARCHAR, opponent VARCHAR)
|
SELECT attendance FROM table_name_80 WHERE opponent = "tampa bay buccaneers"
|
Name the total number of position for don clegg
|
CREATE TABLE table_19730892_1 (position VARCHAR, name VARCHAR)
|
SELECT COUNT(position) FROM table_19730892_1 WHERE name = "Don Clegg"
|
What is the highest wkts for james hopes who had less than 26 runs and more than 2 ovrs?
|
CREATE TABLE table_name_21 (wkts INTEGER, ovrs VARCHAR, runs VARCHAR, player VARCHAR)
|
SELECT MAX(wkts) FROM table_name_21 WHERE runs < 26 AND player = "james hopes" AND ovrs > 2
|
What home is dated march 19?
|
CREATE TABLE table_name_68 (home VARCHAR, date VARCHAR)
|
SELECT home FROM table_name_68 WHERE date = "march 19"
|
What is the sum of Poles, when Season is greater than 2004, and when Podiums is less than 1?
|
CREATE TABLE table_name_64 (poles INTEGER, season VARCHAR, podiums VARCHAR)
|
SELECT SUM(poles) FROM table_name_64 WHERE season < 2004 AND podiums < 1
|
What was the 2nd event aired on 8 June 2008?
|
CREATE TABLE table_name_32 (event_2 VARCHAR, air_date VARCHAR)
|
SELECT event_2 FROM table_name_32 WHERE air_date = "8 june 2008"
|
What is the title of the episode directed by Rodney Clouden?
|
CREATE TABLE table_23242958_1 (title VARCHAR, directed_by VARCHAR)
|
SELECT title FROM table_23242958_1 WHERE directed_by = "Rodney Clouden"
|
What is the percentage of others when McCain is at 57.7%
|
CREATE TABLE table_20573232_1 (others_percentage VARCHAR, mccain_percentage VARCHAR)
|
SELECT others_percentage FROM table_20573232_1 WHERE mccain_percentage = "57.7%"
|
What is the smallest number of people to attend a game with an H/A of h and the opponent was Roma?
|
CREATE TABLE table_name_67 (attendance INTEGER, h___a VARCHAR, opponents VARCHAR)
|
SELECT MIN(attendance) FROM table_name_67 WHERE h___a = "h" AND opponents = "roma"
|
Name the phoneme when the example is /umsʁ/
|
CREATE TABLE table_name_78 (phoneme VARCHAR, example VARCHAR)
|
SELECT phoneme FROM table_name_78 WHERE example = "/umsʁ/"
|
Name the high points for the staples center 18,997
|
CREATE TABLE table_23285849_8 (high_points VARCHAR, location_attendance VARCHAR)
|
SELECT high_points FROM table_23285849_8 WHERE location_attendance = "Staples Center 18,997"
|
What was the average losses for team with points larger than 3 and played larger thna 14?
|
CREATE TABLE table_name_65 (lost INTEGER, points VARCHAR, played VARCHAR)
|
SELECT AVG(lost) FROM table_name_65 WHERE points > 3 AND played > 14
|
what is the highest top-5 when cuts made is more than 39?
|
CREATE TABLE table_name_40 (top_5 INTEGER, cuts_made INTEGER)
|
SELECT MAX(top_5) FROM table_name_40 WHERE cuts_made > 39
|
Name the average bronze for total less than 1
|
CREATE TABLE table_name_32 (bronze INTEGER, total INTEGER)
|
SELECT AVG(bronze) FROM table_name_32 WHERE total < 1
|
How many endowments does Mosaic Stadium have?
|
CREATE TABLE table_12896884_1 (endowment VARCHAR, football_stadium VARCHAR)
|
SELECT COUNT(endowment) FROM table_12896884_1 WHERE football_stadium = "Mosaic Stadium"
|
What was the score of the game played on a clay surface on June 6, 2005?
|
CREATE TABLE table_name_23 (score VARCHAR, surface VARCHAR, date VARCHAR)
|
SELECT score FROM table_name_23 WHERE surface = "clay" AND date = "june 6, 2005"
|
What is the size of the 2009 electorate for Gwalior Rural?
|
CREATE TABLE table_name_94 (number_of_electorates__2009_ VARCHAR, name VARCHAR)
|
SELECT number_of_electorates__2009_ FROM table_name_94 WHERE name = "gwalior rural"
|
What is the census ranking when the area is 78.67 ?
|
CREATE TABLE table_170969_2 (census_ranking VARCHAR, area_km_2 VARCHAR)
|
SELECT census_ranking FROM table_170969_2 WHERE area_km_2 = "78.67"
|
What is Score, when Game is less than 61, when February is less than 11, and when Opponent is "@ Buffalo Sabres"?
|
CREATE TABLE table_name_25 (score VARCHAR, opponent VARCHAR, game VARCHAR, february VARCHAR)
|
SELECT score FROM table_name_25 WHERE game < 61 AND february < 11 AND opponent = "@ buffalo sabres"
|
How many times did incumbent ruben hinojosa get elected?
|
CREATE TABLE table_1341453_45 (results VARCHAR, incumbent VARCHAR)
|
SELECT COUNT(results) FROM table_1341453_45 WHERE incumbent = "Ruben Hinojosa"
|
How many centerfold models were there when the cover model was Torrie Wilson?
|
CREATE TABLE table_1566852_4 (centerfold_model VARCHAR, cover_model VARCHAR)
|
SELECT COUNT(centerfold_model) FROM table_1566852_4 WHERE cover_model = "Torrie Wilson"
|
What division was Ukraine in 2006/07?
|
CREATE TABLE table_name_66 (division VARCHAR, country VARCHAR, season VARCHAR)
|
SELECT division FROM table_name_66 WHERE country = "ukraine" AND season = "2006/07"
|
Which location has a capacity larger than 52,000?
|
CREATE TABLE table_name_94 (location VARCHAR, capacity INTEGER)
|
SELECT location FROM table_name_94 WHERE capacity > 52 OFFSET 000
|
In the 2008/2009 season one team had 39 tries against, how many losing bonuses did they have that year?
|
CREATE TABLE table_13399573_4 (losing_bonus VARCHAR, tries_against VARCHAR)
|
SELECT losing_bonus FROM table_13399573_4 WHERE tries_against = "39"
|
How many networks are there whose version of the shows includes judges tba and the presenter is Arbana Osmani?
|
CREATE TABLE table_28190363_1 (network VARCHAR, judges VARCHAR, presenter_s_ VARCHAR)
|
SELECT COUNT(network) FROM table_28190363_1 WHERE judges = "TBA" AND presenter_s_ = "Arbana Osmani"
|
what is the polluntant when the regulatory citation is 40 cfr 50.7(a) and the type is primary?
|
CREATE TABLE table_name_27 (pollutant VARCHAR, regulatory_citation VARCHAR, type VARCHAR)
|
SELECT pollutant FROM table_name_27 WHERE regulatory_citation = "40 cfr 50.7(a)" AND type = "primary"
|
What was the score in 1969?
|
CREATE TABLE table_name_9 (score VARCHAR, year VARCHAR)
|
SELECT score FROM table_name_9 WHERE year = "1969"
|
When united arab emirates is the country how many fastest qualifying are there?
|
CREATE TABLE table_26358264_2 (fastest_qualifying VARCHAR, country VARCHAR)
|
SELECT COUNT(fastest_qualifying) FROM table_26358264_2 WHERE country = "United Arab Emirates"
|
What's the tenure of 3rd son of tadatsune?
|
CREATE TABLE table_name_14 (tenure VARCHAR, lineage VARCHAR)
|
SELECT tenure FROM table_name_14 WHERE lineage = "3rd son of tadatsune"
|
What's the product that has less than 98.6 melamine content, more than 1 sample failed and took less than 3 samples?
|
CREATE TABLE table_name_88 (product VARCHAR, samples_taken VARCHAR, melamine_content_mg_kg_ VARCHAR, samples_failed VARCHAR)
|
SELECT product FROM table_name_88 WHERE melamine_content_mg_kg_ < 98.6 AND samples_failed > 1 AND samples_taken < 3
|
Which province includes Axel Heiberg Island?
|
CREATE TABLE table_name_25 (province VARCHAR, mountain_range VARCHAR)
|
SELECT province FROM table_name_25 WHERE mountain_range = "axel heiberg island"
|
What is the occupation of the person with a hometown of Hampshire?
|
CREATE TABLE table_name_17 (occupation VARCHAR, hometown VARCHAR)
|
SELECT occupation FROM table_name_17 WHERE hometown = "hampshire"
|
What was the original title for the film used in nomination of keep smiling?
|
CREATE TABLE table_name_36 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)
|
SELECT original_title FROM table_name_36 WHERE film_title_used_in_nomination = "keep smiling"
|
What shows for 1992 when 2001 is 1r, 1994 is 1r, and the 2002 is qf?
|
CREATE TABLE table_name_3 (Id VARCHAR)
|
SELECT 1992 FROM table_name_3 WHERE 2001 = "1r" AND 1994 = "1r" AND 2002 = "qf"
|
Which Democratic has a District smaller than 7, and a Republican of dan mansell?
|
CREATE TABLE table_name_99 (democratic VARCHAR, district VARCHAR, republican VARCHAR)
|
SELECT democratic FROM table_name_99 WHERE district < 7 AND republican = "dan mansell"
|
Who was the opponent of Anand in the match with 20 moves that opened with E15 Queen's Indian Defence?
|
CREATE TABLE table_name_87 (black VARCHAR, opening VARCHAR, white VARCHAR, moves VARCHAR)
|
SELECT black FROM table_name_87 WHERE white = "anand" AND moves = 20 AND opening = "e15 queen's indian defence"
|
Which Week has a Result of w 24-0, and an Attendance smaller than 10,000?
|
CREATE TABLE table_name_40 (week INTEGER, result VARCHAR, attendance VARCHAR)
|
SELECT MAX(week) FROM table_name_40 WHERE result = "w 24-0" AND attendance < 10 OFFSET 000
|
what is the average bronze when the team is northwest territories and gold is more than 34?
|
CREATE TABLE table_name_23 (bronze INTEGER, team VARCHAR, gold VARCHAR)
|
SELECT AVG(bronze) FROM table_name_23 WHERE team = "northwest territories" AND gold > 34
|
How many faculty members participate in an activity?
|
CREATE TABLE Faculty_participates_in (FacID VARCHAR)
|
SELECT COUNT(DISTINCT FacID) FROM Faculty_participates_in
|
What was the cylinder size of this engine that was made with only 88 pieces?
|
CREATE TABLE table_25695027_1 (cylinder_size VARCHAR, number_built VARCHAR)
|
SELECT cylinder_size FROM table_25695027_1 WHERE number_built = "88"
|
How many premierships for the commonwealth bank trophy league?
|
CREATE TABLE table_name_25 (premierships VARCHAR, league VARCHAR)
|
SELECT premierships FROM table_name_25 WHERE league = "commonwealth bank trophy"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.