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