question
stringlengths 12
244
| sql
stringlengths 22
468
|
|---|---|
How many games have Air Force as the opponent?
|
SELECT MAX Game FROM table WHERE Opponent = Air Force
|
How many records have black knights points as 17?
|
SELECT COUNT Record FROM table WHERE Black Knights points = 17
|
Which opponent has a record of 6-2?
|
SELECT Opponent FROM table WHERE Record = 6-2
|
How many results have a game of 5?
|
SELECT COUNT Result FROM table WHERE Game = 5
|
What is the run time for the episode with 7.9 million viewers?
|
SELECT Run time FROM table WHERE Viewers (in millions) = 7.9
|
What episode had a run time of 23:38?
|
SELECT Episode FROM table WHERE Run time = 23:38
|
How many million viewers watched the episode with a run time of 25:22?
|
SELECT Viewers (in millions) FROM table WHERE Run time = 25:22
|
Name the date for result loss for duke
|
SELECT Date FROM table WHERE Result = Loss AND Opponent = Duke
|
Name the opponents for record of 2-1
|
SELECT Opponents FROM table WHERE Record = 2-1
|
Name the record for black knights points 54
|
SELECT Record FROM table WHERE Black Knights points = 54
|
Name the opponents stanford
|
SELECT Opponents FROM table WHERE Opponent = Stanford
|
Name the result for ursinus college
|
SELECT Result FROM table WHERE Opponent = Ursinus College
|
Name the black knights points for loss result
|
SELECT MAX Black Knights points FROM table WHERE Result = Loss
|
Name the date for 6-2 record
|
SELECT Date FROM table WHERE Record = 6-2
|
Name the opponents for record being 2-0
|
SELECT MAX Opponents FROM table WHERE Record = 2-0
|
How man innings were there during the period with a career average of 41.43?
|
SELECT Innings FROM table WHERE Average = 41.43
|
During what period did Ricky Ponting play?
|
SELECT Period FROM table WHERE Player = Ricky Ponting
|
During what period was the career average 44.10?
|
SELECT Period FROM table WHERE Average = 44.10
|
What was the smallest numbered rank for Michael Bevan?
|
SELECT MIN Rank FROM table WHERE Player = Michael Bevan
|
What period was there a career average of 48.15?
|
SELECT Period FROM table WHERE Average = 48.15
|
when the value (int $1000) is 409566, what is the commodity?
|
SELECT Commodity FROM table WHERE Value (Int $1000) = 409566
|
When the value rank is 23, what is the value?
|
SELECT MIN Value (Int $1000) FROM table WHERE Value world rank = 23
|
When the value world rank is 7, what is the rank?
|
SELECT Rank FROM table WHERE Value world rank = 7
|
When the production (mt) is 650000, what is the total number of rank?
|
SELECT COUNT Rank FROM table WHERE Production (MT) = 650000
|
When the production (mt) is 446424, what is the value world rank ?
|
SELECT Value world rank FROM table WHERE Production (MT) = 446424
|
where value world rank is 12, what is the quantity world rank?
|
SELECT Quantity world rank FROM table WHERE Value world rank = 12
|
What is the rank of Tim Paine?
|
SELECT Rank FROM table WHERE Player = Tim Paine
|
What rank does Rodney Marsh have?
|
SELECT MAX Rank FROM table WHERE Player = Rodney Marsh
|
Name the 1st place for limoges csp
|
SELECT 1st Place FROM table WHERE 3rd Place = Limoges CSP
|
What is the rank for a strike rate of 91.67?
|
SELECT MAX Rank FROM table WHERE Strike rate = 91.67
|
What player has 477 runs?
|
SELECT Player FROM table WHERE Runs = 477
|
How many innings does rank 3 have?
|
SELECT MAX Innings FROM table WHERE Rank = 3
|
What was the goals for in the season that the pct % was 0.604?
|
SELECT MAX Goals For FROM table WHERE Pct % = 0.604
|
In what season was the pct % 0.552?
|
SELECT Season FROM table WHERE Pct % = 0.552
|
What was the standing in the season that the pct% was 0.769?
|
SELECT Standing FROM table WHERE Pct % = 0.769
|
What were the points in the 1958-59 season?
|
SELECT Points FROM table WHERE Season = 1958-59
|
Who were Dürr's opponents in the final on year 1968?
|
SELECT Opponents in the final FROM table WHERE Year = 1968
|
What was the court surface on year 1971?
|
SELECT Surface FROM table WHERE Year = 1971
|
Name the most top 10s for 2 best finish
|
SELECT MAX Top 10s FROM table WHERE Best finish = 2
|
Name the tournaments played for 2004
|
SELECT MIN Tournaments played FROM table WHERE Year = 2004
|
How many submission of the night occurred when the fighter was matt wiman?
|
SELECT MAX Submissions of the Night FROM table WHERE Fighter = Matt Wiman
|
How many knockout of the night occurred when joe lauzon fought.
|
SELECT Knockouts of the Night FROM table WHERE Fighter = Joe Lauzon
|
What is the smallest number of episodes in a season?
|
SELECT MIN Episodes FROM table
|
When was Season Three premiered in region 2?
|
SELECT Region 2 FROM table WHERE DVD Name = Season Three
|
Where is every location with specialization of textile engineering?
|
SELECT Location FROM table WHERE Specialization = Textile engineering
|
What is every website with specialization of engineering and division of dhaka division?
|
SELECT Website FROM table WHERE Specialization = Engineering AND Division = Dhaka division
|
Where is every location where Nick is Bru?
|
SELECT Location FROM table WHERE Nick = BRU
|
What is every specialization with the website Jstu.edu.bd
|
SELECT Specialization FROM table WHERE Website = jstu.edu.bd
|
Name the languages for cyprus
|
SELECT Languages FROM table WHERE Member countries = Cyprus
|
Name the languages for estonia
|
SELECT Languages FROM table WHERE Member countries = Estonia
|
Name the most gdp per capita latvian
|
SELECT MAX GDP per capita (US$) FROM table WHERE Languages = Latvian
|
how many archive were when run time is 24:34
|
SELECT Archive FROM table WHERE Run time = 24:34
|
what is all the broadcast date when viewers were 8.4 millions
|
SELECT COUNT Broadcast date FROM table WHERE Viewers (in millions) = 8.4
|
how many episode have 8.4 millions viewer.
|
SELECT COUNT Episode FROM table WHERE Viewers (in millions) = 8.4
|
What was the title in season #8?
|
SELECT Title FROM table WHERE Season # = 8
|
Who was the director when the writer(s) was John W. Bloch?
|
SELECT Director FROM table WHERE Writer(s) = John W. Bloch
|
What was the series# with the original airdate of october 23, 1967?
|
SELECT MAX Series # FROM table WHERE Original Airdate = October 23, 1967
|
what is the title when the writer(s) is jack turley?
|
SELECT Title FROM table WHERE Writer(s) = Jack Turley
|
How many of the series # when the original airdate is september 25, 1967?
|
SELECT COUNT Series # FROM table WHERE Original Airdate = September 25, 1967
|
Name the episode for run time of 22:50
|
SELECT Episode FROM table WHERE Run time = 22:50
|
Name the broadcast date of 6.9 million viewers
|
SELECT Broadcast date FROM table WHERE Viewers (in millions) = 6.9
|
Name the broadcast date of run time being 24:14
|
SELECT Broadcast date FROM table WHERE Run time = 24:14
|
Which archive has a run time of 23:48?
|
SELECT Archive FROM table WHERE Run time = 23:48
|
Which broadcast date has 6.8 million viewers?
|
SELECT Broadcast date FROM table WHERE Viewers (in millions) = 6.8
|
What Petrol engine has total power of ps (kw; bhp)@5400-6500?
|
SELECT Model FROM table WHERE max. power = PS (kW; bhp)@5400-6500
|
What is top speed of a petrol engine at ps (kw; bhp)@5250-6250?
|
SELECT top speed FROM table WHERE max. power = PS (kW; bhp)@5250-6250
|
What is the maximum speed for total power of ps (kw; bhp)?
|
SELECT top speed FROM table WHERE max. power = PS (kW; bhp)
|
What is the s7 4.0 tfsi quattro engine torque?
|
SELECT Torque FROM table WHERE Model = S7 4.0 TFSI quattro
|
Name the number in season for 4300062
|
SELECT MAX No. in season FROM table WHERE Production code = 4300062
|
Name the number of cancelled for turnham green
|
SELECT COUNT Cancelled FROM table WHERE Station = Turnham Green
|
Name the number of details for emlyn road
|
SELECT COUNT Details FROM table WHERE Station = Emlyn Road
|
What episode number in the series was directed by John Behring?
|
SELECT MAX No in Series FROM table WHERE Directed by = John Behring
|
How many original air dates were there for episodes with a production code of 4398016?
|
SELECT COUNT Original air date FROM table WHERE Production code = 4398016
|
How many dates did the episode "out of sight" originally air on?
|
SELECT COUNT Original air date FROM table WHERE Title = "Out of Sight"
|
Name the rank that premiered september 25, 2001
|
SELECT Rank FROM table WHERE Season premiere = September 25, 2001
|
Name the rank for 14.80 viewers
|
SELECT Rank FROM table WHERE Viewers (in millions) = 14.80
|
Name the number of rank for season 6
|
SELECT COUNT Rank FROM table WHERE Season = 6
|
What date did the episode with a production code of 4301085 originally air?
|
SELECT Original air date FROM table WHERE Production code = 4301085
|
What date did episode 15 of the season originally air?
|
SELECT Original air date FROM table WHERE No. in season = 15
|
How many items are listed under the column of U.S. viewers for episode "Bite Me"?
|
SELECT COUNT U.S. viewers (millions) FROM table WHERE Title = "Bite Me"
|
Name the remarks for sawhouse
|
SELECT Remarks FROM table WHERE NATO reporting name = SAWHOUSE
|
Name the nato/ us dod code for sabbot
|
SELECT NATO/U.S DOD code FROM table WHERE NATO reporting name = SABBOT
|
When autodromo nazionale monza is the circuit what is the report?
|
SELECT Report FROM table WHERE Circuit = Autodromo Nazionale Monza
|
When michele pirro is the pole position what is the date?
|
SELECT Date FROM table WHERE Pole Position = Michele Pirro
|
When Netherlands is the country what is the report?
|
SELECT Report FROM table WHERE Country = Netherlands
|
When circuit ricardo tormo is the circuit who is the winning team?
|
SELECT Winning Team FROM table WHERE Circuit = Circuit Ricardo Tormo
|
When circuit ricardo tormo is the circuit what is the round?
|
SELECT COUNT Round FROM table WHERE Circuit = Circuit Ricardo Tormo
|
How many opponents were there when the record was 6-0?
|
SELECT COUNT Opponent FROM table WHERE Record = 6-0
|
How many opponents were there when the record was 6-0?
|
SELECT Date FROM table WHERE Record = 6-0
|
What was the team record when the team played @ Utah?
|
SELECT Record FROM table WHERE Opponent = @ Utah
|
How many points did the Cowboys have when they had a 7-0 record?
|
SELECT Cowboys points FROM table WHERE Record = 7-0
|
Name the scoreboard for total being 23.5
|
SELECT Scoreboard FROM table WHERE Total = 23.5
|
Name the jason for public vote being 19.20%
|
SELECT Jason FROM table WHERE Public Vote % = 19.20%
|
Name the nicky for " take a chance on me "– abba
|
SELECT Nicky FROM table WHERE Song = " Take a Chance on Me "– ABBA
|
Name the number of song for scoreboard being 3rd
|
SELECT COUNT Song FROM table WHERE Scoreboard = 3rd
|
state the opponent on halliwell jones stadium in super league xiv
|
SELECT Opponent FROM table WHERE Venue = Halliwell Jones Stadium AND Competition = Super League XIV
|
how many venues were played on in round 1
|
SELECT COUNT Venue FROM table WHERE Round = 1
|
state the round that had a game score 50-10
|
SELECT Round FROM table WHERE Score = 50-10
|
state the round that had a game attended attended by 9359 people
|
SELECT Round FROM table WHERE Attendance = 9359
|
how many rounds had the score 44-22
|
SELECT COUNT Round FROM table WHERE Score = 44-22
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.