messages
stringlengths 82
562
| __index_level_0__
int64 0
56.4k
|
|---|---|
Generate a SQL for the following text:
Who played in the 1990 Broadway after Tom Halloran played the character in the 1955 Broadcast?
SQL:
SELECT 1990 Broadway FROM table WHERE 1955 broadcast = Tom Halloran
| 200
|
Generate a SQL for the following text:
What character did Drake English play in the 1998 Broadway?
SQL:
SELECT Character FROM table WHERE 1998 Broadway = Drake English
| 201
|
Generate a SQL for the following text:
What date was BBC One total viewing greater then 11616996.338225884?
SQL:
SELECT Broadcast date FROM table WHERE BBC One total viewing > 11616996.338225884
| 202
|
Generate a SQL for the following text:
How many years did BBC One rank 20th?
SQL:
SELECT COUNT Year FROM table WHERE BBC One Rank = 20th
| 203
|
Generate a SQL for the following text:
What year was the BBC two total viewing 7,530,000?
SQL:
SELECT MIN Year FROM table WHERE BBC Two total viewing = 7,530,000
| 204
|
Generate a SQL for the following text:
how many ↓ function / genus → with escherichia being espd
SQL:
SELECT COUNT ↓ Function / Genus → FROM table WHERE Escherichia = EspD
| 205
|
Generate a SQL for the following text:
what's the salmonella with escherichia being espd
SQL:
SELECT Salmonella FROM table WHERE Escherichia = EspD
| 206
|
Generate a SQL for the following text:
what's the ↓ function / genus → with shigella being spa32
SQL:
SELECT ↓ Function / Genus → FROM table WHERE Shigella = Spa32
| 207
|
Generate a SQL for the following text:
what's the salmonella with shigella being ipgc
SQL:
SELECT Salmonella FROM table WHERE Shigella = IpgC
| 208
|
Generate a SQL for the following text:
what's the salmonella with escherichia being sepb (escn)
SQL:
SELECT Salmonella FROM table WHERE Escherichia = SepB (EscN)
| 209
|
Generate a SQL for the following text:
what's the shigella with yersinia being yscp
SQL:
SELECT Shigella FROM table WHERE Yersinia = YscP
| 210
|
Generate a SQL for the following text:
How many original titles did Marriage Italian-Style have?
SQL:
SELECT COUNT Original title FROM table WHERE Film title used in nomination = Marriage Italian-Style
| 211
|
Generate a SQL for the following text:
What year was a movie with the original title La Leggenda del Santo Bevitore submitted?
SQL:
SELECT Year (Ceremony) FROM table WHERE Original title = La leggenda del santo bevitore
| 212
|
Generate a SQL for the following text:
what's the camp with estimated deaths of 600,000
SQL:
SELECT Camp FROM table WHERE Estimated deaths = 600,000
| 213
|
Generate a SQL for the following text:
what's the operational period with camp sajmište
SQL:
SELECT Operational FROM table WHERE Camp = Sajmište
| 214
|
Generate a SQL for the following text:
what's the estimated deaths with operational period of 17 march 1942 – end of june 1943
SQL:
SELECT Estimated deaths FROM table WHERE Operational = 17 March 1942 – end of June 1943
| 215
|
Generate a SQL for the following text:
what's the current country of location with operational period of summer of 1941 to 28 june 1944
SQL:
SELECT Current country of location FROM table WHERE Operational = Summer of 1941 to 28 June 1944
| 216
|
Generate a SQL for the following text:
what's the occupied territory with estimated deaths of 600,000
SQL:
SELECT Occupied territory FROM table WHERE Estimated deaths = 600,000
| 217
|
Generate a SQL for the following text:
what's the occupied territory with operational period of may 1940 – january 1945
SQL:
SELECT Occupied territory FROM table WHERE Operational = May 1940 – January 1945
| 218
|
Generate a SQL for the following text:
Which overall pick was traded to the Cleveland Browns?
SQL:
SELECT Overall FROM table WHERE College = Traded to the Cleveland Browns
| 219
|
Generate a SQL for the following text:
Overall pick 240 was a pick in which round?
SQL:
SELECT Round FROM table WHERE Overall = 240
| 220
|
Generate a SQL for the following text:
Which overall pick number went to college at Youngstown State?
SQL:
SELECT MIN Overall FROM table WHERE College = Youngstown State
| 221
|
Generate a SQL for the following text:
What position is played by pick 255 overall?
SQL:
SELECT Position FROM table WHERE Overall = 255
| 222
|
Generate a SQL for the following text:
Which player was chosen in round 17?
SQL:
SELECT Player name FROM table WHERE Round = 17
| 223
|
Generate a SQL for the following text:
The record of 7-3 had the largest attendance of what?
SQL:
SELECT MAX Attendance FROM table WHERE Record = 7-3
| 224
|
Generate a SQL for the following text:
The record of 9-4 was against which opponent?
SQL:
SELECT Opponent FROM table WHERE Record = 9-4
| 225
|
Generate a SQL for the following text:
The game number of 8 had a record of what?
SQL:
SELECT Record FROM table WHERE Game = 8
| 226
|
Generate a SQL for the following text:
What round was Steve Stonebreaker drafted?
SQL:
SELECT MAX Round FROM table WHERE Player name = Steve Stonebreaker
| 227
|
Generate a SQL for the following text:
Who was the top picki n the draft?
SQL:
SELECT MIN Choice FROM table
| 228
|
Generate a SQL for the following text:
What round was Bill Hill drafted?
SQL:
SELECT Choice FROM table WHERE Player name = Bill Hill
| 229
|
Generate a SQL for the following text:
What was the name of the quarterback drafted?
SQL:
SELECT Player name FROM table WHERE Position = Quarterback
| 230
|
Generate a SQL for the following text:
Where is the college where Keith Hartwig plays?
SQL:
SELECT College FROM table WHERE Player name = Keith Hartwig
| 231
|
Generate a SQL for the following text:
What is the name of the linebacker at Illinois college?
SQL:
SELECT Player name FROM table WHERE Position = Linebacker AND College = Illinois
| 232
|
Generate a SQL for the following text:
What is the greatest round of overall 83?
SQL:
SELECT MAX Round FROM table WHERE Overall = 83
| 233
|
Generate a SQL for the following text:
Which round did Tommy Kramer play in>
SQL:
SELECT Round FROM table WHERE Player name = Tommy Kramer
| 234
|
Generate a SQL for the following text:
What is Rice's collage score?
SQL:
SELECT Overall FROM table WHERE College = Rice
| 235
|
Generate a SQL for the following text:
Where does the defensive back position appear first?
SQL:
SELECT MIN Round FROM table WHERE Position = Defensive Back
| 236
|
Generate a SQL for the following text:
What is Bruce Cerone overall?
SQL:
SELECT MIN Overall FROM table WHERE Player name = Bruce Cerone
| 237
|
Generate a SQL for the following text:
Which player went to Emporia State?
SQL:
SELECT Player name FROM table WHERE College = Emporia State
| 238
|
Generate a SQL for the following text:
What is the highest choice?
SQL:
SELECT MAX Choice FROM table
| 239
|
Generate a SQL for the following text:
What college did Bill Cappleman go to?
SQL:
SELECT College FROM table WHERE Player name = Bill Cappleman
| 240
|
Generate a SQL for the following text:
For the headstamp id of h2, what was the color of the bullet tip?
SQL:
SELECT Bullet Tip Color FROM table WHERE Headstamp ID = H2
| 241
|
Generate a SQL for the following text:
For the functional type of light ball, what were the other features?
SQL:
SELECT Other Features FROM table WHERE Functional Type = Light Ball
| 242
|
Generate a SQL for the following text:
How many primers annulus colors were there when the color of the bullet tip was white?
SQL:
SELECT COUNT Primer Annulus Color FROM table WHERE Bullet Tip Color = White
| 243
|
Generate a SQL for the following text:
How many bullet tips colors had other features of a blue band on case base?
SQL:
SELECT COUNT Bullet Tip Color FROM table WHERE Other Features = Blue band on case base
| 244
|
Generate a SQL for the following text:
How many touchdowns were scored in the year with a completion percentage of 56.0?
SQL:
SELECT MIN Touchdowns FROM table WHERE Completion % = 56.0
| 245
|
Generate a SQL for the following text:
What number of completions are recorded for the year with 12 games started?
SQL:
SELECT Completions FROM table WHERE Games started = 12
| 246
|
Generate a SQL for the following text:
How many years were there with 348 attempts?
SQL:
SELECT COUNT Yards FROM table WHERE Attempts = 348
| 247
|
Generate a SQL for the following text:
How many characters is by Babs Rubenstein?
SQL:
SELECT COUNT London FROM table WHERE US Tour = Babs Rubenstein
| 248
|
Generate a SQL for the following text:
Which person is in the tronto/broadway and has a uk tour of n/a
SQL:
SELECT Toronto / Broadway FROM table WHERE UK Tour = n/a
| 249
|
Generate a SQL for the following text:
How many people play Frank in London?
SQL:
SELECT COUNT London FROM table WHERE Character = Frank
| 250
|
Generate a SQL for the following text:
Who was Class AAA during the school year of 2000-01?
SQL:
SELECT Class AAA FROM table WHERE School Year = 2000-01
| 251
|
Generate a SQL for the following text:
Who was Class AAA during the same year that Class A was (tie) Apple Springs/Texline?
SQL:
SELECT Class AAA FROM table WHERE Class A = (tie) Apple Springs/Texline
| 252
|
Generate a SQL for the following text:
Who was Class AAAAA during the school year of 1995-96?
SQL:
SELECT Class AAAAA FROM table WHERE School Year = 1995-96
| 253
|
Generate a SQL for the following text:
Who was Class AAA during the same year that Class AAAAA was Brownsville Pace?
SQL:
SELECT Class AAA FROM table WHERE Class AAAAA = Brownsville Pace
| 254
|
Generate a SQL for the following text:
What was the total number of Class AAA during the same year that Class AAA was White Oak?
SQL:
SELECT COUNT Class AA FROM table WHERE Class AAA = White Oak
| 255
|
Generate a SQL for the following text:
How many records are listed on Friday, May 25?
SQL:
SELECT COUNT Team record FROM table WHERE Date = Friday, May 25
| 256
|
Generate a SQL for the following text:
How many opponents were played on Saturday, June 9?
SQL:
SELECT COUNT Opponent FROM table WHERE Date = Saturday, June 9
| 257
|
Generate a SQL for the following text:
In what week was the first game played at the Commerzbank-Arena?
SQL:
SELECT MIN Week FROM table WHERE Game site = Commerzbank-Arena
| 258
|
Generate a SQL for the following text:
What was the original air date of an episode set in 1544?
SQL:
SELECT Original air date FROM table WHERE Setting = 1544
| 259
|
Generate a SQL for the following text:
How many settings where there for episode 29 of the season?
SQL:
SELECT COUNT Setting FROM table WHERE No. in series = 29
| 260
|
Generate a SQL for the following text:
Who wrote the episode that was set in winter 1541/february 13, 1542?
SQL:
SELECT Written by FROM table WHERE Setting = Winter 1541/February 13, 1542
| 261
|
Generate a SQL for the following text:
What episode number of the season was "The Northern Uprising"?
SQL:
SELECT No. in season FROM table WHERE Title = "The Northern Uprising"
| 262
|
Generate a SQL for the following text:
What is the name of the track that lasts 5:30?
SQL:
SELECT Track title FROM table WHERE Duration = 5:30
| 263
|
Generate a SQL for the following text:
What is the album namethat has the track title Sweetness 甜甜的 (tián tián de)?
SQL:
SELECT Album name FROM table WHERE Track title = Sweetness 甜甜的 (Tián tián de)
| 264
|
Generate a SQL for the following text:
What is the duration of the song where the major instrument is the piano and the date is 2004-02-03?
SQL:
SELECT Duration FROM table WHERE Major instrument(s) = Piano AND Date = 2004-02-03
| 265
|
Generate a SQL for the following text:
What is the total number of lyricist where the lyrics theme is romance and the song lasts 3:50?
SQL:
SELECT COUNT Lyricist FROM table WHERE Lyrics theme/style = Romance AND Duration = 3:50
| 266
|
Generate a SQL for the following text:
What is the major instrument of the song that lasts 4:32?
SQL:
SELECT Major instrument(s) FROM table WHERE Duration = 4:32
| 267
|
Generate a SQL for the following text:
What is the total number of music genre/style in which the lyrics are a detective story?
SQL:
SELECT COUNT Music genre/style FROM table WHERE Lyrics theme/style = Detective story
| 268
|
Generate a SQL for the following text:
What is the playoffs for the usl pro select league?
SQL:
SELECT Playoffs FROM table WHERE League = USL Pro Select League
| 269
|
Generate a SQL for the following text:
What is the number of the division for the 1st round?
SQL:
SELECT COUNT Division FROM table WHERE Open Cup = 1st Round
| 270
|
Generate a SQL for the following text:
What was the team where series is formula renault 2.0 nec?
SQL:
SELECT Team FROM table WHERE Series = Formula Renault 2.0 NEC
| 271
|
Generate a SQL for the following text:
What is the total number of poles for arden international?
SQL:
SELECT COUNT Poles FROM table WHERE Team = Arden International
| 272
|
Generate a SQL for the following text:
What is the number of wins for gp2 series for racing engineering?
SQL:
SELECT COUNT Wins FROM table WHERE Series = GP2 Series AND Team = Racing Engineering
| 273
|
Generate a SQL for the following text:
What is the number of podiums for season 2010 for campionato italiano superstars.
SQL:
SELECT COUNT Podiums FROM table WHERE Season = 2010 AND Series = Campionato Italiano Superstars
| 274
|
Generate a SQL for the following text:
What is the podium for 144 points?
SQL:
SELECT Podiums FROM table WHERE Points = 144
| 275
|
Generate a SQL for the following text:
How many writers had an US air date of september 25, 1993?
SQL:
SELECT COUNT Writer FROM table WHERE US air date = September 25, 1993
| 276
|
Generate a SQL for the following text:
How many villians were in No. 25?
SQL:
SELECT COUNT Villains FROM table WHERE No. = 25
| 277
|
Generate a SQL for the following text:
what being the maximum year where regular season is 4th, northwest
SQL:
SELECT MAX Year FROM table WHERE Regular Season = 4th, Northwest
| 278
|
Generate a SQL for the following text:
what is the total number of playoffs where regular season is 6th, southwest
SQL:
SELECT COUNT Playoffs FROM table WHERE Regular Season = 6th, Southwest
| 279
|
Generate a SQL for the following text:
what is the maximum division
SQL:
SELECT MAX Division FROM table
| 280
|
Generate a SQL for the following text:
what's the league where regular season is 2nd, northwest
SQL:
SELECT League FROM table WHERE Regular Season = 2nd, Northwest
| 281
|
Generate a SQL for the following text:
what are all the regular season where year is 2011
SQL:
SELECT Regular Season FROM table WHERE Year = 2011
| 282
|
Generate a SQL for the following text:
How many titles have the number 11
SQL:
SELECT COUNT Title FROM table WHERE # = 11
| 283
|
Generate a SQL for the following text:
How many have Mrs. briar as a villain
SQL:
SELECT COUNT No. FROM table WHERE Villains = Mrs. Briar
| 284
|
Generate a SQL for the following text:
how many have the number 8
SQL:
SELECT COUNT No. FROM table WHERE # = 8
| 285
|
Generate a SQL for the following text:
How many have the title "the tale of the room for rent"
SQL:
SELECT COUNT # FROM table WHERE Title = "The Tale of the Room for Rent"
| 286
|
Generate a SQL for the following text:
What is the name of the episode told by Kiki and directed by Will Dixon?
SQL:
SELECT Title FROM table WHERE Storyteller = Kiki AND Director = Will Dixon
| 287
|
Generate a SQL for the following text:
Who is the storyteller in the episode called "The Tale of the Jagged Sign"?
SQL:
SELECT Storyteller FROM table WHERE Title = "The Tale of the Jagged Sign"
| 288
|
Generate a SQL for the following text:
Who wrote Episode #3?
SQL:
SELECT Writer FROM table WHERE # = 3
| 289
|
Generate a SQL for the following text:
Who are the villains in the episode titled "The Tale of the Forever Game"?
SQL:
SELECT Villains FROM table WHERE Title = "The Tale of The Forever Game"
| 290
|
Generate a SQL for the following text:
How many villains appeared in the episode titled "The Tale of the Virtual Pets"?
SQL:
SELECT COUNT Villains FROM table WHERE Title = "The Tale of The Virtual Pets"
| 291
|
Generate a SQL for the following text:
Who are the villains in the episodes where Megan is the storyteller and Lorette LeBlanc is the director?
SQL:
SELECT Villains FROM table WHERE Storyteller = Megan AND Director = Lorette LeBlanc
| 292
|
Generate a SQL for the following text:
What is the largest # for an episode that was written by Allison Lea Bingeman?
SQL:
SELECT MAX # FROM table WHERE Writer = Allison Lea Bingeman
| 293
|
Generate a SQL for the following text:
Name the species when petal width is 2.0 and petal length is 4.9
SQL:
SELECT Species FROM table WHERE Petal width = 2.0 AND Petal length = 4.9
| 294
|
Generate a SQL for the following text:
Name the sepal width for i.virginica with petal length of 5.1
SQL:
SELECT Sepal width FROM table WHERE Species = I.virginica AND Petal length = 5.1
| 295
|
Generate a SQL for the following text:
Name the number of species with sepal width of 3.4 and sepal length of 5.4
SQL:
SELECT COUNT Species FROM table WHERE Sepal width = 3.4 AND Sepal length = 5.4
| 296
|
Generate a SQL for the following text:
Name the sepal length for sepal width of 2.8 and petal length of 5.1
SQL:
SELECT Sepal length FROM table WHERE Sepal width = 2.8 AND Petal length = 5.1
| 297
|
Generate a SQL for the following text:
Name the sepal width when sepal length is 6.5 and petal width is 2.2
SQL:
SELECT Sepal width FROM table WHERE Sepal length = 6.5 AND Petal width = 2.2
| 298
|
Generate a SQL for the following text:
Name the sepal lengh when sepal width is 2.9 and petal width 1.3
SQL:
SELECT Sepal length FROM table WHERE Sepal width = 2.9 AND Petal width = 1.3
| 299
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.