sql
stringlengths 9
2.37k
| table
stringclasses 9
values | query
stringlengths 51
503
|
---|---|---|
SELECT home FROM table_name_94 WHERE away = "toronto rebels"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the Home with an Away that is toronto rebels?It is not neccessary to use all the tables.
|
SELECT Award FROM table WHERE Result = nominated AND Year > 2011
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the award for nominated result and year after 2011.It is not neccessary to use all the tables.
|
SELECT year_born__age_ FROM table_name_18 WHERE player = "rowan barrett"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What year was Rowan Barrett born?It is not neccessary to use all the tables.
|
SELECT date FROM table_name_75 WHERE record = "15-4"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What day did the record reach 15-4?It is not neccessary to use all the tables.
|
SELECT bodybuilder FROM table_28035004_1 WHERE operator = "Coventry"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who was the bodybuilder when Coventry was operating?It is not neccessary to use all the tables.
|
SELECT un_region FROM table_16278349_1 WHERE population = 3314000
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the un region for 3314000 populationIt is not neccessary to use all the tables.
|
SELECT score FROM table_name_89 WHERE opponent = "devil rays" AND date = "september 14"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the score against the devil rays on september 14?It is not neccessary to use all the tables.
|
SELECT Horse FROM table WHERE Jockey = jara
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What horse for jara?.It is not neccessary to use all the tables.
|
SELECT Lap-by-lap FROM table WHERE Year = 2011
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who does the lap-by-lap in 2011?.It is not neccessary to use all the tables.
|
SELECT MAX(attendance) FROM table_name_85 WHERE date = "september 27, 1964"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the attendance of the game that was played on September 27 1964?It is not neccessary to use all the tables.
|
SELECT compatibility FROM table WHERE Mnemonic = d for "dynamite"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the compatibility for the Mnemonic d for "dynamite"?.It is not neccessary to use all the tables.
|
SELECT mccain__percentage FROM table_20278716_2 WHERE county = "Burlington"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What percentage of voters choise McCain in Burlington?It is not neccessary to use all the tables.
|
SELECT COUNT(*) > 0 FROM (SELECT course_id FROM student_record WHERE earn_credit = 'Y' AND student_id = 1) AS DERIVED_TABLEalias0, course AS COURSEalias0, course_offering AS COURSE_OFFERINGalias0, semester AS SEMESTERalias0 WHERE COURSEalias0.course_id = COURSE_OFFERINGalias0.course_id AND NOT COURSEalias0.course_id IN (DERIVED_TABLEalias0.course_id) AND NOT COURSEalias0.course_id IN (SELECT DISTINCT COURSE_PREREQUISITEalias0.course_id FROM course_prerequisite AS COURSE_PREREQUISITEalias0 WHERE NOT COURSE_PREREQUISITEalias0.pre_course_id IN (DERIVED_TABLEalias0.course_id)) AND COURSEalias0.department = 'PATH' AND COURSEalias0.number = 585 AND SEMESTERalias0.semester = 'Spring' AND SEMESTERalias0.semester_id = COURSE_OFFERINGalias0.semester AND SEMESTERalias0.year = 2016
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Can I take PATH 585 over the Spring ?It is not neccessary to use all the tables.
|
SELECT AVG Rebounds FROM table WHERE Minutes Played = 113 AND Games Played > 18
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the average Rebounds, when Minutes Played is "113", and when Games Played is greater than "18"?.It is not neccessary to use all the tables.
|
SELECT Theme FROM table WHERE Original artist = carole king AND Week # = hollywood
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the Theme when the Original artist was carole king, and a Week # shows hollywood?.It is not neccessary to use all the tables.
|
SELECT Fuel Type FROM table WHERE mpg-US Extra-Urban > 53.5 AND mpg-US Combined > 50 AND Manufacturer = renault
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which Fuel Type that has a mpg-US Extra-Urban larger than 53.5, and a mpg-US Combined larger than 50 from renault?.It is not neccessary to use all the tables.
|
SELECT main_cast_seasons FROM table_12441518_1 WHERE portrayed_by = "Kevin Jonas"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What seasons does Kevin Jonas appear?It is not neccessary to use all the tables.
|
SELECT COUNT Exited FROM table WHERE Finished = 9th
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many people finished 9th?.It is not neccessary to use all the tables.
|
SELECT COUNT(position) FROM table_2850912_8 WHERE nhl_team = "Detroit Red Wings" AND player = "Urban Nordin"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
how many parts does detroit red wings person urban nordin playIt is not neccessary to use all the tables.
|
SELECT team FROM table_name_48 WHERE competition = "victorian football league"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Tell me the team for victorian football leagueIt is not neccessary to use all the tables.
|
SELECT COUNT(appearances) FROM table_name_25 WHERE team = "chaux-de-fonds" AND place > 8
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the total number of appearances for players from Chaux-de-Fonds with places over 8?It is not neccessary to use all the tables.
|
SELECT To par FROM table WHERE Place = t1 AND Player = jiyai shin
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the to par for Jiyai Shin when the place is t1?.It is not neccessary to use all the tables.
|
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.dod_year <= "2174.0" AND lab.itemid = "51360"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what is the number of patients who died in or before 2174 and have item id 51360?It is not neccessary to use all the tables.
|
SELECT SUM Year FROM table WHERE Position = 12th
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the total year with a Position of 12th?.It is not neccessary to use all the tables.
|
SELECT AVG(year) FROM table_name_47 WHERE result = "nominated"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the average year for result of nominatedIt is not neccessary to use all the tables.
|
SELECT match FROM table_name_66 WHERE competition = "group stage" AND date = "2000-09-17"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which Match has a Competition of Group Stage on 2000-09-17?It is not neccessary to use all the tables.
|
SELECT sequence_identity_to_human_protein FROM table_name_51 WHERE divergence_from_human_lineage__mya_ > 8.8 AND sequence_length__aa_ > 1587 AND protein_name = "soga2"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which sequence identity to human protein has a divergence from human lineage (MYA) larger than 8.8 and a sequence length (aa) larger than 1587 and a protein name of soga2?It is not neccessary to use all the tables.
|
SELECT sample_pk, distst FROM sampledata15
|
CREATE TABLE INST, Here is a database schema( sampledata15);
|
in which state was a specific sample distributed?. It is not neccessary to use all the tables.
|
SELECT origin FROM table_29202276_2 WHERE destination = "Mumbai"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the origin when the destination is Mumbai?It is not neccessary to use all the tables.
|
SELECT player FROM table_name_44 WHERE pick__number > 207
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What player has a pick # greater than 207?It is not neccessary to use all the tables.
|
SELECT Manner of departure FROM table WHERE Replaced by = wolfgang frank
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How did the manager replaced by Wolfgang Frank depart?.It is not neccessary to use all the tables.
|
SELECT MAX Standard order FROM table WHERE English translation = A Lament for Ying
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the place of "A Lament for Ying"?.It is not neccessary to use all the tables.
|
SELECT COUNT(*) FROM prescriptions WHERE prescriptions.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 52898) AND STRFTIME('%y', prescriptions.startdate) = '2105'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
calculate the number of medications that patient 52898 has been prescribed in 2105.It is not neccessary to use all the tables.
|
SELECT CFL Team FROM table WHERE Player = Mark Farraway
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is every CFL team with the player Mark Farraway?.It is not neccessary to use all the tables.
|
SELECT COUNT(popular_votes) FROM table_name_74 WHERE office = "mn attorney general" AND year = 1994
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the total number of popular votes for mn attorney general in 1994It is not neccessary to use all the tables.
|
SELECT Pole Position FROM table WHERE Circuit = Misano World Circuit
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who held the pole position in misano world circuit?.It is not neccessary to use all the tables.
|
SELECT COUNT(party) FROM table_2668378_5 WHERE district = "Kentucky 1"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the number of party for kentucky 1It is not neccessary to use all the tables.
|
SELECT 3 rd FROM table WHERE Season < 4 AND Lost = 61
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the 3rd for season less than 4 and lost of 61.It is not neccessary to use all the tables.
|
SELECT COUNT Zodiac sign FROM table WHERE Thai name = กันยายน
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many zodiac signs does the month by the Thai name of กันยายน belong to?.It is not neccessary to use all the tables.
|
SELECT Avg. Start FROM table WHERE Avg. Finish = 29.0
|
CREATE TABLE INST, Here is a database schema( table schema);
|
With an average finish of 29.0, what was the average start?.It is not neccessary to use all the tables.
|
SELECT SUM(grid) FROM table_name_27 WHERE time_retired = "engine" AND laps < 45 AND driver = "giancarlo baghetti"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the sum of grids with an engine in Time/Retired with less than 45 laps for Giancarlo Baghetti?It is not neccessary to use all the tables.
|
SELECT Country/Territory FROM table WHERE Mr. Gay International = jason keatly
|
CREATE TABLE INST, Here is a database schema( table schema);
|
In what Country/Territory did Jason Keatly win Mr. Gay Internatnional?.It is not neccessary to use all the tables.
|
SELECT "Home team score" FROM table_32339 WHERE "Venue" = 'western oval'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What did the home team score when playing at Western Oval?It is not neccessary to use all the tables.
|
SELECT theme FROM table_26250176_1 WHERE week__number = "Audition"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the theme for Audition week?It is not neccessary to use all the tables.
|
SELECT Release date ( Xbox360 ) FROM table WHERE Artist = Sea Wolf
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the release date xbox 360 for sea wolf.It is not neccessary to use all the tables.
|
SELECT COUNT(yacht) FROM table_14882588_3 WHERE position = 3
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many yachts had a position of 3?It is not neccessary to use all the tables.
|
SELECT penalty FROM table_name_19 WHERE player = "jonathan toews"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the penalty for Jonathan Toews?It is not neccessary to use all the tables.
|
SELECT date FROM table_name_92 WHERE opponent = "diamondbacks" AND score = "2-7"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What day did the Diamondbacks go 2-7?It is not neccessary to use all the tables.
|
SELECT games FROM table_name_91 WHERE drawn < 1 AND lost < 1
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which Games have a Drawn smaller than 1 and a Lost smaller than 1?It is not neccessary to use all the tables.
|
SELECT name FROM table_name_57 WHERE medal = "silver" AND event = "men's doubles"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which participants won the silver medal for the Men's Doubles?It is not neccessary to use all the tables.
|
SELECT date FROM table_name_47 WHERE opponent_in_the_final = "adam thompson"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
When did Adam Thompson play in the final?It is not neccessary to use all the tables.
|
SELECT Team FROM table WHERE Date = January 2
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who did the Trail Blazers play on January 2?.It is not neccessary to use all the tables.
|
SELECT Title FROM table WHERE Directed by = David Duchovny
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What episode was directed by David Duchovny?.It is not neccessary to use all the tables.
|
SELECT nhl_team FROM table_2781227_7 WHERE player = "Ryan Meade"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What NHL team picked Ryan Meade for the draft?It is not neccessary to use all the tables.
|
SELECT version FROM table_name_81 WHERE downstream_rate = "20.0 mbit/s"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What's the version that has a 20.0 mbit/s downstream rate?It is not neccessary to use all the tables.
|
SELECT location FROM table_name_68 WHERE type = "surveying"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What location has surveying as the type?It is not neccessary to use all the tables.
|
SELECT Player FROM table WHERE Year > 2008 AND Position = wide receiver
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which player played wide receiver after 2008?.It is not neccessary to use all the tables.
|
SELECT MIN(stage) FROM table_15088557_1 WHERE winner = "Sergei Smetanine"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the minimum stage where Sergei Smetanine won?It is not neccessary to use all the tables.
|
SELECT h_ci__ka_m_ FROM table_2282444_1 WHERE t_c__°c_ = "720"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
When 720 is the t c (°c) what is the h ci (ka/m)?It is not neccessary to use all the tables.
|
SELECT Country FROM table WHERE Name = spence
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which country has Spence in the name section?.It is not neccessary to use all the tables.
|
SELECT runner_up FROM table_11214772_2 WHERE semi_finalist__number1 = "Embry-Riddle"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
When Embry-Riddle made it to the first semi finalist slot list all the runners up.It is not neccessary to use all the tables.
|
SELECT MIN(attendance) FROM table_name_47 WHERE away = "vida"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the lowest attendance by the game that had an away team of Vida?It is not neccessary to use all the tables.
|
SELECT MIN(crowd) FROM table_name_73 WHERE venue = "princes park"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who was the team with the smallest crowd at the Princes Park venue?It is not neccessary to use all the tables.
|
SELECT Gold Coast FROM table WHERE Auckland = no AND Adelaide = yes AND Melbourne = no
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which Gold Coast has Auckland no, Adelaide yes, and Melbourne no?.It is not neccessary to use all the tables.
|
SELECT MIN(length__aa_) FROM table_26957063_3 WHERE ncbi_accession_number = "CAM15594.1"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the length (AA) of the animal whose NCBI accession number is CAM15594.1?It is not neccessary to use all the tables.
|
SELECT Home team FROM table WHERE Home team score = 8.7 (55)
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who was the home team that scored 8.7 (55)?.It is not neccessary to use all the tables.
|
SELECT COUNT(guest_judge) FROM table_22897967_1 WHERE first_audition_date = "July 9, 2009"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the guest judge for first audition date being july 9 2009It is not neccessary to use all the tables.
|
SELECT Frequency FROM table WHERE Owner = bell media AND Call sign = chsu-fm
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the frequency for the radio owned by bell media with a call sign of chsu-fm?.It is not neccessary to use all the tables.
|
SELECT incumbent FROM table_name_15 WHERE result = "re-elected" AND first_elected > 1884
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What incumbent has a re-elected result and first elected larger than 1884?It is not neccessary to use all the tables.
|
SELECT manufacturer FROM table_name_52 WHERE year_withdrawn = 1927
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who manufactured the vehicle that was withdrawn in 1927?It is not neccessary to use all the tables.
|
SELECT Year FROM table WHERE Notes = 200 m AND Position = 3rd
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What year did Naoki Tsukahara finish 3rd in the 200 m race?.It is not neccessary to use all the tables.
|
SELECT result FROM table_name_75 WHERE score = "8-1"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the result when the score is 8-1?It is not neccessary to use all the tables.
|
SELECT Home team FROM table WHERE Venue = junction oval
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What team is based at junction oval?.It is not neccessary to use all the tables.
|
SELECT Division Southwest FROM table WHERE Division North = lepenec AND Division South = 11 oktomvri
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who won Division Southwest when the winner of Division North was Lepenec and Division South was won by 11 Oktomvri?.It is not neccessary to use all the tables.
|
SELECT stage FROM table_name_19 WHERE rally_leader = "c. atkinson"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the Stage when the Rally leader is C. Atkinson?It is not neccessary to use all the tables.
|
SELECT Economics FROM table WHERE Education = 92.0
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what's the economics score with education being 92.0.It is not neccessary to use all the tables.
|
SELECT COUNT Languages FROM table WHERE Film title used in nomination = Elles
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many languages have elles as the film title used in nomination?.It is not neccessary to use all the tables.
|
SELECT tie_no FROM table_name_92 WHERE date = "watford"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What tie no has Watford as the date?It is not neccessary to use all the tables.
|
SELECT school FROM table_14115168_4 WHERE national_titles = 14
|
CREATE TABLE INST, Here is a database schema( table schema);
|
which school has 14 large championshipsIt is not neccessary to use all the tables.
|
SELECT Issue Price (BU)[ clarification needed ] FROM table WHERE Year > 2002 AND Mintage (Proof) = 50,000
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What's the Issue Price (BU) [Clarification Needed] with a Year larger than 2002 and Mintage (Proof) of 50,000?.It is not neccessary to use all the tables.
|
SELECT country FROM table_name_19 WHERE language = "french" AND director = "jean-luc godard"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What country is the film directed by Jean-Luc Godard in French from?It is not neccessary to use all the tables.
|
SELECT pi_code FROM table_name_54 WHERE area = "hindhead"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the PI code in the hindhead area?It is not neccessary to use all the tables.
|
SELECT DISTINCT Product_Name FROM PRODUCTS WHERE Product_Price > (SELECT AVG(Product_Price) FROM PRODUCTS)
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Show all the distinct product names with price higher than the average.It is not neccessary to use all the tables.
|
SELECT AVG(game) FROM table_name_7 WHERE high_points = "wilson chandler (16)"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which average Game has a High points of wilson chandler (16)?It is not neccessary to use all the tables.
|
SELECT tries_against FROM table_name_22 WHERE points_for = "98"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is Tries Against when Points For is 98?It is not neccessary to use all the tables.
|
SELECT "Country" FROM table_51118 WHERE "Score" = '70-71-72=213'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which country has a score of 70-71-72=213?It is not neccessary to use all the tables.
|
SELECT High rebounds FROM table WHERE Record = 17-33
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the high rebounds for 17-33.It is not neccessary to use all the tables.
|
SELECT Home team FROM table WHERE Date = 31 january 1951 AND Away team = sheffield united
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who is the home team on 31 January 1951 when away team was Sheffield United?.It is not neccessary to use all the tables.
|
SELECT COUNT Duration FROM table WHERE Original title = " One Man's Junk "
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the total length when the title is " one man's junk ".It is not neccessary to use all the tables.
|
SELECT years FROM table_name_31 WHERE nationality = "spain" AND goals = 215
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the years for spain with 215 goalsIt is not neccessary to use all the tables.
|
SELECT Id, Id AS "post_link" FROM Posts WHERE OwnerUserId = '##UserId##' AND PostTypeId = 1 AND Score > 0 AND DeletionDate IS NULL AND ClosedDate IS NULL ORDER BY Id DESC
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Show post to Socratic badge. shows all posts that are meet the Socratic badge requirements.It is not neccessary to use all the tables.
|
SELECT p.Title, p.Id, u.DisplayName, u.Reputation FROM Posts AS p JOIN Users AS u ON p.OwnerUserId = u.Id WHERE p.CreationDate BETWEEN '##StartDate:string##' AND '##EndDate:string##' AND p.PostTypeId = 1 AND u.Reputation < '##MaxReputation:int##'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Limiting Posts by Date and Rep, Parameterized (Tutorial).It is not neccessary to use all the tables.
|
SELECT t3.characteristic_name FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id GROUP BY t3.characteristic_name HAVING COUNT(*) >= 2
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What are characteristic names used at least twice across all products?It is not neccessary to use all the tables.
|
SELECT "Crowd" FROM table_52815 WHERE "Home team" = 'essendon'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How big of a crowd does the home team of essendon have?It is not neccessary to use all the tables.
|
SELECT "venue" FROM table_204_202 ORDER BY id DESC LIMIT 1
|
CREATE TABLE INST, Here is a database schema( table schema);
|
where was the last meeting in which kaseorg competed ?It is not neccessary to use all the tables.
|
SELECT Torque FROM table WHERE Year = 1996
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What are the torque characteristics of the model made in 1996?.It is not neccessary to use all the tables.
|
SELECT MAX(enrollment) FROM table_28243691_1 WHERE institution = "University of North Texas"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the highest number of students in attendance for the university of north texas?It is not neccessary to use all the tables.
|
SELECT COUNT(jerseys) FROM table_name_78 WHERE young_rider > 0 AND country = "france" AND points < 1
|
CREATE TABLE INST, Here is a database schema( table schema);
|
how many times is young rider more than 0 country is france and points less than 1?It is not neccessary to use all the tables.
|
SELECT written_by FROM table_26136228_3 WHERE us_viewers__millions_ = "1.08"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who wrote the episode that had 1.08 million U.S. viewers?It is not neccessary to use all the tables.
|
SELECT week_14_dec_3 FROM table_name_17 WHERE week_11_nov_12 = "michigan (7-2)"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What happened in week 14 when week 11's result was Michigan (7-2)?It is not neccessary to use all the tables.
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.