question
stringlengths 12
244
| sql
stringlengths 22
468
|
---|---|
How many Universities were founded in Tacoma, Washington?
|
SELECT COUNT Founded FROM table WHERE Location = Tacoma, Washington
|
Which school's team has the nickname of the Wildcats?
|
SELECT Institution FROM table WHERE Team Nickname = Wildcats
|
What year was the university that is located in Ellensburg, Washington established?
|
SELECT MIN Founded FROM table WHERE Location = Ellensburg, Washington
|
Where is the university located that's nicknamed the Wolves?
|
SELECT Location FROM table WHERE Team Nickname = Wolves
|
What is the total number of viewers where the share is 7 and the week rank is 64?
|
SELECT COUNT Viewers FROM table WHERE Share = 7 AND Weekly Rank = 64
|
How many episodes have a share bigger than 7.0?
|
SELECT COUNT # FROM table WHERE Share > 7.0
|
How many episodes have a weekly rank tba and are broadcast at 8:00 p.m.?
|
SELECT COUNT # FROM table WHERE Weekly Rank = TBA AND Timeslot = 8:00 P.M.
|
What are the timeslot(s) for broadcast on February 22, 2008?
|
SELECT Timeslot FROM table WHERE Air Date = February 22, 2008
|
What broadcast dates have a weekly rank of 73?
|
SELECT COUNT Air Date FROM table WHERE Weekly Rank = 73
|
When was the date of appointment for St. Johnstone's manager?
|
SELECT Date of appointment FROM table WHERE Team = St. Johnstone
|
Who was the outgoing manager for Aberdeen?
|
SELECT Outgoing manager FROM table WHERE Team = Aberdeen
|
When was the date of appointment for the manager replacing Wim Jansen?
|
SELECT Date of appointment FROM table WHERE Outgoing manager = Wim Jansen
|
What is the result for salmonella spp. if you use citrate?
|
SELECT COUNT Citrate FROM table WHERE Species = Salmonella spp.
|
Which species show a negative result with both voges-proskauer and indole?
|
SELECT Species FROM table WHERE Voges-Proskauer = Negative AND Indole = Negative
|
What are the results for testing the species with voges-proskauer when citrate yields a positive result?
|
SELECT Voges-Proskauer FROM table WHERE Citrate = Positive
|
What is the result of proteus mirabilis tested with indole?
|
SELECT Indole FROM table WHERE Species = Proteus mirabilis
|
When was the show originally aired that had a TV broadcast of S07E04?
|
SELECT Originalairdate FROM table WHERE TV Broadcast = S07E04
|
Which title was No. 4 in season?
|
SELECT Title FROM table WHERE No. in season = 4
|
Who directed the show that had a TV broadcast of S07E04?
|
SELECT Directed by FROM table WHERE TV Broadcast = S07E04
|
What seasons did unicaja málaga finish in 3rd?
|
SELECT Season FROM table WHERE 3rd Place = Unicaja Málaga
|
What teams finished 3rd when limoges finished 4th?
|
SELECT 3rd Place FROM table WHERE 4th Place = Limoges
|
What team finished in 1st when tau cerámica was in 3rd?
|
SELECT 1st Place FROM table WHERE 3rd Place = TAU Cerámica
|
What teams finished in 3rd when panathinaikos finished 2nd?
|
SELECT 3rd Place FROM table WHERE 2nd Place = Panathinaikos
|
What was the emission rating in Mid-Atlantic South for the vehicle that was rated 90 g/mi (56 g/km) in Alaska and 110 g/mi (68 g/km) in California?
|
SELECT Mid-Atlantic South (Washington, D.C.) FROM table WHERE Alaska ( Juneau ) = 90 g/mi (56 g/km) AND California (San Francisco) = 110 g/mi (68 g/km)
|
What was the emission rating in Mid-Atlantic South for the vehicle that was rated 300 g/mi (186 g/km) in the Midwest?
|
SELECT Mid-Atlantic South (Washington, D.C.) FROM table WHERE Midwest (Des Moines) = 300 g/mi (186 g/km)
|
What was the US national average electric mix rating for the vehicle that was rated 280 g/mi (174 g/km) in the Midwest?
|
SELECT U.S. national average electric mix FROM table WHERE Midwest (Des Moines) = 280 g/mi (174 g/km)
|
How many Ford Focus electric vehicle emission test scores were recorded in California?
|
SELECT COUNT California (San Francisco) FROM table WHERE Vehicle = Ford Focus Electric
|
What was the emission rating in California for the vehicle that was rated 80 g/mi (50 g/km) in Alaska and 250 g/mi (155 g/km) in the Southeast ?
|
SELECT California (San Francisco) FROM table WHERE Alaska ( Juneau ) = 80 g/mi (50 g/km) AND Southeast (Atlanta) = 250 g/mi (155 g/km)
|
What was the lowest no. of attendance on record?
|
SELECT MIN Attendance FROM table
|
When was the game played if the attendance is less than 6427.0?
|
SELECT Date FROM table WHERE Attendance < 6427.0
|
How many were in attendance during the game on January 9, 1988?
|
SELECT Attendance FROM table WHERE Date = January 9, 1988
|
Where is the headquarters of the place whose abbreviation is hy?
|
SELECT Headquarters FROM table WHERE Code = HY
|
Where is the headquarters of the place whose population in 2011 was 3811738?
|
SELECT Headquarters FROM table WHERE Population (2011) = 3811738
|
What was the minimum population in 2011 of the district of Prakasam?
|
SELECT MIN Population (2011) FROM table WHERE District = Prakasam
|
What is the abbreviation of the district of Mahbubnagar?
|
SELECT Code FROM table WHERE District = Mahbubnagar
|
What is the 2011 population of the district of East Godavari?
|
SELECT Population (2011) FROM table WHERE District = East Godavari
|
What is the adjusted GDP when the nominal GDP per capita is 2874?
|
SELECT GDP Adjusted ($ billions) FROM table WHERE GDP per capita Nominal ($) = 2874
|
What is the adjusted GDP per capita when the population is 37.376 million?
|
SELECT GDP per capita Adjusted ($) FROM table WHERE Population (millions) = 37.376
|
What is the nominal GDP per capita when the population is 63.056 million?
|
SELECT MIN GDP per capita Nominal ($) FROM table WHERE Population (millions) = 63.056
|
What is the adjusted GDP when the population is 5.141 million?
|
SELECT GDP Adjusted ($ billions) FROM table WHERE Population (millions) = 5.141
|
What is the population in millions when the adjusted GDP is 492 billion?
|
SELECT Population (millions) FROM table WHERE GDP Adjusted ($ billions) = 492
|
What is the adjusted GDP when the nominal GDP is 8.43 (in billions)?
|
SELECT GDP Adjusted ($ billions) FROM table WHERE GDP Nominal ($ billions) = 8.43
|
What was the opearint profit (s$m) associated with an expenditure (s$m) of 12,127.8?
|
SELECT Operating profit (S$m) FROM table WHERE Expenditure (S$m) = 12,127.8
|
What was the expenditure (s$m) associated with an operating profit (s$m) of 717.1?
|
SELECT Expenditure (S$m) FROM table WHERE Operating profit (S$m) = 717.1
|
How many years was the operating profit (s$m) 717.1?
|
SELECT COUNT Profit before taxation (S$m) FROM table WHERE Operating profit (S$m) = 717.1
|
Name the simplified characters for wade giles is ch'ing-yüan … i-ma
|
SELECT Simplified characters FROM table WHERE Wade-Giles = ch'ing-yüan … i-ma
|
Name the pinyin for 657 date
|
SELECT Pinyin FROM table WHERE Date (CE) = 657
|
Name the text for 心猿意马
|
SELECT Text FROM table WHERE Simplified characters = 心猿意马
|
Name the simplified charaacters being hsin-yüan … i-ma
|
SELECT Simplified characters FROM table WHERE Wade-Giles = hsin-yüan … i-ma
|
Name the total number of pinyin for hsin-yüan-i-ma
|
SELECT COUNT Pinyin FROM table WHERE Wade-Giles = hsin-yüan-i-ma
|
Name the date for qíngyuán … yìmǎ
|
SELECT Date (CE) FROM table WHERE Pinyin = qíngyuán … yìmǎ
|
Which line offers Fast to Norwood Junction?
|
SELECT Line FROM table WHERE Service Pattern = Fast to Norwood Junction
|
Who is the operator to Highbury & Islington?
|
SELECT Operator FROM table WHERE Destination = Highbury & Islington
|
How many frequency figures are given for next station service pattern?
|
SELECT COUNT Frequency (per hour) FROM table WHERE Service Pattern = Next station
|
Who is the operator to destination Dalston Junction?
|
SELECT Operator FROM table WHERE Destination = Dalston Junction
|
How many tournament wins were at Volvo Masters Andalucia?
|
SELECT COUNT No. FROM table WHERE Tournament = Volvo Masters Andalucia
|
Who was the runner up at the Volvo Masters Andalucia?
|
SELECT Runner(s)-up FROM table WHERE Tournament = Volvo Masters Andalucia
|
In what tournament was the winning score 68-67-65-66=266?
|
SELECT Tournament FROM table WHERE Winning score = 68-67-65-66=266
|
Name the joined for blue hose
|
SELECT Joined FROM table WHERE Nickname = Blue Hose
|
Name the maximum founded for blue hose
|
SELECT MAX Founded FROM table WHERE Nickname = Blue Hose
|
Name the maximum enrollment for st. andrews university
|
SELECT MAX Enrollment FROM table WHERE Institution = St. Andrews University
|
Name the current conference for 1974, 1989
|
SELECT Current Conference FROM table WHERE Left = 1974, 1989
|
What is the total number of episodes where alexa wyatt is the writer?
|
SELECT COUNT Series # FROM table WHERE Writer(s) = Alexa Wyatt
|
Who is the director when Chris Hawkshaw is the writer?
|
SELECT Director(s) FROM table WHERE Writer(s) = Chris Hawkshaw
|
What is the season number of the episode directed by Donald Crombie and the series number is 40?
|
SELECT Season # FROM table WHERE Director(s) = Donald Crombie AND Series # = 40
|
What is the released date for Super Mario 64 DS?
|
SELECT Released Date FROM table WHERE Western Title = Super Mario 64 DS
|
What are the game modes for the game released in 2007?
|
SELECT Game Modes FROM table WHERE Released Date = 2007
|
How many games share their western title with the Chinese title of 摸摸耀西-云中漫步 ?
|
SELECT COUNT Western Title FROM table WHERE Chinese Title = 摸摸耀西-云中漫步
|
What was the released date of Polarium?
|
SELECT Released Date FROM table WHERE Western Title = Polarium
|
What game modes are there when the pinyin is zhígǎn yī bǐ ?
|
SELECT Game Modes FROM table WHERE Pinyin = Zhígǎn Yī Bǐ
|
What is the status of donor payment in the country where there are 6 children per donor and no data on allowed recipients?
|
SELECT Donor payment FROM table WHERE Children per donor = 6 children AND Allowed recipients = no data
|
What are donor payments in the country where there are 12 children to 6 families (2 per family)?
|
SELECT Donor payment FROM table WHERE Children per donor = 12 children to 6 families (2 per family)
|
What is the donor payment in Belgium?
|
SELECT Donor payment FROM table WHERE Country = Belgium
|
What is the country where there are 8 children per donor and no data for donor payments?
|
SELECT Country FROM table WHERE Children per donor = 8 children AND Donor payment = no data
|
What are the children per donor in the country where the allowed recipients are married or in cohabitation?
|
SELECT Children per donor FROM table WHERE Allowed recipients = Married or in cohabitation
|
List the possible children per donor levels for countries where the allowed recipients is no data.
|
SELECT Children per donor FROM table WHERE Allowed recipients = no data
|
Against which team does Missouri Tigers have a record of mu, 2-1 at a neutral site?
|
SELECT Missouri vs. FROM table WHERE at Neutral Site = MU, 2-1
|
Which is the team against which Missouri Tigers have a record of ui, 4-1 at the opponent's venue?How
|
SELECT Missouri vs. FROM table WHERE at Opponents Venue = UI, 4-1
|
How many times did the team achieve an overrall record of mu, 21-19?
|
SELECT COUNT Last 5 Meetings FROM table WHERE Overall Record = MU, 21-19
|
What is the record at the neutral site for when the overall record is ui, 27-16?
|
SELECT at Neutral Site FROM table WHERE Overall Record = UI, 27-16
|
What is the record at the opponent's venue against the team for which the record for the last 5 meetings is mu, 4-1 and the record at the neutral site is tied, 0-0?
|
SELECT at Opponents Venue FROM table WHERE Last 5 Meetings = MU, 4-1 AND at Neutral Site = Tied, 0-0
|
What is the stamp duty reserve tax when the percentage over total tax revenue is 0.79?
|
SELECT Stamp duty reserve tax FROM table WHERE over Total Tax Revenue (in %) = 0.79
|
When the standard stamp duty is 367 what is the percentage over gdp?
|
SELECT over GDP (in %) FROM table WHERE Standard Stamp Duty = 367
|
When the stamp duty reserve tax is 3,669 what is the percentage over gdp?
|
SELECT over GDP (in %) FROM table WHERE Stamp duty reserve tax = 3,669
|
During what years are the percentage over total tax revenue is 0.65?
|
SELECT Year FROM table WHERE over Total Tax Revenue (in %) = 0.65
|
Name the total number of opponets venue for oklahoma
|
SELECT COUNT at Opponents Venue FROM table WHERE Missouri vs. = Oklahoma
|
Name the total number of last 5 meetings for texas tech
|
SELECT COUNT Last 5 Meetings FROM table WHERE Missouri vs. = Texas Tech
|
Name the total number of series sorted for when released is april 2010
|
SELECT COUNT Series Sorted FROM table WHERE Released = April 2010
|
Name the author for 6y/ae
|
SELECT Author FROM table WHERE Series Sorted = 6Y/AE
|
Name the author for peri and april 2010
|
SELECT Author FROM table WHERE Featuring = Peri AND Released = April 2010
|
Name the released for pat mills
|
SELECT Released FROM table WHERE Author = Pat Mills
|
Name the featuring for pat mills
|
SELECT Featuring FROM table WHERE Author = Pat Mills
|
What are the outcomes of the last 5 meetings where the overall record is UM, 2-1?
|
SELECT Last 5 Meetings FROM table WHERE Overall Record = UM, 2-1
|
What is the record of wins/losses that were played at opponents venue (uf, 1-0)
|
SELECT Overall Record FROM table WHERE at Opponents Venue = UF, 1-0
|
Who are the opponents of Missouri that have an overall record of MU, 3-1?
|
SELECT Missouri vs. FROM table WHERE Overall Record = MU, 3-1
|
What is the record at Columbia for the team overall record of MU, 3-1?
|
SELECT at Columbia FROM table WHERE Overall Record = MU, 3-1
|
How many feet in length are there when the length is 106.1 meters?
|
SELECT COUNT Length feet FROM table WHERE Length meters = 106.1
|
When the kilometers from kingston is 105.4 what is the minimum amount of length in feet?
|
SELECT MIN Length feet FROM table WHERE Km from Kingston = 105.4
|
Which parishes have a railroad length of 51.8 meters?
|
SELECT Parish FROM table WHERE Length meters = 51.8
|
When the railroad length is 362 feet how many miles is it from kingston?
|
SELECT Mi from Kingston FROM table WHERE Length feet = 362
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.