question
stringlengths
12
244
sql
stringlengths
22
468
What is the lowest Sack with a Solo of 24, with Tackles larger than 25.5, with Yards larger than 0?
SELECT MIN Sack FROM table WHERE Solo = 24 AND Tackles > 25.5 AND Yards > 0
What is the total number of Solo with a Player with sean mcinerney, and Yards larger than 0?
SELECT COUNT Solo FROM table WHERE Player = sean mcinerney AND Yards > 0
What is the highest Sack with an Assisted larger than 4, with TD's smaller than 0?
SELECT MAX Sack FROM table WHERE Assisted > 4 AND TD's < 0
At the power plant located in ramakkalmedu, what is the sum of the total capacity (MWe)?
SELECT SUM Total Capacity (MWe) FROM table WHERE Power Plant = ramakkalmedu
What company is the producer in the chennai mohan power plant?
SELECT Producer FROM table WHERE Power Plant = chennai mohan
What company is the producer at the poolavadi location
SELECT Producer FROM table WHERE Location = poolavadi
What company is known as the producer at the kethanur location?
SELECT Producer FROM table WHERE Location = kethanur
Which away team scored 18.11 (119)?
SELECT Away team FROM table WHERE Away team score = 18.11 (119)
Which home team scored 18.11 (119)?
SELECT Home team FROM table WHERE Home team score = 18.11 (119)
When the duration was 11 min, 34 sec, what was the feathered (Fxx)?
SELECT Feathered (Fxx) FROM table WHERE Duration = 11 min, 34 sec
I want to know the city for guelferbytanus b and the 5th
SELECT City FROM table WHERE Date = 5th AND Name = guelferbytanus b
Name the country for the 9th and sign of g e
SELECT Country FROM table WHERE Date = 9th AND Sign = g e
Name the content for sign of g e
SELECT Content FROM table WHERE Sign = g e
Name the city for athous lavrensis
SELECT City FROM table WHERE Name = athous lavrensis
Which race had a distance of 4 miles where the runner-up was not known?
SELECT Race name FROM table WHERE Dist (miles) = 4 AND Runner-up = not known
What date did the Jazz play the Bulls at home?
SELECT Date FROM table WHERE Home = jazz AND Visitor = bulls
On February 26, who was the leading scorer?
SELECT Leading scorer FROM table WHERE Date = february 26
What's the record of Carlos Boozer (23) as the leading scorer?
SELECT Record FROM table WHERE Leading scorer = carlos boozer (23)
What date was Carlos Boozer (23) the leading scorer?
SELECT Date FROM table WHERE Leading scorer = carlos boozer (23)
Who was the leading scorer on February 9?
SELECT Leading scorer FROM table WHERE Date = february 9
While the Hornets were visiting, what date was Deron Williams (29) the leading scorer?
SELECT Date FROM table WHERE Leading scorer = deron williams (29) AND Visitor = hornets
Tell me the ships in classs for kuha class
SELECT Ships in class FROM table WHERE Class = kuha class
How many grids have a Constructor of talbot-lago - talbot, a Laps under 83, and a driver of johnny claes?
SELECT COUNT Grid FROM table WHERE Constructor = talbot-lago - talbot AND Laps < 83 AND Driver = johnny claes
When the away team is Geelong, what is the highest crowd count?
SELECT MAX Crowd FROM table WHERE Away team = geelong
What is the total crowd count for the venue Princes Park?
SELECT SUM Crowd FROM table WHERE Venue = princes park
For the away team with a score of 16.13 (109), what is the total crowd count?
SELECT SUM Crowd FROM table WHERE Away team score = 16.13 (109)
What is the home port of m40?
SELECT Home port FROM table WHERE Pennant = m40
What is the navy for middleton with a home port of portsmouth after 1983?
SELECT Navy FROM table WHERE Home port = portsmouth AND Commissioned > 1983 AND Name = middleton
When did Charles III die?
SELECT Date of death FROM table WHERE Name = charles iii
What is the fastest lap of the race where Giuseppe Farina was the winning driver?
SELECT Fastest lap FROM table WHERE Winning driver = giuseppe farina
What is the report status of the race with Ferrari as the constructor and a monza circuit?
SELECT Report FROM table WHERE Constructor = ferrari AND Circuit = monza
What is the constructor of the race with Juan Manuel Fangio as the fastest lap and Giuseppe Farina as the winning driver?
SELECT Constructor FROM table WHERE Fastest lap = juan manuel fangio AND Winning driver = giuseppe farina
Who was the winning driver of the British Grand Prix where Giuseppe Farina had the fastest lap?
SELECT Winning driver FROM table WHERE Fastest lap = giuseppe farina AND Race = british grand prix
What is the race that had a tyre of p and Juan Manuel Fangio as the winning driver?
SELECT Race FROM table WHERE Tyre = p AND Winning driver = juan manuel fangio
What is the Quantity of Type 2-4-2t?
SELECT SUM Quantity FROM table WHERE Type = 2-4-2t
What was the Quantity on Date 1900?
SELECT SUM Quantity FROM table WHERE Date = 1900
What is the Quantity of type 2-4-2t?
SELECT COUNT Quantity FROM table WHERE Type = 2-4-2t
What is the smallest grid with a Time/Retired of engine, and a qual of less than 138.75?
SELECT MIN Grid FROM table WHERE Time/Retired = engine AND Qual < 138.75
What laps have a rank larger than 13 and the Time/Retired is accident, and a Qual smaller than 136.98?
SELECT Laps FROM table WHERE Rank > 13 AND Time/Retired = accident AND Qual < 136.98
What position is Sal Martinez?
SELECT Position FROM table WHERE Player = sal martinez
What is the compatibility for the Mnemonic d for "dynamite"?
SELECT compatibility FROM table WHERE Mnemonic = d for "dynamite"
Who constructed the car that has a Time/Retired of +2:06.0?
SELECT Constructor FROM table WHERE Time/Retired = +2:06.0
What is the lap total for the grid under 15 that retired due to transmission?
SELECT SUM Laps FROM table WHERE Grid < 15 AND Time/Retired = transmission
Who constructed juan manuel fangio's car with over 76 laps and a grid under 10?
SELECT Constructor FROM table WHERE Grid < 10 AND Laps > 76 AND Driver = juan manuel fangio
what is the sum of laps when grid is less than 20 and johnny herbert is driving?
SELECT SUM Laps FROM table WHERE Grid < 20 AND Driver = johnny herbert
who is the driver for the car constructed by ferrari with a time/retired of +1:06.683?
SELECT Driver FROM table WHERE Constructor = ferrari AND Time/Retired = +1:06.683
who is the driver when grid is 11?
SELECT Driver FROM table WHERE Grid = 11
Who was the opponent with a score of 30-12?
SELECT Opponent FROM table WHERE Result = 30-12
Who was the opponent with a score of 40-20?
SELECT Opponent FROM table WHERE Result = 40-20
When did Geelong play as the away team?
SELECT Date FROM table WHERE Away team = geelong
What is the total capacity (MW) of the farm that is noted as being under construction?
SELECT COUNT Capacity (MW) FROM table WHERE Notes = under construction
Which state is Tehachapi Pass Wind Farm located in?
SELECT State/Province FROM table WHERE Wind farm = tehachapi pass wind farm
Which wind farm is in the USA and is noted as having multiple farms?
SELECT Wind farm FROM table WHERE Country = usa AND Notes = multiple farms
What special notes are included for the windfarm with a capacity (MW) of 343?
SELECT Notes FROM table WHERE Capacity (MW) = 343
What is the total capacity (MW) of the windfarm located in the state/province of Gansu?
SELECT SUM Capacity (MW) FROM table WHERE State/Province = gansu
In the game held at Arden Street Oval, what was the score of the home team?
SELECT Home team score FROM table WHERE Venue = arden street oval
How many people in total have attended games at Kardinia Park?
SELECT SUM Crowd FROM table WHERE Venue = kardinia park
Which game at Arden Street Oval had the lowest attendance?
SELECT MIN Crowd FROM table WHERE Venue = arden street oval
Where was the game against the away team Footscray held?
SELECT Venue FROM table WHERE Away team = footscray
What is the average number of points for clubs that have played more than 42 times?
SELECT AVG Points FROM table WHERE Played > 42
What is the total number of goals scored against clubs that have played more than 42 times?
SELECT COUNT Goals against FROM table WHERE Played > 42
What team was playing at home when the away team scored 6.18 (54)
SELECT Home team score FROM table WHERE Away team score = 6.18 (54)
What was the score when Collingwood was playing away?
SELECT Away team score FROM table WHERE Away team = collingwood
What team had a score of 18.12 (120) when they played at home?
SELECT Home team FROM table WHERE Home team score = 18.12 (120)
On which date did Geelong play at home?
SELECT Date FROM table WHERE Home team = geelong
Which home team has a venue of windy hill?
SELECT Home team FROM table WHERE Venue = windy hill
If essendon is the home team, what venue did they play at?
SELECT Venue FROM table WHERE Home team = essendon
When the home team is richmond, what was the away team playing?
SELECT Away team FROM table WHERE Home team = richmond
If the home team playing is hawthorn and there are more than 13,000 people in the crowd, what did the away team score?
SELECT Away team score FROM table WHERE Crowd > 13,000 AND Home team = hawthorn
When was the lock with 10 caps born?
SELECT Date of Birth (Age) FROM table WHERE Position = lock AND Caps = 10
What were the laps of driver Jean-Christophe Boullion?
SELECT Laps FROM table WHERE Driver = jean-christophe boullion
What Playoffs were held during the years of 2007-08?
SELECT Playoffs FROM table WHERE Year = 2007-08
On which date did Richmond play as an away team?
SELECT Date FROM table WHERE Away team = richmond
What away team did Melbourne play as the home team?
SELECT Away team FROM table WHERE Home team = melbourne
Which away team has an away team score of 11.16 (82)?
SELECT Away team FROM table WHERE Away team score = 11.16 (82)
Which away team has an away team score of 13.25 (103)?
SELECT Away team FROM table WHERE Away team score = 13.25 (103)
Which chapter was founded later than 2012?
SELECT Chapter FROM table WHERE Founding Date > 2012
What is the chapter in Lubbock?
SELECT Chapter FROM table WHERE City = lubbock
Which university has a Year of Foundation before 1908, and a University Status before 1988?
SELECT University FROM table WHERE Year of Foundation < 1908 AND University Status < 1988
What was the highest Interview score from a contestant who had a swimsuit score of 8.857 and an Average score over 9.097?
SELECT MAX Interview FROM table WHERE Swimsuit = 8.857 AND Average > 9.097
What year has a Top 25 of 0, and a Earnings ($) larger than 0?
SELECT Year FROM table WHERE Top 25 = 0 AND Earnings ($) > 0
What is the highest Top 25 with a Money list rank of 232 and Cuts smaller than 2?
SELECT MAX Top 25 FROM table WHERE Money list rank = 232 AND Cuts made < 2
What is the smallest Earnings that has a Money list rank of 6 and Starts smaller than 22?
SELECT MIN Earnings ($) FROM table WHERE Money list rank = 6 AND Starts < 22
What is the highest number of Cuts made that has a Top 10 smaller than 8 and Wins larger than 0?
SELECT MAX Cuts made FROM table WHERE Top 10 < 8 AND Wins > 0
How many Starts that have Cuts made of 2, Top 25 larger than 0, and Earnings ($) smaller than 338,067?
SELECT COUNT Starts FROM table WHERE Cuts made = 2 AND Top 25 > 0 AND Earnings ($) < 338,067
Which event was in round 1, resulted in a win, and a record of 15-4?
SELECT Event FROM table WHERE Round = 1 AND Res. = win AND Record = 15-4
What is the result when the time was 5:00 and a record of 14-4?
SELECT Res. FROM table WHERE Time = 5:00 AND Record = 14-4
How many wins did Ayr United have?
SELECT Wins FROM table WHERE Club = ayr united
When was the final loss of the club last won in 2001 and has a total of 3 wins?
SELECT Last final lost FROM table WHERE Wins = 3 AND Last win = 2001
When was the last win for the club that had a final loss in 2011?
SELECT Last win FROM table WHERE Last final lost = 2011
How many wins did the 8 time runner-up have?
SELECT Wins FROM table WHERE Runners-up = 8
How many wins did the club have with the last win in 2000?
SELECT Wins FROM table WHERE Last win = 2000
Who has the highest TDs, with yards of 9, and carries smaller than 13?
SELECT MAX TD's FROM table WHERE Yards = 9 AND Car. < 13
What are the carries of the player Jeremiah Pope?
SELECT SUM Car. FROM table WHERE Player = jeremiah pope
What was the largest crowd that was in attendance for fitzroy?
SELECT MAX Crowd FROM table WHERE Home team = fitzroy
Who plays g position for the st. louis bombers?
SELECT Player FROM table WHERE Team = st. louis bombers AND Position = g
Who plays f position for depauw?
SELECT Player FROM table WHERE Position = f AND College = depauw
What position does the saint louis player play?
SELECT Position FROM table WHERE College = saint louis
Who plays for sam houston state?
SELECT Player FROM table WHERE College = sam houston state
How many positions have Points of 30-8 and more than 25 goals?
SELECT COUNT Position FROM table WHERE Points = 30-8 AND Goals for > 25