question stringlengths 12 244 | sql stringlengths 22 468 |
|---|---|
Which venue has h.paul 8/9 goals? | SELECT Venue FROM table WHERE Goals = h.paul 8/9 |
What is the score at valley parade on 10/6/01? | SELECT Score FROM table WHERE Venue = valley parade AND Date = 10/6/01 |
Which competition has a Date of 16/4/01? | SELECT Competition FROM table WHERE Date = 16/4/01 |
What is the occupation of the candidate that has a riding of labrador? | SELECT Occupation FROM table WHERE Riding = labrador |
What is the average sinclair coefficient with a Sinclair Total of 477.2772023, and a Weight Class (kg) larger than 105? | SELECT AVG Sinclair Coefficient FROM table WHERE Sinclair Total = 477.2772023 AND Weight Class (kg) > 105 |
Name the least attendance for may 6 | SELECT MIN Attendance FROM table WHERE Date = may 6 |
Which ESPN international sports owner speaks English? | SELECT Owner FROM table WHERE Language = english AND Name = espn international sports |
Which type is filed under the Group Animated? | SELECT Type FROM table WHERE Group = animated |
Which Date has an Opponent of newcastle united, and a Result of 2–1? | SELECT Date FROM table WHERE Opponent = newcastle united AND Result = 2–1 |
Which Date has an Opponent of manchester united, and a Venue A? | SELECT Date FROM table WHERE Opponent = manchester united AND Venue = a |
In the game where Collingwood is the home team what is the score of the away team? | SELECT Away team score FROM table WHERE Home team = collingwood |
What is the home teamscore for Richmond? | SELECT Home team score FROM table WHERE Home team = richmond |
What contestant had a starting BMI of 42.2? | SELECT Contestant FROM table WHERE Start BMI = 42.2 |
What is the recent BMI on season 8 for the person who's BMI started under 46.3? | SELECT Recent BMI FROM table WHERE Start BMI < 46.3 AND season = season 8 |
Which college has a pick below 6 for the PBA team the Shell Turbo Chargers? | SELECT College FROM table WHERE Pick < 6 AND PBA team = shell turbo chargers |
What's the crowd population of the home team located in Richmond? | SELECT SUM Crowd FROM table WHERE Home team = richmond |
What is the visiting team that has a home team related to footscray? | SELECT Away team FROM table WHERE Home team = footscray |
Which Venue has a Home team score of 13.13 (91)? | SELECT Venue FROM table WHERE Home team score = 13.13 (91) |
Which Home team has an Away team of fitzroy? | SELECT Home team FROM table WHERE Away team = fitzroy |
Where did the home team score 13.14 (92)? | SELECT Venue FROM table WHERE Home team score = 13.14 (92) |
Who is the away team that scored 12.17 (89)? | SELECT Away team FROM table WHERE Away team score = 12.17 (89) |
Where did the home team score 14.21 (105) with a crowd larger than 13,828? | SELECT Venue FROM table WHERE Crowd > 13,828 AND Home team score = 14.21 (105) |
What did the home team score when the away team was South Melbourne? | SELECT Home team score FROM table WHERE Away team = south melbourne |
What did the home team score when the away team was Hawthorn and there was a crowd larger than 20,851? | SELECT Home team score FROM table WHERE Crowd > 20,851 AND Away team = hawthorn |
What venue is the home field of Richmond? | SELECT Venue FROM table WHERE Home team = richmond |
What was the score of the away team in the match at Princes Park? | SELECT Away team score FROM table WHERE Venue = princes park |
What was the score of the home team in the match at Western Oval? | SELECT Home team score FROM table WHERE Venue = western oval |
Who had an Iflop of 2.5%? | SELECT Party FROM table WHERE Ifop 5/30/09 = 2.5% |
When BVA was 3%, what was the Ipsos? | SELECT Ipsos 5/30/09 FROM table WHERE BVA 6/1/09 = 3% |
Who had an Ipsos of 27%? | SELECT Party FROM table WHERE Ipsos 6/3/09 = 27% |
What was the TNS-Sofres when the Iflop was 5%? | SELECT TNS-Sofres 6/2/09 FROM table WHERE Ifop 5/30/09 = 5% |
Who had 0.00% in 2004? | SELECT Party FROM table WHERE Results 2004 = 0.00% |
What's the TNS-Sofres when Ipsos was 27%? | SELECT TNS-Sofres 6/2/09 FROM table WHERE Ipsos 6/3/09 = 27% |
In the match that had an away score of 11.19 (85), what was the date? | SELECT Date FROM table WHERE Away team score = 11.19 (85) |
In the match where fitzroy was the away team, where was the venue? | SELECT Venue FROM table WHERE Away team = fitzroy |
Which Stage (Winner) has a Vladimir Karpets General classification and a Team classification of relax-gam, and a Points classification of Denis Menchov? | SELECT Stage (Winner) FROM table WHERE General Classification = vladimir karpets AND Team Classification = relax-gam AND Points Classification = denis menchov |
Which Team classification has a General classification of Vladimir Karpets and a Mountains classification of No Award? | SELECT Team Classification FROM table WHERE General Classification = vladimir karpets AND Mountains Classification = no award |
What Sprints classification has the Points classification, Mark Cavendish and Team classification, Caisse D'epargne? | SELECT Sprints classification FROM table WHERE Points Classification = mark cavendish AND Team Classification = caisse d'epargne |
How many in the From category had thirds of exactly 2 and an Until stat of 2002? | SELECT COUNT From FROM table WHERE Thirds = 2 AND Until = 2002 |
What is the second number when from is prior to 2006 and the thirds number was 4? | SELECT Seconds FROM table WHERE From < 2006 AND Thirds = 4 |
What is the total Until when the Titles was 5? | SELECT SUM Until FROM table WHERE Titles = 5 |
When Team 1 is Aalborg BK, what is the 1st Leg? | SELECT 1st leg FROM table WHERE Team 1 = aalborg bk |
When Partizan is Team 2, what is the Agg? | SELECT Agg. FROM table WHERE Team 2 = partizan |
When Aalborg BK is Team 1, what is the 1st leg? | SELECT 1st leg FROM table WHERE Team 1 = aalborg bk |
What is the story timeline that was published first prior to 1984? | SELECT Story timeline FROM table WHERE Published < 1984 AND In order of publication = first |
How many total publications were the first of the series? | SELECT COUNT Published FROM table WHERE In order of publication = first |
Who did the play-by-play before 1998 on Fox network? | SELECT Play-by-play FROM table WHERE Year < 1998 AND Network = fox |
Who did the play-by-play before 1992 with the Ice level reporter Mike Emrick? | SELECT Play-by-play FROM table WHERE Year < 1992 AND Ice level reporters = mike emrick |
Who is the Ice level reporter after 1992 with the color commentator John Davidson and the play-by-play Marv Albert? | SELECT Ice level reporters FROM table WHERE Color commentator(s) = john davidson AND Play-by-play = marv albert AND Year > 1992 |
What is the network with the play-by-play Marv Albert before 1994? | SELECT Network FROM table WHERE Play-by-play = marv albert AND Year < 1994 |
What was the total crowd of the Carlton game? | SELECT COUNT Crowd FROM table WHERE Home team = carlton |
What was the highest long of Charles Pauley with fewer than 60 yards? | SELECT MAX Long FROM table WHERE Player = charles pauley AND Yards < 60 |
What is the score of the game on May 26? | SELECT Score FROM table WHERE Date = may 26 |
What was the location and attendance on the May 22 game? | SELECT Location Attendance FROM table WHERE Date = may 22 |
What is the final placing of the team with 0 ples, more than 16 races, and 16 podiums? | SELECT Final Placing FROM table WHERE Poles = 0 AND Races > 16 AND Podiums = 16 |
What is the sum of podiums of the teams with a final placing of 14th, seasons after 2008, and less than 1 races? | SELECT SUM Podiums FROM table WHERE Final Placing = 14th AND Season > 2008 AND Races < 1 |
What is the total number of seasons with more than 0 wins and a 1st final placing? | SELECT COUNT Season FROM table WHERE Wins > 0 AND Final Placing = 1st |
What is the average wins of a team with more than 0 ples and less than 3 podiums? | SELECT AVG Wins FROM table WHERE Poles > 0 AND Podiums < 3 |
I want the ends for transfer fee of free and goals being 0 for roy carroll | SELECT Ends FROM table WHERE Transfer fee = free AND Goals = 0 AND Name = roy carroll |
I want the total number of ends for filip šebo and Goals more than 2 | SELECT COUNT Ends FROM table WHERE Name = filip šebo AND Goals > 2 |
What is the score of the home team whose opponent scored 5.10 (40)? | SELECT Home team score FROM table WHERE Away team score = 5.10 (40) |
What is the name of the away team whose opponent scored 11.8 (74)? | SELECT Away team FROM table WHERE Home team score = 11.8 (74) |
How big was the crowd of away team Richmond? | SELECT Crowd FROM table WHERE Away team = richmond |
How much did the away team Geelong score? | SELECT Away team score FROM table WHERE Away team = geelong |
What is on at 9:00pm on the channel of smallville? | SELECT 9:00 PM FROM table WHERE 8:00 PM = smallville |
What is the network that plays ugly betty? | SELECT Network FROM table WHERE 8:30 PM = ugly betty |
What is the 8:30pm show on fox? | SELECT 8:30 PM FROM table WHERE Network = fox |
What is the 8:30pm channel that has local programming at ten and nine thirty is my thursday night movie? | SELECT 8:30 PM FROM table WHERE 10:00 PM = local programming AND 9:30 PM = my thursday night movie |
Name the 10:00pm when 8:0pm is my thursday night movie | SELECT 10:00 PM FROM table WHERE 8:00 PM = my thursday night movie |
What is the average year for releases on Friday and weeks larger than 2 days? | SELECT AVG Year FROM table WHERE Day in Release = friday AND Day of Week > 2 |
What number of win% has a postseason of did not qualify and rank larger than 8? | SELECT COUNT Win% FROM table WHERE Postseason = did not qualify AND Rank > 8 |
What year ranked larger than 5? | SELECT Year FROM table WHERE Rank > 5 |
What postseason has a win% between 0.40700000000000003 and 108 with a rank of 1? | SELECT Postseason FROM table WHERE Win% > 0.40700000000000003 AND Games < 108 AND Rank = 1 |
How many laps in total does the driver named Eddie Irvine have? | SELECT COUNT Laps FROM table WHERE Driver = eddie irvine |
What's the average crowd size when the venue is western oval? | SELECT AVG Crowd FROM table WHERE Venue = western oval |
What team has Carlos Sánchez as a goalkeeper and an average below 1.12? | SELECT Team FROM table WHERE Average < 1.12 AND Goalkeeper = carlos sánchez |
What is the average of the team who has Jacobo as a goalkeeper and has played more than 32 matches? | SELECT AVG Average FROM table WHERE Goalkeeper = jacobo AND Matches > 32 |
What home team played Fitzroy? | SELECT Home team FROM table WHERE Away team = fitzroy |
Which network has a play-by-play announcer of John Wells? | SELECT Network FROM table WHERE Play-by-play = john wells |
On CBC, who was the colour commentator in 1987? | SELECT Colour commentator(s) FROM table WHERE Network = cbc AND Year = 1987 |
Who was the colour commentator when the play-by-play announcer was Bob Cole? | SELECT Colour commentator(s) FROM table WHERE Play-by-play = bob cole |
Who is the studio host that has a play-by-play announcer of Bob Cole and a colour commentator of Harry Neale? | SELECT Studio host FROM table WHERE Play-by-play = bob cole AND Colour commentator(s) = harry neale |
In 1981, with a studio host of Dave Hodge, who was the colour commentator? | SELECT Colour commentator(s) FROM table WHERE Studio host = dave hodge AND Year = 1981 |
What Song is by the Artist 'mor ve ötesi'? | SELECT Song FROM table WHERE Artist = mor ve ötesi |
How much did the home team score that played the away team who scored 10.14 (74)? | SELECT Home team score FROM table WHERE Away team score = 10.14 (74) |
How big was the crowd when the home team scored 5.14 (44)? | SELECT COUNT Crowd FROM table WHERE Home team score = 5.14 (44) |
What date did the home team Richmond play? | SELECT Date FROM table WHERE Home team = richmond |
What size was the biggest crowd that watched the home team Hawthorn play? | SELECT MAX Crowd FROM table WHERE Home team = hawthorn |
What is the name of the away team that scored 9.12 (66)? | SELECT Away team FROM table WHERE Away team score = 9.12 (66) |
What is the high cap total for a lock with the vicenza rangers? | SELECT MAX Caps FROM table WHERE Position = lock AND Club/province = vicenza rangers |
When was nese malifa born? | SELECT Date of Birth (Age) FROM table WHERE Player = nese malifa |
What position for jj gagiano? | SELECT Position FROM table WHERE Player = jj gagiano |
What club/province has 41 caps? | SELECT Club/province FROM table WHERE Caps = 41 |
Name the date for the australian grand prix. | SELECT Date FROM table WHERE Grand Prix = australian grand prix |
Who did the fastest lap when pole position was damon hill and the location was magny-cours? | SELECT Fastest Lap FROM table WHERE Pole Position = damon hill AND Location = magny-cours |
What was the date for the canadian grand prix? | SELECT Date FROM table WHERE Grand Prix = canadian grand prix |
What is the low rebound total for players from Oklahoma before 1975? | SELECT MIN Rebs FROM table WHERE School/Country = oklahoma AND From < 1975 |
What is the earliest year a SG has over 650 assists? | SELECT MIN From FROM table WHERE Pos. = sg AND Asts > 650 |
What is the number of the Foundation with Japanese orthography of 国立看護大学校? | SELECT SUM Foundation FROM table WHERE Japanese orthography = 国立看護大学校 |
what is the least yards when the average is 7 and the long is less than 7? | SELECT MIN Yards FROM table WHERE Avg. = 7 AND Long < 7 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.