sql
stringlengths 9
2.37k
| table
stringclasses 9
values | query
stringlengths 51
503
|
---|---|---|
SELECT SUM(money___) AS $__ FROM table_name_93 WHERE to_par = 15 | CREATE TABLE INST, Here is a database schema( table schema); | How much money was there when the to par was 15?It is not neccessary to use all the tables. |
SELECT SUM(prominence__m_) FROM table_name_69 WHERE elevation__m_ = 2 OFFSET 024 | CREATE TABLE INST, Here is a database schema( table schema); | COunt the sum of Prominence (m) of an Elevation (m) of 2024?It is not neccessary to use all the tables. |
SELECT Series Ep. FROM table WHERE Netflix = s04e21 | CREATE TABLE INST, Here is a database schema( table schema); | Which series episode has a netflix figure of s04e21?.It is not neccessary to use all the tables. |
SELECT MIN(week) FROM table_name_25 WHERE record = "0–8" | CREATE TABLE INST, Here is a database schema( table schema); | Record of 0–8 had what lowest week?It is not neccessary to use all the tables. |
SELECT Opponent FROM table WHERE Week < 11 AND Attendance = 63,571 | CREATE TABLE INST, Here is a database schema( table schema); | What was the Opponent before Week 11 with an Attendance of 63,571?.It is not neccessary to use all the tables. |
SELECT SUM(ties) FROM table_name_40 WHERE goals_for = 25 AND wins > 5 | CREATE TABLE INST, Here is a database schema( table schema); | How many ties do teams with 25 Goals For and more than 5 wins have?It is not neccessary to use all the tables. |
SELECT Date FROM table WHERE Points = 37 | CREATE TABLE INST, Here is a database schema( table schema); | What date has 37 points?.It is not neccessary to use all the tables. |
SELECT COUNT Year FROM table WHERE Country = Belgium | CREATE TABLE INST, Here is a database schema( table schema); | How many years was the country Belgium?.It is not neccessary to use all the tables. |
SELECT Shareholder FROM table WHERE Percent of capital = 3.63 | CREATE TABLE INST, Here is a database schema( table schema); | What shareholder has 3.63 percent of capital? .It is not neccessary to use all the tables. |
SELECT Games FROM table WHERE Marks = 21 | CREATE TABLE INST, Here is a database schema( table schema); | Name the games with marks of 21.It is not neccessary to use all the tables. |
SELECT MIN(fa_trophy) FROM table_name_8 WHERE club = "forest green rovers" AND play_offs > 0 | CREATE TABLE INST, Here is a database schema( table schema); | Which of the lowest FA Trophys involved the Forest Green Rovers club when the play-offs number was bigger than 0?It is not neccessary to use all the tables. |
SELECT MAX Rank FROM table WHERE Opposition = westmeath | CREATE TABLE INST, Here is a database schema( table schema); | What is the highest ranked player who opposed Westmeath?.It is not neccessary to use all the tables. |
SELECT document_id, document_name, document_description FROM Documents | CREATE TABLE INST, Here is a database schema( table schema); | List document IDs document names and document descriptions for all documents.It is not neccessary to use all the tables. |
SELECT population__1980_ FROM table_11656578_2 WHERE capital = "Siedlce" | CREATE TABLE INST, Here is a database schema( table schema); | How many people lived in the voivodenship whose capital is Siedlce in the year of 1980?It is not neccessary to use all the tables. |
SELECT "Alt. Name" FROM table_22838 WHERE "Notes" = 'Mission failed. Guidance system failed. No orbit.' | CREATE TABLE INST, Here is a database schema( table schema); | What are the alternative names of those satellites where the notes are: mission failed. guidance system failed. no orbit.It is not neccessary to use all the tables. |
SELECT agg FROM table_name_63 WHERE team_1 = "cd elá nguema" | CREATE TABLE INST, Here is a database schema( table schema); | What is Agg. when Team 1 is CD Elá Nguema?It is not neccessary to use all the tables. |
SELECT class_aA FROM table_name_52 WHERE class_a = "rule" AND school_year = "1995-96" | CREATE TABLE INST, Here is a database schema( table schema); | Name the class AA with class A of rule and school year of 1995-96It is not neccessary to use all the tables. |
SELECT highest FROM table_11208143_9 WHERE average = 4752 | CREATE TABLE INST, Here is a database schema( table schema); | What are the highest recorded attendance rates of the stadiums with an average attendance of 4752?It is not neccessary to use all the tables. |
SELECT Subregion FROM table WHERE No P. = 4 AND Pop/Area (1/km²) = 534 | CREATE TABLE INST, Here is a database schema( table schema); | Which Subregion has a No P. of 4, and a Pop/Area (1/km²) of 534?.It is not neccessary to use all the tables. |
SELECT airport FROM table_name_64 WHERE city = "oslo" | CREATE TABLE INST, Here is a database schema( table schema); | What is the Airport in Oslo?It is not neccessary to use all the tables. |
SELECT home_team AS score FROM table_name_76 WHERE venue = "princes park" | CREATE TABLE INST, Here is a database schema( table schema); | What was the home teams score when the VFL played Princes Park?It is not neccessary to use all the tables. |
SELECT Venue FROM table WHERE Home team score = 13.9 (87) | CREATE TABLE INST, Here is a database schema( table schema); | What was the venue where the home team scored 13.9 (87)?.It is not neccessary to use all the tables. |
SELECT no_in_season FROM table_2156758_4 WHERE written_by = "Chris Mitchell and Erik Wiese" | CREATE TABLE INST, Here is a database schema( table schema); | What is the number in season for the episode written by Chris Mitchell and Erik Wiese?It is not neccessary to use all the tables. |
SELECT monounsaturated_fat FROM table_name_22 WHERE saturated_fat = "15g" | CREATE TABLE INST, Here is a database schema( table schema); | What is the monounsaturated fat with 15g of saturated fat?It is not neccessary to use all the tables. |
SELECT date FROM table_name_48 WHERE satellite = "gps iif-7" | CREATE TABLE INST, Here is a database schema( table schema); | What is the date of the gps iif-7 satellite?It is not neccessary to use all the tables. |
SELECT DISTINCT course.name, course.number, program_course.workload FROM course, program_course WHERE course.department = 'EECS' AND program_course.course_id = course.course_id AND program_course.workload = (SELECT MAX(PROGRAM_COURSEalias1.workload) FROM course AS COURSEalias1, program_course AS PROGRAM_COURSEalias1 WHERE COURSEalias1.course_id = PROGRAM_COURSEalias1.course_id AND COURSEalias1.department = 'EECS') | CREATE TABLE INST, Here is a database schema( table schema); | The hardest class would be what ?It is not neccessary to use all the tables. |
SELECT T1.booking_start_date, T1.booking_start_date FROM Apartment_Bookings AS T1 JOIN Guests AS T2 ON T1.guest_id = T2.guest_id WHERE T2.gender_code = "Female" | CREATE TABLE INST, Here is a database schema( table schema); | Show the start dates and end dates of all the apartment bookings made by guests with gender code "Female".It is not neccessary to use all the tables. |
SELECT COUNT("W") FROM table_31196 WHERE "Skip (Club)" = 'Nicole Backe (Nanaimo Curling Club)' | CREATE TABLE INST, Here is a database schema( table schema); | When nicole backe (nanaimo curling club) is the skip (club) how many sets of w's are there?It is not neccessary to use all the tables. |
SELECT Type, COUNT(Type) FROM ship GROUP BY Type | CREATE TABLE INST, Here is a database schema( table schema); | What is the total number of each ship type? Give me a pie chart.It is not neccessary to use all the tables. |
SELECT SUM Attendance FROM table WHERE Date = october 16 AND Game > 5 | CREATE TABLE INST, Here is a database schema( table schema); | what is the attendance on the date of october 16 and the game is more than 5?.It is not neccessary to use all the tables. |
SELECT Adelaide FROM table WHERE Sydney = yes AND Perth = yes | CREATE TABLE INST, Here is a database schema( table schema); | Name the Adelaide for Sydney of yes and Perth of yes.It is not neccessary to use all the tables. |
SELECT 1st leg FROM table WHERE Team #1 = hapoel jerusalem | CREATE TABLE INST, Here is a database schema( table schema); | What is the 1st leg that has hapoel jerusalem?.It is not neccessary to use all the tables. |
SELECT team AS captain FROM table_name_11 WHERE team = "tus koblenz" | CREATE TABLE INST, Here is a database schema( table schema); | Who was the team captain of tus koblenz?It is not neccessary to use all the tables. |
SELECT "total" FROM table_203_308 WHERE "athlete" = 'shaun white' | CREATE TABLE INST, Here is a database schema( table schema); | what is the total number of snowboarding medals won by shaun white ?It is not neccessary to use all the tables. |
SELECT high_rebounds FROM table_27723228_8 WHERE record = "14–7" | CREATE TABLE INST, Here is a database schema( table schema); | Who had the high rebounds when the record was 14 7?It is not neccessary to use all the tables. |
SELECT Airport FROM table WHERE Code (IATA) = ams | CREATE TABLE INST, Here is a database schema( table schema); | Which airport has an IATA code of AMS?.It is not neccessary to use all the tables. |
SELECT player FROM table_name_11 WHERE pba_team = "barangay ginebra kings" | CREATE TABLE INST, Here is a database schema( table schema); | Who is the player with the PBA team of Barangay Ginebra Kings?It is not neccessary to use all the tables. |
SELECT COUNT(laps) FROM table_name_69 WHERE start = "12" | CREATE TABLE INST, Here is a database schema( table schema); | How many laps were there when the start was 12?It is not neccessary to use all the tables. |
SELECT Year FROM table WHERE Result = nominated AND Category = outstanding actor in a musical | CREATE TABLE INST, Here is a database schema( table schema); | Which Year has a nominated outstanding actor in a musical?.It is not neccessary to use all the tables. |
SELECT opponent FROM table_name_23 WHERE date = "june 6" | CREATE TABLE INST, Here is a database schema( table schema); | Who is the opponent on June 6?It is not neccessary to use all the tables. |
SELECT Release Date FROM table WHERE Time = 2:50 AND Recorded = 10/29/76 | CREATE TABLE INST, Here is a database schema( table schema); | Tell me the release date record on 10/29/76 and a time on 2:50.It is not neccessary to use all the tables. |
SELECT City FROM table WHERE Completion = 1910-1978 | CREATE TABLE INST, Here is a database schema( table schema); | What city was completed in 1910-1978?.It is not neccessary to use all the tables. |
SELECT "Wins" FROM table_60656 WHERE "Pct." = '.848' | CREATE TABLE INST, Here is a database schema( table schema); | How many wins when the pct, is .848?It is not neccessary to use all the tables. |
SELECT MAX(spartak) FROM table_name_42 WHERE played < 15 AND dynamo < 3 | CREATE TABLE INST, Here is a database schema( table schema); | what is the highest spartak when played is less than 15 and dynamo is less than 3?It is not neccessary to use all the tables. |
SELECT record FROM table_name_1 WHERE date = "march 30" | CREATE TABLE INST, Here is a database schema( table schema); | What record has march 30 as the date?It is not neccessary to use all the tables. |
SELECT T1.fname, T1.age FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'dog' AND NOT T1.stuid IN (SELECT T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat') | CREATE TABLE INST, Here is a database schema( table schema); | Find the first name and age of students who have a dog but do not have a cat as a pet.It is not neccessary to use all the tables. |
SELECT operator FROM table_18333678_2 WHERE arrival = "13.39" | CREATE TABLE INST, Here is a database schema( table schema); | what is the operator of trains arriving at 13.39It is not neccessary to use all the tables. |
SELECT admissions.dischtime FROM admissions WHERE admissions.subject_id = 13622 AND DATETIME(admissions.dischtime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-1 year') ORDER BY admissions.dischtime LIMIT 1 | CREATE TABLE INST, Here is a database schema( table schema); | when patient 13622 has left the hospital the first time the last year?It is not neccessary to use all the tables. |
SELECT round FROM table_name_39 WHERE opponent = "cedric marks" | CREATE TABLE INST, Here is a database schema( table schema); | What round was the game against Cedric Marks?It is not neccessary to use all the tables. |
SELECT nationality FROM table_2897457_7 WHERE pick__number = 136 | CREATE TABLE INST, Here is a database schema( table schema); | Which country is pick# 136 from?It is not neccessary to use all the tables. |
SELECT Country FROM table WHERE Director(s) = jonas geirnaert | CREATE TABLE INST, Here is a database schema( table schema); | What country did Jonas Geirnaert direct a film in?.It is not neccessary to use all the tables. |
SELECT score FROM table_name_29 WHERE surface = "hard" AND opponent_in_the_final = "yi jingqian" | CREATE TABLE INST, Here is a database schema( table schema); | When playing against Yi Jingqian in the final on a hard surface what was the score?It is not neccessary to use all the tables. |
SELECT Classification FROM table WHERE Current Conference = nec AND Location = new britain, connecticut | CREATE TABLE INST, Here is a database schema( table schema); | What is the classification for the school in the NEC Conference located in New Britain, Connecticut?.It is not neccessary to use all the tables. |
SELECT laps FROM table_name_51 WHERE rank = "14" | CREATE TABLE INST, Here is a database schema( table schema); | How many laps did Dick Rathmann complete when he ranked 14?It is not neccessary to use all the tables. |
SELECT Size (MW) FROM table WHERE Turbines > 19 AND Turbine Vendor = enercon AND County = wexford | CREATE TABLE INST, Here is a database schema( table schema); | What is the size of the windfarm in wexford that has more than 19 turbines and a vendor of Enercon?.It is not neccessary to use all the tables. |
SELECT COUNT End of term FROM table WHERE Age at inauguration = 64-066 64years, 66days | CREATE TABLE INST, Here is a database schema( table schema); | how many end of term with age at inauguration being 64-066 64years, 66days.It is not neccessary to use all the tables. |
SELECT rules FROM table_name_2 WHERE event = "n/a" AND result = "loss" AND location = "winsford england" | CREATE TABLE INST, Here is a database schema( table schema); | Which rule has The Event of n/a, The Result of loss, and The Location of winsford england?It is not neccessary to use all the tables. |
SELECT diagnoses.short_title, procedures.long_title FROM diagnoses INNER JOIN procedures ON diagnoses.hadm_id = procedures.hadm_id WHERE diagnoses.subject_id = "11221" | CREATE TABLE INST, Here is a database schema( table schema); | find out the short title of diagnoses and long title of diagnoses for patient with patient id 11221.It is not neccessary to use all the tables. |
SELECT Date FROM table WHERE UCI Rating = 1.1 AND Race Name = omloop van de vlaamse scheldeboorden | CREATE TABLE INST, Here is a database schema( table schema); | What is the date of the omloop van de vlaamse scheldeboorden race with a UCI rating of 1.1?.It is not neccessary to use all the tables. |
SELECT Cover model FROM table WHERE Date = 7-86 | CREATE TABLE INST, Here is a database schema( table schema); | Who was the cover model in the 7-86 issue?.It is not neccessary to use all the tables. |
SELECT Tournament FROM table WHERE Champion = Nick Saviano Florin Segărceanu 6–3, 6–4 | CREATE TABLE INST, Here is a database schema( table schema); | which tournament was the champion nick saviano florin segărceanu 6–3, 6–4?.It is not neccessary to use all the tables. |
SELECT Date of birth FROM table WHERE Begin Date = april 24, 1902 | CREATE TABLE INST, Here is a database schema( table schema); | What was the date of birth of the member of the United States House of Representatives that began their term on April 24, 1902?.It is not neccessary to use all the tables. |
SELECT COUNT CFL Team FROM table WHERE College = Waterloo | CREATE TABLE INST, Here is a database schema( table schema); | what is the cfl team where college is waterloo?.It is not neccessary to use all the tables. |
SELECT Competition FROM table WHERE Year < 1982 AND Score = 2:3 | CREATE TABLE INST, Here is a database schema( table schema); | Which competition before 1982 had a score of 2:3?.It is not neccessary to use all the tables. |
SELECT opponent FROM table_name_42 WHERE date = "march 16" | CREATE TABLE INST, Here is a database schema( table schema); | Which Opponent has a Date of march 16?It is not neccessary to use all the tables. |
SELECT Replica FROM table WHERE Position = 5th | CREATE TABLE INST, Here is a database schema( table schema); | What replica has the 5th position?.It is not neccessary to use all the tables. |
SELECT (SELECT (100.0 * COUNT(*) / @totalPosts) AS PercentPostsEditedSeveralTimes FROM (SELECT COUNT(*) AS NumRevisions FROM PostHistory GROUP BY PostId) AS Revisions WHERE Revisions.NumRevisions > 1) AS PostsEditedSeveralTimes, (SELECT 100.0 * COUNT(*) / @totalPosts AS PercentPostsEditedBySeveralUsers FROM (SELECT COUNT(DISTINCT UserId) AS NumUsers FROM PostHistory GROUP BY PostId) AS Revisions WHERE Revisions.NumUsers > 1) AS PostsEditedBySeveralUsers, (SELECT 100.0 * COUNT(DISTINCT (PostId)) / @totalPosts FROM SuggestedEdits WHERE NOT ApprovalDate IS NULL) AS PercentPostsWithAcceptedSuggestedEdits | CREATE TABLE INST, Here is a database schema( table schema); | Number of Posts edited by > 1 user.It is not neccessary to use all the tables. |
SELECT MIN Total Pts FROM table WHERE 2001–02 Pts < 38 | CREATE TABLE INST, Here is a database schema( table schema); | Which Total Pts have a 2001–02 Pts smaller than 38?.It is not neccessary to use all the tables. |
SELECT To par FROM table WHERE Player = payne stewart | CREATE TABLE INST, Here is a database schema( table schema); | Name the To par of payne stewart?.It is not neccessary to use all the tables. |
SELECT COUNT(points_2) FROM table_17358515_1 WHERE team = "Goole Town" | CREATE TABLE INST, Here is a database schema( table schema); | How many points did Goole Town accumulate?It is not neccessary to use all the tables. |
SELECT AVG(year) FROM table_name_22 WHERE tournament = "world cross country championships" AND venue = "st etienne, france" AND extra = "team competition" AND result = "8th" | CREATE TABLE INST, Here is a database schema( table schema); | What is the average year that anna thompson had an 8th place result in team competition at the world cross country championships in st etienne france withIt is not neccessary to use all the tables. |
SELECT Screen size,pixels FROM table WHERE Dimensions W×H×D (mm) = 115.5×83.7×102.5 | CREATE TABLE INST, Here is a database schema( table schema); | What is the screen size and pixel value when the dimensions are 115.5×83.7×102.5?.It is not neccessary to use all the tables. |
SELECT structure_height_[m] FROM table_name_93 WHERE year < 1968 AND type = "te" AND country = "united states" AND name = "fort peck dam" | CREATE TABLE INST, Here is a database schema( table schema); | What is the height of the fort peck dam which was built before 1968 is located in the united states and has a dam type of TE ?It is not neccessary to use all the tables. |
SELECT percentage_of_land_area FROM table_15555661_2 WHERE percentage_protected = "7.96" | CREATE TABLE INST, Here is a database schema( table schema); | What is the percentage of land area in the ecozone that the percentage protected is 7.96?It is not neccessary to use all the tables. |
SELECT SUM Legs Won FROM table WHERE 100+ < 84 AND Legs Lost < 14 AND Played < 3 | CREATE TABLE INST, Here is a database schema( table schema); | How many legs were won by the player who had less than 84 100+, less than 14 legs lost, and less than 3 played?.It is not neccessary to use all the tables. |
SELECT Player FROM table WHERE Money ( £ ) = playoff AND Country = united states | CREATE TABLE INST, Here is a database schema( table schema); | Who is the player with playoff money from the United States?.It is not neccessary to use all the tables. |
SELECT race FROM table_name_96 WHERE nation = "kenya" AND time = "30:27" | CREATE TABLE INST, Here is a database schema( table schema); | What is the name of the race in Kenya with a time of 30:27?It is not neccessary to use all the tables. |
SELECT "Athlete" FROM table_75736 WHERE "Rank" > '15' AND "Result" < '7.68' AND "Group" = 'b' AND "Nationality" = 'great britain' | CREATE TABLE INST, Here is a database schema( table schema); | Which athlete's rank is more than 15 when the result is less than 7.68, the group is b, and the nationality listed is Great Britain?It is not neccessary to use all the tables. |
SELECT date FROM table_name_53 WHERE venue = "a" AND attendance = "4,365" | CREATE TABLE INST, Here is a database schema( table schema); | When Venue of A has Attendance of 4365?It is not neccessary to use all the tables. |
SELECT tonnage FROM table_name_19 WHERE date = "14" | CREATE TABLE INST, Here is a database schema( table schema); | With 14 under the date what is the tonnage of the ship?It is not neccessary to use all the tables. |
SELECT home FROM table_name_35 WHERE visitor = "warriors" | CREATE TABLE INST, Here is a database schema( table schema); | What is the home team of the game with Warriors as the visitor team?It is not neccessary to use all the tables. |
SELECT name FROM table_name_90 WHERE total = 34 | CREATE TABLE INST, Here is a database schema( table schema); | Who had a total of 34?It is not neccessary to use all the tables. |
SELECT COUNT(incumbent) FROM table_1342331_5 WHERE first_elected = 1932 | CREATE TABLE INST, Here is a database schema( table schema); | how many incumbent with first elected being 1932It is not neccessary to use all the tables. |
SELECT Attendance FROM table WHERE Opponent = los angeles raiders | CREATE TABLE INST, Here is a database schema( table schema); | What was the Attendance of the game against the Los Angeles Raiders?.It is not neccessary to use all the tables. |
SELECT AVG Year FROM table WHERE Date = december 26 | CREATE TABLE INST, Here is a database schema( table schema); | What is the average year of the games with the date December 26?.It is not neccessary to use all the tables. |
SELECT Match FROM table WHERE Team = skra warszawa | CREATE TABLE INST, Here is a database schema( table schema); | What is the Match for skra warszawa?.It is not neccessary to use all the tables. |
SELECT player FROM table_22824312_1 WHERE weight = 170 | CREATE TABLE INST, Here is a database schema( table schema); | Who are the player's who weighed 170?It is not neccessary to use all the tables. |
SELECT team FROM table_name_37 WHERE losses < 2 AND pos > 1 | CREATE TABLE INST, Here is a database schema( table schema); | Which team had fewer than 2 losses and a position number more than 1?It is not neccessary to use all the tables. |
SELECT date FROM table_name_48 WHERE week < 13 AND opponent = "miami dolphins" | CREATE TABLE INST, Here is a database schema( table schema); | What is the date before week 13 and Miami Dolphins as an opponent?It is not neccessary to use all the tables. |
SELECT title FROM table_12451376_3 WHERE season_3_ep__number = 12 | CREATE TABLE INST, Here is a database schema( table schema); | What is the title of season 3 ep# 12?It is not neccessary to use all the tables. |
SELECT Result FROM table WHERE Season coach = rich rodriguez | CREATE TABLE INST, Here is a database schema( table schema); | What is the result under the season coach Rich Rodriguez?.It is not neccessary to use all the tables. |
SELECT inf_stem FROM table_name_13 WHERE subj_pres = "a" AND plur_pret = "uo" | CREATE TABLE INST, Here is a database schema( table schema); | What is the infinitive stem that is associated with a subjunctive present of a and a plural preterite of uo?It is not neccessary to use all the tables. |
SELECT Last Performance FROM table WHERE Name = j.p. viernes | CREATE TABLE INST, Here is a database schema( table schema); | When was J.P. Viernes' last performance?.It is not neccessary to use all the tables. |
SELECT year FROM table_name_64 WHERE country = "united states" AND dates = "aug 3–5" | CREATE TABLE INST, Here is a database schema( table schema); | What Year was the United States the country for aug 3–5?It is not neccessary to use all the tables. |
SELECT Gender FROM table WHERE Species = Holland Lop | CREATE TABLE INST, Here is a database schema( table schema); | whatis the gender wher ethe species is holland lop?.It is not neccessary to use all the tables. |
SELECT name FROM program ORDER BY launch DESC LIMIT 1 | CREATE TABLE INST, Here is a database schema( table schema); | find the name of the program that was launched most recently.It is not neccessary to use all the tables. |
SELECT COUNT(year_named) FROM table_16799784_9 WHERE longitude = "20.0E" | CREATE TABLE INST, Here is a database schema( table schema); | How many years have a longitude measure of 20.0e?It is not neccessary to use all the tables. |
SELECT haydon FROM table_name_68 WHERE ben_tahir = "33" | CREATE TABLE INST, Here is a database schema( table schema); | What Haydon had a 33 Ben-Tahir?It is not neccessary to use all the tables. |
SELECT 1998 FROM table_name_14 WHERE 2007 = "3r" | CREATE TABLE INST, Here is a database schema( table schema); | Which 1998 tournament had a performance of 3R in 2007?It is not neccessary to use all the tables. |
SELECT class FROM table_1745843_5 WHERE part_2 = "laug" | CREATE TABLE INST, Here is a database schema( table schema); | What is the class of the word who's second participle is laug?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.