question
stringlengths 12
244
| sql
stringlengths 22
468
|
---|---|
What is the number Played that has 310 Points for?
|
SELECT Played FROM table WHERE Points for = 310
|
What Losing bonus has a Points against of 588?
|
SELECT Losing bonus FROM table WHERE Points against = 588
|
What Tries against has a Losing bonus of 7?
|
SELECT Tries against FROM table WHERE Losing bonus = 7
|
What Try bonus has a Points against of 488?
|
SELECT Try bonus FROM table WHERE Points against = 488
|
What Points for has a Try bonus of 140?
|
SELECT Points for FROM table WHERE Try bonus = 140
|
What Drawn has a Tries against of 0?
|
SELECT Drawn FROM table WHERE Tries against = 0
|
What is the days held the champion with a reign larger than 3 and 1 defense has?
|
SELECT Days held FROM table WHERE Reign > 3 AND Defenses = 1
|
What is the days held the champion with a reign larger than 3 and less than 1 defense has?
|
SELECT Days held FROM table WHERE Reign > 3 AND Defenses < 1
|
What is the average defenses a champion with 404 days held and a reign larger than 1 has?
|
SELECT AVG Defenses FROM table WHERE Days held = 404 AND Reign > 1
|
What is the lowest defense a champion with 345 days held has?
|
SELECT MIN Defenses FROM table WHERE Days held = 345
|
On what date was there a record of 76-72?
|
SELECT Date FROM table WHERE Record = 76-72
|
What was the attendance that had a loss of Ponson (1-5)?
|
SELECT Attendance FROM table WHERE Loss = ponson (1-5)
|
On which day was there a record of 36-39?
|
SELECT Date FROM table WHERE Record = 36-39
|
On what day was the record 30-31?
|
SELECT Date FROM table WHERE Record = 30-31
|
Who was the opponent at the game that had a loss of Leonard (7β8)?
|
SELECT Opponent FROM table WHERE Loss = leonard (7β8)
|
What was the score of the game when the record was 18β43?
|
SELECT Score FROM table WHERE Record = 18β43
|
What was the score of the game against the Royals when the record was 24β52?
|
SELECT Score FROM table WHERE Opponent = royals AND Record = 24β52
|
What was the score of the game when the record was 22β46?
|
SELECT Score FROM table WHERE Record = 22β46
|
What is the real name of the person whose primary military specialty is shock paratrooper?
|
SELECT Real Name FROM table WHERE Primary military speciality = shock paratrooper
|
What is the birthplace of Pete Sanderson?
|
SELECT Birthplace FROM table WHERE Real Name = pete sanderson
|
What role did Jean-Luc Bouvier serve?
|
SELECT Function (figure) FROM table WHERE Real Name = jean-luc bouvier
|
What is the real name of the person who is a pilot of the silent attack kayak?
|
SELECT Real Name FROM table WHERE Function (figure) = pilot of the silent attack kayak
|
What is the code name of the person born in Liverpool?
|
SELECT Code Name FROM table WHERE Birthplace = liverpool
|
What is the names for the medalist in the sport of canoeing?
|
SELECT Name FROM table WHERE Sport = canoeing
|
What games had the women's half middleweight event?
|
SELECT Games FROM table WHERE Event = women's half middleweight
|
Who received the bronze medal in the 2000 Sydney games?
|
SELECT Name FROM table WHERE Medal = bronze AND Games = 2000 sydney
|
How many people attended when opponent was twins?
|
SELECT COUNT Attendance FROM table WHERE Opponent = twins
|
Which date has a Record of 41-46?
|
SELECT Date FROM table WHERE Record = 41-46
|
Which score has a Record of 48-55?
|
SELECT Score FROM table WHERE Record = 48-55
|
Which score has a Record of 44-49?
|
SELECT Score FROM table WHERE Record = 44-49
|
Which score has an Attendance larger than 16,571, and a Loss of mcdowell (0-1)?
|
SELECT Score FROM table WHERE Attendance > 16,571 AND Loss = mcdowell (0-1)
|
Which score has an Opponent of white sox, and a Record of 2-0?
|
SELECT Score FROM table WHERE Opponent = white sox AND Record = 2-0
|
How many votes did candice sjostrom receive?
|
SELECT AVG Popular Votes FROM table WHERE Candidate = candice sjostrom
|
What percentage did chris wright receive?
|
SELECT Percentage FROM table WHERE Candidate = chris wright
|
How many votes for the candidate after 1992, 1.59% of the vote, and the office of us representative 4?
|
SELECT AVG Popular Votes FROM table WHERE Office = us representative 4 AND Percentage = 1.59% AND Year > 1992
|
What years did J. Smith Young serve as a Representative?
|
SELECT Years FROM table WHERE Representative = j. smith young
|
Which party did Thomas L. Young belong to?
|
SELECT Party FROM table WHERE Representative = thomas l. young
|
What is the lowest total amount of medals from countries with 0 gold medals, more than 2 bronze medals, and more than 1 silver medal?
|
SELECT MIN Total FROM table WHERE Gold = 0 AND Bronze > 2 AND Silver > 1
|
What is the total number of silver medals for countries of rank 14, with less than 1 total medals?
|
SELECT SUM Silver FROM table WHERE Rank = 14 AND Total < 1
|
How many tackles for the player with over 0 fumble recovries and 0 forced fumbles?
|
SELECT COUNT Total FROM table WHERE Fumble rec > 0 AND Fumble force = 0
|
How many forced fumbles for jim laney with under 2 solo tackles?
|
SELECT COUNT Fumble force FROM table WHERE Solo < 2 AND Player = jim laney
|
What is the high total for players with over 15 solo tackles?
|
SELECT MAX Total FROM table WHERE Solo > 15
|
How many fumble recoveries for scott gajos with 0 forced fubmles, 0 sacks, and under 2 solo tackles?
|
SELECT SUM Fumble rec FROM table WHERE Sacks = 0 AND Fumble force = 0 AND Player = scott gajos AND Solo < 2
|
Who is the Opponent playing at 20:00 GMT at Camp Nou?
|
SELECT Opponent FROM table WHERE Time = 20:00 gmt AND Ground = camp nou
|
What time was the match played with a score of 3-2?
|
SELECT Time FROM table WHERE Score = 3-2
|
On which ground did the team play Aston Villa?
|
SELECT Ground FROM table WHERE Opponent = aston villa
|
What kind of competition was it at San Siro at 18:30 GMT?
|
SELECT Competition FROM table WHERE Ground = san siro AND Time = 18:30 gmt
|
What is the total number of decile for the redwood school locality?
|
SELECT COUNT Decile FROM table WHERE Name = redwood school
|
Which report includes a Circuit of Tripoli?
|
SELECT Report FROM table WHERE Circuit = tripoli
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.