messages
stringlengths 82
562
| __index_level_0__
int64 0
56.4k
|
|---|---|
Generate a SQL for the following text:
Tell me what the notes are for South Australia
SQL:
SELECT Notes FROM table WHERE Current slogan = SOUTH AUSTRALIA
| 0
|
Generate a SQL for the following text:
What is the current series where the new series began in June 2011?
SQL:
SELECT Current series FROM table WHERE Notes = New series began in June 2011
| 1
|
Generate a SQL for the following text:
What is the format for South Australia?
SQL:
SELECT Format FROM table WHERE State/territory = South Australia
| 2
|
Generate a SQL for the following text:
Name the background colour for the Australian Capital Territory
SQL:
SELECT Text/background colour FROM table WHERE State/territory = Australian Capital Territory
| 3
|
Generate a SQL for the following text:
how many times is the fuel propulsion is cng?
SQL:
SELECT COUNT Fleet Series (Quantity) FROM table WHERE Fuel Propulsion = CNG
| 4
|
Generate a SQL for the following text:
what is the fuel propulsion where the fleet series (quantity) is 310-329 (20)?
SQL:
SELECT Fuel Propulsion FROM table WHERE Fleet Series (Quantity) = 310-329 (20)
| 5
|
Generate a SQL for the following text:
who is the manufacturer for the order year 1998?
SQL:
SELECT Manufacturer FROM table WHERE Order Year = 1998
| 6
|
Generate a SQL for the following text:
how many times is the model ge40lfr?
SQL:
SELECT COUNT Manufacturer FROM table WHERE Model = GE40LFR
| 7
|
Generate a SQL for the following text:
how many times is the fleet series (quantity) is 468-473 (6)?
SQL:
SELECT COUNT Order Year FROM table WHERE Fleet Series (Quantity) = 468-473 (6)
| 8
|
Generate a SQL for the following text:
what is the powertrain (engine/transmission) when the order year is 2000?
SQL:
SELECT Powertrain (Engine/Transmission) FROM table WHERE Order Year = 2000
| 9
|
Generate a SQL for the following text:
What if the description of a ch-47d chinook?
SQL:
SELECT Description FROM table WHERE Aircraft = CH-47D Chinook
| 10
|
Generate a SQL for the following text:
What is the max gross weight of the Robinson R-22?
SQL:
SELECT Max Gross Weight FROM table WHERE Aircraft = Robinson R-22
| 11
|
Generate a SQL for the following text:
What school did player number 6 come from?
SQL:
SELECT School/Club Team FROM table WHERE No. = 6
| 12
|
Generate a SQL for the following text:
What school did the player that has been in Toronto from 2012-present come from?
SQL:
SELECT School/Club Team FROM table WHERE Years in Toronto = 2012-present
| 13
|
Generate a SQL for the following text:
What school did the player that has been in Toronto from 2010-2012 go to?
SQL:
SELECT School/Club Team FROM table WHERE Years in Toronto = 2010-2012
| 14
|
Generate a SQL for the following text:
What position did the player from Baylor play?
SQL:
SELECT Position FROM table WHERE School/Club Team = Baylor
| 15
|
Generate a SQL for the following text:
Who played in the Toronto Raptors from 1995-96?
SQL:
SELECT Player FROM table WHERE Years in Toronto = 1995-96
| 16
|
Generate a SQL for the following text:
Which number was Patrick O'Bryant?
SQL:
SELECT No. FROM table WHERE Player = Patrick O'Bryant
| 17
|
Generate a SQL for the following text:
What school did Patrick O'Bryant play for?
SQL:
SELECT School/Club Team FROM table WHERE Player = Patrick O'Bryant
| 18
|
Generate a SQL for the following text:
How many number does Fordham school have?
SQL:
SELECT COUNT No. FROM table WHERE School/Club Team = Fordham
| 19
|
Generate a SQL for the following text:
Which school was in Toronto in 2001-02?
SQL:
SELECT School/Club Team FROM table WHERE Years in Toronto = 2001-02
| 20
|
Generate a SQL for the following text:
Which school did the player that played 2004-05 attend?
SQL:
SELECT School/Club Team FROM table WHERE Years in Toronto = 2004-05
| 21
|
Generate a SQL for the following text:
Which position does Loren Woods play?
SQL:
SELECT Position FROM table WHERE Player = Loren Woods
| 22
|
Generate a SQL for the following text:
What number is the player that played 1998-2001
SQL:
SELECT MIN No. FROM table WHERE Years in Toronto = 1998-2001
| 23
|
Generate a SQL for the following text:
Which country is the player that went to Georgetown from?
SQL:
SELECT Nationality FROM table WHERE School/Club Team = Georgetown
| 24
|
Generate a SQL for the following text:
Which school did Herb Williams go to?
SQL:
SELECT School/Club Team FROM table WHERE Player = Herb Williams
| 25
|
Generate a SQL for the following text:
When did the player from Hawaii play for Toronto?
SQL:
SELECT Years in Toronto FROM table WHERE School/Club Team = Hawaii
| 26
|
Generate a SQL for the following text:
During what period did Dell Curry play for Toronto?
SQL:
SELECT Years in Toronto FROM table WHERE Player = Dell Curry
| 27
|
Generate a SQL for the following text:
What's the number of the player from Boise State?
SQL:
SELECT No. FROM table WHERE School/Club Team = Boise State
| 28
|
Generate a SQL for the following text:
What's Dell Curry nationality?
SQL:
SELECT Nationality FROM table WHERE Player = Dell Curry
| 29
|
Generate a SQL for the following text:
which player is from georgia
SQL:
SELECT Player FROM table WHERE School/Club Team = Georgia
| 30
|
Generate a SQL for the following text:
what school is rudy gay from
SQL:
SELECT School/Club Team FROM table WHERE Player = Rudy Gay
| 31
|
Generate a SQL for the following text:
what nationality is the player who played from 1997-98
SQL:
SELECT Nationality FROM table WHERE Years in Toronto = 1997-98
| 32
|
Generate a SQL for the following text:
what position did the player from connecticut play
SQL:
SELECT Position FROM table WHERE School/Club Team = Connecticut
| 33
|
Generate a SQL for the following text:
During which years was Marcus Banks in Toronto?
SQL:
SELECT Years in Toronto FROM table WHERE Player = Marcus Banks
| 34
|
Generate a SQL for the following text:
Which positions were in Toronto in 2004?
SQL:
SELECT Position FROM table WHERE Years in Toronto = 2004
| 35
|
Generate a SQL for the following text:
What nationality is the player Muggsy Bogues?
SQL:
SELECT Nationality FROM table WHERE Player = Muggsy Bogues
| 36
|
Generate a SQL for the following text:
What years was the player Lonny Baxter in Toronto?
SQL:
SELECT Years in Toronto FROM table WHERE Player = Lonny Baxter
| 37
|
Generate a SQL for the following text:
How many players were with the school or club team La Salle?
SQL:
SELECT COUNT Player FROM table WHERE School/Club Team = La Salle
| 38
|
Generate a SQL for the following text:
When the scoring rank was 117, what was the best finish?
SQL:
SELECT Best finish FROM table WHERE Scoring rank = 117
| 39
|
Generate a SQL for the following text:
When the best finish was T69, how many people came in 2nd?
SQL:
SELECT 2nd FROM table WHERE Best finish = T69
| 40
|
Generate a SQL for the following text:
How many wins were there when the money list rank was 183?
SQL:
SELECT COUNT Wins FROM table WHERE Money list rank = 183
| 41
|
Generate a SQL for the following text:
When the money list rank was n/a, what was the scoring average?
SQL:
SELECT Scoring average FROM table WHERE Money list rank = n/a
| 42
|
Generate a SQL for the following text:
What time was the highest for 2nd finishers?
SQL:
SELECT MAX 2nd FROM table
| 43
|
Generate a SQL for the following text:
When did the Metrostars have their first Rookie of the Year winner?
SQL:
SELECT MIN Season FROM table WHERE Team = MetroStars
| 44
|
Generate a SQL for the following text:
What college did the Rookie of the Year from the Columbus Crew attend?
SQL:
SELECT College FROM table WHERE Team = Columbus Crew
| 45
|
Generate a SQL for the following text:
How many teams had a #1 draft pick that won the Rookie of the Year Award?
SQL:
SELECT COUNT Team FROM table WHERE Draft Pick # = 1
| 46
|
Generate a SQL for the following text:
What position did the #10 draft pick play?
SQL:
SELECT Position FROM table WHERE Draft Pick # = 10
| 47
|
Generate a SQL for the following text:
what's the years played with singles w-l of 3–2
SQL:
SELECT Years Played FROM table WHERE Singles W-L = 3–2
| 48
|
Generate a SQL for the following text:
what's the doubles w-l for player seol jae-min (none)
SQL:
SELECT Doubles W-L FROM table WHERE Player = Seol Jae-Min (none)
| 49
|
Generate a SQL for the following text:
what's the singles w-l for kim doo-hwan
SQL:
SELECT Singles W-L FROM table WHERE Player = Kim Doo-Hwan
| 50
|
Generate a SQL for the following text:
what's the total number of singles w-l with doubles w-l of 0–0 and total w-l of 3–1
SQL:
SELECT COUNT Singles W-L FROM table WHERE Doubles W-L = 0–0 AND Total W-L = 3–1
| 51
|
Generate a SQL for the following text:
what's the doubles w-l with years played value of 1 (1968)
SQL:
SELECT Doubles W-L FROM table WHERE Years Played = 1 (1968)
| 52
|
Generate a SQL for the following text:
what years are played for player im chung-yang
SQL:
SELECT Years Played FROM table WHERE Player = Im Chung-Yang
| 53
|
Generate a SQL for the following text:
What is the name of the 375 crest length?
SQL:
SELECT Name FROM table WHERE Crest length (meters) = 375
| 54
|
Generate a SQL for the following text:
What is year of construction of spitallamm?
SQL:
SELECT MIN Year of construction FROM table WHERE Name = Spitallamm
| 55
|
Generate a SQL for the following text:
What is the canton of grande dixence?
SQL:
SELECT Canton FROM table WHERE Name = Grande Dixence
| 56
|
Generate a SQL for the following text:
What is the name where lago di luzzone is?
SQL:
SELECT Name FROM table WHERE Name of the Lake = Lago di Luzzone
| 57
|
Generate a SQL for the following text:
What is the guardian mātṛkā for the guardian whose consort is Svāhā?
SQL:
SELECT Guardian Mātṛkā FROM table WHERE Consort = Svāhā
| 58
|
Generate a SQL for the following text:
Where the mantra is "oṃ yaṃ vāyuve namaḥ", what is the direction of the guardian?
SQL:
SELECT Direction FROM table WHERE Mantra = Oṃ Yaṃ Vāyuve Namaḥ
| 59
|
Generate a SQL for the following text:
What weapon is used by the guardian whose consort is śacī?
SQL:
SELECT Weapon FROM table WHERE Consort = Śacī
| 60
|
Generate a SQL for the following text:
What are the directions for the guardian whose weapon is khaḍga (sword)?
SQL:
SELECT Direction FROM table WHERE Weapon = Khaḍga (sword)
| 61
|
Generate a SQL for the following text:
What are the weapons used by guardians for the direction East?
SQL:
SELECT Weapon FROM table WHERE Direction = East
| 62
|
Generate a SQL for the following text:
What are the directions for the guardian whose graha (planet) is bṛhaspati (Jupiter)?
SQL:
SELECT Direction FROM table WHERE Graha (Planet) = Bṛhaspati (Jupiter)
| 63
|
Generate a SQL for the following text:
What is the number of chapters listed for the fraternity with a headquarters in Austin, Texas?
SQL:
SELECT MAX Chapters FROM table WHERE Classification = Fraternity AND Headquarters = Austin, Texas
| 64
|
Generate a SQL for the following text:
What are the members listed with the sorority classification
SQL:
SELECT Member FROM table WHERE Classification = Sorority
| 65
|
Generate a SQL for the following text:
Name the member that has 12 chapters
SQL:
SELECT Member FROM table WHERE Chapters = 12
| 66
|
Generate a SQL for the following text:
Where is the headquarters of Alpha Nu Omega
SQL:
SELECT Headquarters FROM table WHERE Member = Alpha Nu Omega
| 67
|
Generate a SQL for the following text:
what is the number of relapsing fever when malaria is 3000
SQL:
SELECT MIN Relapsing fever FROM table WHERE Malaria = 3000
| 68
|
Generate a SQL for the following text:
what is the typhoid fever number for the year 1934
SQL:
SELECT Typhoid fever FROM table WHERE Year = 1934
| 69
|
Generate a SQL for the following text:
What are all the typhus number when smallpox is 4
SQL:
SELECT Typhus FROM table WHERE Smallpox = 4
| 70
|
Generate a SQL for the following text:
what is the number of smallpox when typhoid fever is 293
SQL:
SELECT MAX Smallpox FROM table WHERE Typhoid fever = 293
| 71
|
Generate a SQL for the following text:
what is the typhoid fever number for the year 1929
SQL:
SELECT Typhoid fever FROM table WHERE Year = 1929
| 72
|
Generate a SQL for the following text:
How many schools are in Bloomington, IN?
SQL:
SELECT COUNT Founded FROM table WHERE Location = Bloomington, IN
| 73
|
Generate a SQL for the following text:
How many of the schools are designated private/Presbyterian?
SQL:
SELECT COUNT Location FROM table WHERE Affiliation = Private/Presbyterian
| 74
|
Generate a SQL for the following text:
In what year was Lindenwood University founded?
SQL:
SELECT MIN Founded FROM table WHERE School = Lindenwood University
| 75
|
Generate a SQL for the following text:
How many of the schools listed are in Ames, IA?
SQL:
SELECT COUNT Primary conference FROM table WHERE Location = Ames, IA
| 76
|
Generate a SQL for the following text:
What is the capital (endonym) where Douglas is the Capital (exonym)?
SQL:
SELECT Capital ( endonym ) FROM table WHERE Capital ( exonym ) = Douglas
| 77
|
Generate a SQL for the following text:
How many countries (endonym) has the capital (endonym) of Jakarta?
SQL:
SELECT COUNT Country ( endonym ) FROM table WHERE Capital ( endonym ) = Jakarta
| 78
|
Generate a SQL for the following text:
What is the country (exonym) where the official or native language(s) (alphabet/script) is Icelandic?
SQL:
SELECT Country ( exonym ) FROM table WHERE Official or native language(s) (alphabet/script) = Icelandic
| 79
|
Generate a SQL for the following text:
In which country (endonym) is Irish English the official or native language(s) (alphabet/script)?
SQL:
SELECT Country ( endonym ) FROM table WHERE Official or native language(s) (alphabet/script) = Irish English
| 80
|
Generate a SQL for the following text:
Which country (exonym) is the country (endonym) isle of man ellan vannin?
SQL:
SELECT Country ( exonym ) FROM table WHERE Country ( endonym ) = Isle of Man Ellan Vannin
| 81
|
Generate a SQL for the following text:
The season premiere aired on September 11, 2000 aired on how many networks?
SQL:
SELECT COUNT Network FROM table WHERE Season premiere = September 11, 2000
| 82
|
Generate a SQL for the following text:
What was the ranking of the season finale aired on May 8, 2006?
SQL:
SELECT Ranking FROM table WHERE Season finale = May 8, 2006
| 83
|
Generate a SQL for the following text:
what is the minimum population canada 2011 census with seat of rcm being cowansville
SQL:
SELECT MIN Population Canada 2011 Census FROM table WHERE Seat of RCM = Cowansville
| 84
|
Generate a SQL for the following text:
what's the land area with seat of rcm being granby
SQL:
SELECT Land Area FROM table WHERE Seat of RCM = Granby
| 85
|
Generate a SQL for the following text:
What is the population for County Mayo with the English Name Carrowteige?
SQL:
SELECT Population FROM table WHERE County = County Mayo AND English name = Carrowteige
| 86
|
Generate a SQL for the following text:
What is the Irish name listed with 62% Irish speakers?
SQL:
SELECT Irish name FROM table WHERE Irish speakers = 62%
| 87
|
Generate a SQL for the following text:
What is the population for the Irish Name Leitir mealláin?
SQL:
SELECT Population FROM table WHERE Irish name = Leitir Mealláin
| 88
|
Generate a SQL for the following text:
What is the county for the Irish name Carna?
SQL:
SELECT County FROM table WHERE Irish name = Carna
| 89
|
Generate a SQL for the following text:
How many County Kerry have 53% Irish speakers?
SQL:
SELECT COUNT English name FROM table WHERE Irish speakers = 53% AND County = County Kerry
| 90
|
Generate a SQL for the following text:
What is the population for the English name Spiddal?
SQL:
SELECT Population FROM table WHERE English name = Spiddal
| 91
|
Generate a SQL for the following text:
What is the the Chinese population for the state that has a Filipino population of 1474707?
SQL:
SELECT MIN Chinese FROM table WHERE Filipino = 1474707
| 92
|
Generate a SQL for the following text:
How many States have an Indian population of 30947?
SQL:
SELECT COUNT Filipino FROM table WHERE Indian = 30947
| 93
|
Generate a SQL for the following text:
What is the highest Indian population?
SQL:
SELECT MAX Indian FROM table
| 94
|
Generate a SQL for the following text:
What is Australia's role in the UN operation Unama?
SQL:
SELECT Australian role FROM table WHERE UN Operation name = UNAMA
| 95
|
Generate a SQL for the following text:
What is the UN operation title with the UN operation name, Uncok?
SQL:
SELECT UN Operation title FROM table WHERE UN Operation name = UNCOK
| 96
|
Generate a SQL for the following text:
How many Australians were in the UN commission on Korea?
SQL:
SELECT COUNT Number of Australians involved FROM table WHERE UN Operation title = UN Commission on Korea
| 97
|
Generate a SQL for the following text:
When was it where 65 Australians were involved in the UN?
SQL:
SELECT Dates of Australian involvement FROM table WHERE Number of Australians involved = 65
| 98
|
Generate a SQL for the following text:
What year is the season with the 10.73 million views?
SQL:
SELECT TV season FROM table WHERE Viewers (millions) = 10.73
| 99
|
End of preview. Expand
in Data Studio
- Downloads last month
- 13