instruction
stringclasses
1 value
input
stringlengths
12
244
output
stringlengths
22
468
Translate the following into a SQL query
who is the the mens singles with mens doubles being kaj lindfors kaj osterberg
SELECT Mens singles FROM table WHERE Mens doubles = Kaj Lindfors Kaj Osterberg
Translate the following into a SQL query
How big (in sq mi) is the island that's 4065 km2?
SELECT Area (sqmi) FROM table WHERE Area (km 2 ) = 4065
Translate the following into a SQL query
What is the smallest rank number of those used to rank the islands?
SELECT MIN Rank FROM table
Translate the following into a SQL query
What's the name is the island with a population of just 64?
SELECT Islands Name FROM table WHERE Population (2000) = 64
Translate the following into a SQL query
what's the tries against with try bonus being 10
SELECT Tries against FROM table WHERE Try bonus = 10
Translate the following into a SQL query
what's the points with played being 22 and points against being 319
SELECT Points FROM table WHERE Played = 22 AND Points against = 319
Translate the following into a SQL query
what's the losing bonus with played being 22 and tries against being 38
SELECT Losing bonus FROM table WHERE Played = 22 AND Tries against = 38
Translate the following into a SQL query
what's the try bonus with club being abercwmboi rfc
SELECT Try bonus FROM table WHERE Club = Abercwmboi RFC
Translate the following into a SQL query
what's the points for with points against being 556
SELECT Points for FROM table WHERE Points against = 556
Translate the following into a SQL query
what's the won with points against being 304
SELECT Won FROM table WHERE Points against = 304
Translate the following into a SQL query
Where was held the ceremony for the 12th Pride of Britain Awards?
SELECT Location FROM table WHERE Episode = 12th Pride of Britain Awards
Translate the following into a SQL query
What episode of the Pride of Britain Awards had an audience of 6.06 million viewers?
SELECT Episode FROM table WHERE Viewers (millions) = 6.06
Translate the following into a SQL query
How much audience did the 7th Pride of Britain Awards ceremony have?
SELECT COUNT Viewers (millions) FROM table WHERE Episode = 7th Pride of Britain Awards
Translate the following into a SQL query
what's the vineyard surface (2010) with grand cru being bienvenues-bâtard-montrachet
SELECT Vineyard surface (2010) FROM table WHERE Grand Cru = Bienvenues-Bâtard-Montrachet
Translate the following into a SQL query
what's the village with wine style being red wine and vineyard surface (2010) being hectares (acres)
SELECT Village FROM table WHERE Wine style = Red wine AND Vineyard surface (2010) = hectares (acres)
Translate the following into a SQL query
what's the village with wine style being red wine and vineyard surface (2010) being hectares (acres)
SELECT Village FROM table WHERE Wine style = Red wine AND Vineyard surface (2010) = hectares (acres)
Translate the following into a SQL query
what's the wine style with grand cru being romanée-conti
SELECT Wine style FROM table WHERE Grand Cru = Romanée-Conti
Translate the following into a SQL query
what's the wine style with grand cru being romanée-conti
SELECT Wine style FROM table WHERE Grand Cru = Romanée-Conti
Translate the following into a SQL query
what's the wine style with village being puligny-montrachet [d ]
SELECT Wine style FROM table WHERE Village = Puligny-Montrachet [d ]
Translate the following into a SQL query
How many classes between senior and junior year for world history
SELECT COUNT SENIOR (4th Year) FROM table WHERE JUNIOR (3rd Year) = World History
Translate the following into a SQL query
What is after intermediate algebra
SELECT SENIOR (4th Year) FROM table WHERE SOPHOMORE (Grade 8) = Intermediate Algebra
Translate the following into a SQL query
what is the maximum # with original airdate being march 14, 2001
SELECT MAX # FROM table WHERE Original airdate = March 14, 2001
Translate the following into a SQL query
how many original airdate with writer(s) being becky hartman edwards and director being adam nimoy
SELECT COUNT Original airdate FROM table WHERE Writer(s) = Becky Hartman Edwards AND Director = Adam Nimoy
Translate the following into a SQL query
who is the the writer(s) with original airdate being february 7, 2001
SELECT Writer(s) FROM table WHERE Original airdate = February 7, 2001
Translate the following into a SQL query
what's the frequency mhz with city of license being chattanooga, tennessee
SELECT Frequency MHz FROM table WHERE City of license = Chattanooga, Tennessee
Translate the following into a SQL query
how many height m ( ft ) with frequency mhz being 100.1
SELECT COUNT Height m ( ft ) FROM table WHERE Frequency MHz = 100.1
Translate the following into a SQL query
what's the fcc info with call sign being w221aw
SELECT FCC info FROM table WHERE Call sign = W221AW
Translate the following into a SQL query
how many height m ( ft ) with notes being via wccv; formerly w236aj
SELECT COUNT Height m ( ft ) FROM table WHERE Notes = via WCCV; formerly W236AJ
Translate the following into a SQL query
what's the fcc info with call sign being w265av
SELECT FCC info FROM table WHERE Call sign = W265AV
Translate the following into a SQL query
what's the capacity with team being berwick rangers
SELECT Capacity FROM table WHERE Team = Berwick Rangers
Translate the following into a SQL query
what's the team with stadium being borough briggs
SELECT Team FROM table WHERE Stadium = Borough Briggs
Translate the following into a SQL query
what is the maximum lowest with average being 734
SELECT MAX Lowest FROM table WHERE Average = 734
Translate the following into a SQL query
how many highest with team being forfar athletic
SELECT COUNT Highest FROM table WHERE Team = Forfar Athletic
Translate the following into a SQL query
what's the bleeding time with condition being factor v deficiency
SELECT Bleeding time FROM table WHERE Condition = Factor V deficiency
Translate the following into a SQL query
what's the bleeding time with condition being liver failure, end-stage
SELECT Bleeding time FROM table WHERE Condition = Liver failure, end-stage
Translate the following into a SQL query
what's the bleeding time with platelet count being decreased or unaffected
SELECT Bleeding time FROM table WHERE Platelet count = Decreased or unaffected
Translate the following into a SQL query
what's the condition with bleeding time being unaffected and prothrombin time being prolonged
SELECT Condition FROM table WHERE Bleeding time = Unaffected AND Prothrombin time = Prolonged
Translate the following into a SQL query
what's the bleeding time with platelet count being decreased and prothrombin time being prolonged
SELECT Bleeding time FROM table WHERE Platelet count = Decreased AND Prothrombin time = Prolonged
Translate the following into a SQL query
what's the bleeding time with partial thromboplastin time being unaffected and condition being liver failure , early
SELECT Bleeding time FROM table WHERE Partial thromboplastin time = Unaffected AND Condition = Liver failure , early
Translate the following into a SQL query
How many of the elected officials are on the Economic Matters committee?
SELECT COUNT First Elected FROM table WHERE Committee = Economic Matters
Translate the following into a SQL query
Name the delegate first elected in 2003?
SELECT Delegate FROM table WHERE First Elected = 2003
Translate the following into a SQL query
What are the counties represented in District 12.1 12a?
SELECT Counties Represented FROM table WHERE District = 12.1 12A
Translate the following into a SQL query
Which country has a delegate who was first elected in 2006?
SELECT Counties Represented FROM table WHERE First Elected = 2006
Translate the following into a SQL query
Who are the foreign players representing Ekaterinburg?
SELECT Foreign Players (max. 2) FROM table WHERE Town = Ekaterinburg
Translate the following into a SQL query
What town is Volleyball Sportiv Complex (3 500) located in?
SELECT Town FROM table WHERE Arena (capacity) = Volleyball Sportiv Complex (3 500)
Translate the following into a SQL query
What arena was season 6 played at?
SELECT Arena (capacity) FROM table WHERE Previous season = 6
Translate the following into a SQL query
Who was the head coach in season 2?
SELECT Head Coach FROM table WHERE Previous season = 2
Translate the following into a SQL query
On what circuit was the City of Ipswich 400 race held?
SELECT Circuit FROM table WHERE Race Title = City of Ipswich 400
Translate the following into a SQL query
Who was the winner on the Symmons Plains Raceway?
SELECT Winner FROM table WHERE Circuit = Symmons Plains Raceway
Translate the following into a SQL query
What were the dates for Round 8?
SELECT Date FROM table WHERE Rd. = 8
Translate the following into a SQL query
What was the number of rounds on the Hidden Valley Raceway?
SELECT COUNT Rd. FROM table WHERE Circuit = Hidden Valley Raceway
Translate the following into a SQL query
What round was held at the Queensland Raceway?
SELECT Rd. FROM table WHERE Circuit = Queensland Raceway
Translate the following into a SQL query
what the highest number for the opposite of offense for the green bay packers
SELECT MAX Team Defense Rank FROM table WHERE NFL Team = Green Bay Packers
Translate the following into a SQL query
How many counties have an area of 1,205.4 km2?
SELECT COUNT Code FROM table WHERE Area (km 2 ) = 1,205.4
Translate the following into a SQL query
What capital has a population of 596268?
SELECT Capital FROM table WHERE Population Census 2009 = 596268
Translate the following into a SQL query
what's the capital with area (km 2 ) being 12,245.9
SELECT Capital FROM table WHERE Area (km 2 ) = 12,245.9
Translate the following into a SQL query
what's the former province with area (km 2 ) being 12,245.9
SELECT Former Province FROM table WHERE Area (km 2 ) = 12,245.9
Translate the following into a SQL query
how many capital with population census 2009 being 284657
SELECT COUNT Capital FROM table WHERE Population Census 2009 = 284657
Translate the following into a SQL query
what's the area (km 2 ) with population census 2009 being 939370
SELECT Area (km 2 ) FROM table WHERE Population Census 2009 = 939370
Translate the following into a SQL query
what is the minimum code with area (km 2 ) being 12,245.9
SELECT MIN Code FROM table WHERE Area (km 2 ) = 12,245.9
Translate the following into a SQL query
what's the county with code being 2
SELECT County FROM table WHERE Code = 2
Translate the following into a SQL query
In what year did Tom Sneva win a race?
SELECT Season FROM table WHERE Winning Driver = Tom Sneva
Translate the following into a SQL query
What kind of chassis did a winning car with a Foyt engine have in 1979?
SELECT Chassis FROM table WHERE Season = 1979 AND Engine = Foyt
Translate the following into a SQL query
What team does Al Unser drive for?
SELECT Team FROM table WHERE Winning Driver = Al Unser
Translate the following into a SQL query
What team has a vehicle with an Offenhauser engine and a McLaren chassis?
SELECT Team FROM table WHERE Chassis = McLaren AND Engine = Offenhauser
Translate the following into a SQL query
What team raced with a Foyt engine in the Texas Grand Prix?
SELECT Team FROM table WHERE Race Name = Texas Grand Prix AND Engine = Foyt
Translate the following into a SQL query
What network is virtual channel 9.1 linked to?
SELECT Network FROM table WHERE Virtual channel = 9.1
Translate the following into a SQL query
Who owns the station on channel 33.3?
SELECT Station Ownership FROM table WHERE Virtual channel = 33.3
Translate the following into a SQL query
What is JCTV's digital channel?
SELECT Digital channel FROM table WHERE Network = JCTV
Translate the following into a SQL query
What is channel 33.7's official call sign?
SELECT Call sign FROM table WHERE Virtual channel = 33.7
Translate the following into a SQL query
What is HSN's official virtual channel in Minneapolis-St. Paul?
SELECT Virtual channel FROM table WHERE Network = HSN
Translate the following into a SQL query
How many stations own Bounce TV?
SELECT COUNT Station Ownership FROM table WHERE Network = Bounce TV
Translate the following into a SQL query
How many points were made when the tries for was 83?
SELECT Points FROM table WHERE Tries for = 83
Translate the following into a SQL query
How many points are there when the lost is 7?
SELECT Points for FROM table WHERE Lost = 7
Translate the following into a SQL query
What is the losing bonus when the points are 24?
SELECT Losing bonus FROM table WHERE Points = 24
Translate the following into a SQL query
How many losing points does Llandudno RFC have?
SELECT Losing bonus FROM table WHERE Club = Llandudno RFC
Translate the following into a SQL query
What is the try bonus for Ruthin RFC?
SELECT Try bonus FROM table WHERE Club = Ruthin RFC
Translate the following into a SQL query
how many tries against with lost being 11
SELECT COUNT Tries against FROM table WHERE Lost = 11
Translate the following into a SQL query
what's the won with try bonus being 12
SELECT Won FROM table WHERE Try bonus = 12
Translate the following into a SQL query
what's the drawn with lost being 4
SELECT Drawn FROM table WHERE Lost = 4
Translate the following into a SQL query
what's the points against with lost being 13
SELECT Points against FROM table WHERE Lost = 13
Translate the following into a SQL query
what's the points against with won being 11
SELECT Points against FROM table WHERE Won = 11
Translate the following into a SQL query
what's the drawn with points for being 350
SELECT Drawn FROM table WHERE Points for = 350
Translate the following into a SQL query
how many points for with points against being 177
SELECT COUNT Points for FROM table WHERE Points against = 177
Translate the following into a SQL query
what's the lost with club being colwyn bay rfc
SELECT Lost FROM table WHERE Club = Colwyn Bay RFC
Translate the following into a SQL query
what's the won with tries for being 84
SELECT Won FROM table WHERE Tries for = 84
Translate the following into a SQL query
what's the won with points for being 596
SELECT Won FROM table WHERE Points for = 596
Translate the following into a SQL query
what's the points for with lost being 4
SELECT Points for FROM table WHERE Lost = 4
Translate the following into a SQL query
what's the won with points for being 643
SELECT Won FROM table WHERE Points for = 643
Translate the following into a SQL query
What is the Telugu word for хонгорцог in Mongolian?
SELECT Telugu తెలుగు FROM table WHERE Mongolian = Хонгорцог
Translate the following into a SQL query
What is the Malayalam word for punarvasu ಪುನರ್ವಸು in Kannada?
SELECT Malayalam മലയാളം FROM table WHERE Kannada ಕನ್ನಡ = Punarvasu ಪುನರ್ವಸು
Translate the following into a SQL query
What is the Malayalam word that is listed as #10 in the table?
SELECT Malayalam മലയാളം FROM table WHERE # = 10
Translate the following into a SQL query
tell the score when the times gone was 75
SELECT Points against FROM table WHERE Tries against = 75
Translate the following into a SQL query
was the the score when the tries was 743
SELECT Points against FROM table WHERE Points for = 743
Translate the following into a SQL query
tell how many wins there was when the score was 490
SELECT COUNT Won FROM table WHERE Points for = 490
Translate the following into a SQL query
how many extra points were there when the score was 48
SELECT Try bonus FROM table WHERE Points = 48
Translate the following into a SQL query
what was the extra score when the overall score was 52
SELECT Losing bonus FROM table WHERE Tries for = 52
Translate the following into a SQL query
what was the score when the extras were 6
SELECT Points FROM table WHERE Try bonus = 6
Translate the following into a SQL query
What country's capital is buenos aires?
SELECT Country or territory with flag FROM table WHERE Capital = Buenos Aires
Translate the following into a SQL query
What unit of measurement for uruguay?
SELECT Area (km²) (per sqmi) FROM table WHERE Country or territory with flag = Uruguay