messages
stringlengths 82
562
| __index_level_0__
int64 0
56.4k
|
---|---|
Generate a SQL for the following text:
Which section has a level of Tier 3, is in the 6th position, and is in the 1937-38 season?
SQL:
SELECT Section FROM table WHERE Level = tier 3 AND Position = 6th AND Season = 1937-38 | 56,300 |
Generate a SQL for the following text:
Which section is in the 6th position?
SQL:
SELECT Section FROM table WHERE Position = 6th | 56,301 |
Generate a SQL for the following text:
Name the attendance with date of june 11
SQL:
SELECT Attendance FROM table WHERE Date = june 11 | 56,302 |
Generate a SQL for the following text:
Which partnership has a run number of 27?
SQL:
SELECT Partnerships FROM table WHERE Runs = 27 | 56,303 |
Generate a SQL for the following text:
What venue did the parntership of shoaib malik / misbah-ul-haq occur?
SQL:
SELECT Venue FROM table WHERE Partnerships = shoaib malik / misbah-ul-haq | 56,304 |
Generate a SQL for the following text:
What venue did the partnership of herschelle gibbs / justin kemp happen?
SQL:
SELECT Venue FROM table WHERE Partnerships = herschelle gibbs / justin kemp | 56,305 |
Generate a SQL for the following text:
What is the number Played that has 310 Points for?
SQL:
SELECT Played FROM table WHERE Points for = 310 | 56,306 |
Generate a SQL for the following text:
What Losing bonus has a Points against of 588?
SQL:
SELECT Losing bonus FROM table WHERE Points against = 588 | 56,307 |
Generate a SQL for the following text:
What Tries against has a Losing bonus of 7?
SQL:
SELECT Tries against FROM table WHERE Losing bonus = 7 | 56,308 |
Generate a SQL for the following text:
What Try bonus has a Points against of 488?
SQL:
SELECT Try bonus FROM table WHERE Points against = 488 | 56,309 |
Generate a SQL for the following text:
What Points for has a Try bonus of 140?
SQL:
SELECT Points for FROM table WHERE Try bonus = 140 | 56,310 |
Generate a SQL for the following text:
What Drawn has a Tries against of 0?
SQL:
SELECT Drawn FROM table WHERE Tries against = 0 | 56,311 |
Generate a SQL for the following text:
What is the days held the champion with a reign larger than 3 and 1 defense has?
SQL:
SELECT Days held FROM table WHERE Reign > 3 AND Defenses = 1 | 56,312 |
Generate a SQL for the following text:
What is the days held the champion with a reign larger than 3 and less than 1 defense has?
SQL:
SELECT Days held FROM table WHERE Reign > 3 AND Defenses < 1 | 56,313 |
Generate a SQL for the following text:
What is the average defenses a champion with 404 days held and a reign larger than 1 has?
SQL:
SELECT AVG Defenses FROM table WHERE Days held = 404 AND Reign > 1 | 56,314 |
Generate a SQL for the following text:
What is the lowest defense a champion with 345 days held has?
SQL:
SELECT MIN Defenses FROM table WHERE Days held = 345 | 56,315 |
Generate a SQL for the following text:
On what date was there a record of 76-72?
SQL:
SELECT Date FROM table WHERE Record = 76-72 | 56,316 |
Generate a SQL for the following text:
What was the attendance that had a loss of Ponson (1-5)?
SQL:
SELECT Attendance FROM table WHERE Loss = ponson (1-5) | 56,317 |
Generate a SQL for the following text:
On which day was there a record of 36-39?
SQL:
SELECT Date FROM table WHERE Record = 36-39 | 56,318 |
Generate a SQL for the following text:
On what day was the record 30-31?
SQL:
SELECT Date FROM table WHERE Record = 30-31 | 56,319 |
Generate a SQL for the following text:
Who was the opponent at the game that had a loss of Leonard (7β8)?
SQL:
SELECT Opponent FROM table WHERE Loss = leonard (7β8) | 56,320 |
Generate a SQL for the following text:
What was the score of the game when the record was 18β43?
SQL:
SELECT Score FROM table WHERE Record = 18β43 | 56,321 |
Generate a SQL for the following text:
What was the score of the game against the Royals when the record was 24β52?
SQL:
SELECT Score FROM table WHERE Opponent = royals AND Record = 24β52 | 56,322 |
Generate a SQL for the following text:
What was the score of the game when the record was 22β46?
SQL:
SELECT Score FROM table WHERE Record = 22β46 | 56,323 |
Generate a SQL for the following text:
What is the real name of the person whose primary military specialty is shock paratrooper?
SQL:
SELECT Real Name FROM table WHERE Primary military speciality = shock paratrooper | 56,324 |
Generate a SQL for the following text:
What is the birthplace of Pete Sanderson?
SQL:
SELECT Birthplace FROM table WHERE Real Name = pete sanderson | 56,325 |
Generate a SQL for the following text:
What role did Jean-Luc Bouvier serve?
SQL:
SELECT Function (figure) FROM table WHERE Real Name = jean-luc bouvier | 56,326 |
Generate a SQL for the following text:
What is the real name of the person who is a pilot of the silent attack kayak?
SQL:
SELECT Real Name FROM table WHERE Function (figure) = pilot of the silent attack kayak | 56,327 |
Generate a SQL for the following text:
What is the code name of the person born in Liverpool?
SQL:
SELECT Code Name FROM table WHERE Birthplace = liverpool | 56,328 |
Generate a SQL for the following text:
What is the names for the medalist in the sport of canoeing?
SQL:
SELECT Name FROM table WHERE Sport = canoeing | 56,329 |
Generate a SQL for the following text:
What games had the women's half middleweight event?
SQL:
SELECT Games FROM table WHERE Event = women's half middleweight | 56,330 |
Generate a SQL for the following text:
Who received the bronze medal in the 2000 Sydney games?
SQL:
SELECT Name FROM table WHERE Medal = bronze AND Games = 2000 sydney | 56,331 |
Generate a SQL for the following text:
How many people attended when opponent was twins?
SQL:
SELECT COUNT Attendance FROM table WHERE Opponent = twins | 56,332 |
Generate a SQL for the following text:
Which date has a Record of 41-46?
SQL:
SELECT Date FROM table WHERE Record = 41-46 | 56,333 |
Generate a SQL for the following text:
Which score has a Record of 48-55?
SQL:
SELECT Score FROM table WHERE Record = 48-55 | 56,334 |
Generate a SQL for the following text:
Which score has a Record of 44-49?
SQL:
SELECT Score FROM table WHERE Record = 44-49 | 56,335 |
Generate a SQL for the following text:
Which score has an Attendance larger than 16,571, and a Loss of mcdowell (0-1)?
SQL:
SELECT Score FROM table WHERE Attendance > 16,571 AND Loss = mcdowell (0-1) | 56,336 |
Generate a SQL for the following text:
Which score has an Opponent of white sox, and a Record of 2-0?
SQL:
SELECT Score FROM table WHERE Opponent = white sox AND Record = 2-0 | 56,337 |
Generate a SQL for the following text:
How many votes did candice sjostrom receive?
SQL:
SELECT AVG Popular Votes FROM table WHERE Candidate = candice sjostrom | 56,338 |
Generate a SQL for the following text:
What percentage did chris wright receive?
SQL:
SELECT Percentage FROM table WHERE Candidate = chris wright | 56,339 |
Generate a SQL for the following text:
How many votes for the candidate after 1992, 1.59% of the vote, and the office of us representative 4?
SQL:
SELECT AVG Popular Votes FROM table WHERE Office = us representative 4 AND Percentage = 1.59% AND Year > 1992 | 56,340 |
Generate a SQL for the following text:
What years did J. Smith Young serve as a Representative?
SQL:
SELECT Years FROM table WHERE Representative = j. smith young | 56,341 |
Generate a SQL for the following text:
Which party did Thomas L. Young belong to?
SQL:
SELECT Party FROM table WHERE Representative = thomas l. young | 56,342 |
Generate a SQL for the following text:
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?
SQL:
SELECT MIN Total FROM table WHERE Gold = 0 AND Bronze > 2 AND Silver > 1 | 56,343 |
Generate a SQL for the following text:
What is the total number of silver medals for countries of rank 14, with less than 1 total medals?
SQL:
SELECT SUM Silver FROM table WHERE Rank = 14 AND Total < 1 | 56,344 |
Generate a SQL for the following text:
How many tackles for the player with over 0 fumble recovries and 0 forced fumbles?
SQL:
SELECT COUNT Total FROM table WHERE Fumble rec > 0 AND Fumble force = 0 | 56,345 |
Generate a SQL for the following text:
How many forced fumbles for jim laney with under 2 solo tackles?
SQL:
SELECT COUNT Fumble force FROM table WHERE Solo < 2 AND Player = jim laney | 56,346 |
Generate a SQL for the following text:
What is the high total for players with over 15 solo tackles?
SQL:
SELECT MAX Total FROM table WHERE Solo > 15 | 56,347 |
Generate a SQL for the following text:
How many fumble recoveries for scott gajos with 0 forced fubmles, 0 sacks, and under 2 solo tackles?
SQL:
SELECT SUM Fumble rec FROM table WHERE Sacks = 0 AND Fumble force = 0 AND Player = scott gajos AND Solo < 2 | 56,348 |
Generate a SQL for the following text:
Who is the Opponent playing at 20:00 GMT at Camp Nou?
SQL:
SELECT Opponent FROM table WHERE Time = 20:00 gmt AND Ground = camp nou | 56,349 |
Generate a SQL for the following text:
What time was the match played with a score of 3-2?
SQL:
SELECT Time FROM table WHERE Score = 3-2 | 56,350 |
Generate a SQL for the following text:
On which ground did the team play Aston Villa?
SQL:
SELECT Ground FROM table WHERE Opponent = aston villa | 56,351 |
Generate a SQL for the following text:
What kind of competition was it at San Siro at 18:30 GMT?
SQL:
SELECT Competition FROM table WHERE Ground = san siro AND Time = 18:30 gmt | 56,352 |
Generate a SQL for the following text:
What is the total number of decile for the redwood school locality?
SQL:
SELECT COUNT Decile FROM table WHERE Name = redwood school | 56,353 |
Generate a SQL for the following text:
Which report includes a Circuit of Tripoli?
SQL:
SELECT Report FROM table WHERE Circuit = tripoli | 56,354 |