sql stringlengths 9 2.37k | table stringclasses 9
values | query stringlengths 51 503 |
|---|---|---|
SELECT studio FROM film EXCEPT SELECT studio FROM film WHERE director = "Walter Hill" | CREATE TABLE INST, Here is a database schema( table schema); | Show the studios that have not produced films with director 'Walter Hill'.It is not neccessary to use all the tables. |
SELECT name FROM table_name_9 WHERE function = "explorator" | CREATE TABLE INST, Here is a database schema( table schema); | Who had a function of explorator?It is not neccessary to use all the tables. |
SELECT COUNT(*) > 0 FROM course AS COURSE_0, course AS COURSE_1, course_prerequisite WHERE COURSE_0.course_id = course_prerequisite.pre_course_id AND COURSE_0.department = 'THTREMUS' AND COURSE_0.number = 250 AND COURSE_1.course_id = course_prerequisite.course_id AND COURSE_1.department = 'THTREMUS' AND COURSE_1.number... | CREATE TABLE INST, Here is a database schema( table schema); | Does THTREMUS 370 require THTREMUS 250 as a prerequisite ?It is not neccessary to use all the tables. |
SELECT Races FROM table WHERE Position = 4th AND Podiums = 7 | CREATE TABLE INST, Here is a database schema( table schema); | What is the number of races associated with 7 podiums and a position of 4th?.It is not neccessary to use all the tables. |
SELECT location_attendance FROM table_27755603_2 WHERE high_assists = "Will Bynum (5)" | CREATE TABLE INST, Here is a database schema( table schema); | Where was the game in which Will Bynum (5) did the high assists played?It is not neccessary to use all the tables. |
SELECT COUNT(winnings) FROM table_1875157_1 WHERE starts = 32 | CREATE TABLE INST, Here is a database schema( table schema); | Did this driver have any winnings the season he had 32 startsIt is not neccessary to use all the tables. |
SELECT Location FROM table WHERE Aircraft = an-12b | CREATE TABLE INST, Here is a database schema( table schema); | What is the location for the an-12b aircraft?.It is not neccessary to use all the tables. |
SELECT AVG(grid) FROM table_name_38 WHERE time_retired = "+1 lap" AND driver = "johnny herbert" | CREATE TABLE INST, Here is a database schema( table schema); | What is the average grid for johnny herbert with a Time/Retired of +1 lap?It is not neccessary to use all the tables. |
SELECT date FROM table_name_25 WHERE time = "1:54.00" | CREATE TABLE INST, Here is a database schema( table schema); | What is the date of the event with a 1:54.00 time?It is not neccessary to use all the tables. |
SELECT Week FROM table WHERE Date = october 28, 2001 | CREATE TABLE INST, Here is a database schema( table schema); | October 28, 2001 was what week of the season?.It is not neccessary to use all the tables. |
SELECT Date FROM table WHERE Record = 2–1 | CREATE TABLE INST, Here is a database schema( table schema); | On what date was the record 2–1?.It is not neccessary to use all the tables. |
SELECT MAX(_number) FROM table_12407546_1 WHERE riding = "68.46 (1144 pts)" | CREATE TABLE INST, Here is a database schema( table schema); | What's the number of the player with 68.46 (1144 pts) in riding?It is not neccessary to use all the tables. |
SELECT nation FROM table_name_60 WHERE athlete = "bianca knight" | CREATE TABLE INST, Here is a database schema( table schema); | what nation is bianca knight the answer for?It is not neccessary to use all the tables. |
SELECT Record FROM table WHERE High points = Jameer Nelson (19) | CREATE TABLE INST, Here is a database schema( table schema); | What is the record when jameer nelson (19) had the high points?.It is not neccessary to use all the tables. |
SELECT Date FROM table WHERE Opponent = naomi cavaday | CREATE TABLE INST, Here is a database schema( table schema); | When was naomi cavaday the opponent?.It is not neccessary to use all the tables. |
SELECT Player FROM table WHERE No. = 53 | CREATE TABLE INST, Here is a database schema( table schema); | Which player is no. 53?.It is not neccessary to use all the tables. |
SELECT Series # FROM table WHERE Title = "St. Joan" | CREATE TABLE INST, Here is a database schema( table schema); | What is the episode series number of "St. Joan"?.It is not neccessary to use all the tables. |
SELECT date_of_birth__age_ FROM table_name_71 WHERE club_province = "wild knights" AND player = "tomokazu soma" | CREATE TABLE INST, Here is a database schema( table schema); | When was Tomokazu Soma born who plays for the wild knights?It is not neccessary to use all the tables. |
SELECT _percentage_2006 FROM table_name_12 WHERE seats_2001 < 23 AND seats_2006 > 4 AND _percentage_2001 = 25.4 | CREATE TABLE INST, Here is a database schema( table schema); | What is the %2006 that has fewer seats than 23 in Seats 2001 more seats than 4 in 2006 Seats and a % in 2001 of 25.4?It is not neccessary to use all the tables. |
SELECT MIN Finish FROM table WHERE Start > 27 AND Year > 1985 | CREATE TABLE INST, Here is a database schema( table schema); | What is the lowest finish that has a start greater than 27, with a year after 1985?.It is not neccessary to use all the tables. |
SELECT MAX FA Cup FROM table WHERE Malaysia Cup = 0 AND Player = ahmad fouzee masuri AND Total > 0 | CREATE TABLE INST, Here is a database schema( table schema); | Which FA Cup is the highest one that has a Malaysia Cup of 0, and a Player of ahmad fouzee masuri, and a Total larger than 0?.It is not neccessary to use all the tables. |
SELECT score FROM table_name_60 WHERE place = "t1" AND player = "tim herron" | CREATE TABLE INST, Here is a database schema( table schema); | What is the score of Tim Herron who placed t1?It is not neccessary to use all the tables. |
SELECT original_air_date FROM table_23114705_3 WHERE written_by = "Tim Balme" | CREATE TABLE INST, Here is a database schema( table schema); | If the episode was written by Tim Balme what was the original air date?It is not neccessary to use all the tables. |
SELECT MIN Rank FROM table WHERE Bronze = 2 AND Gold > 0 AND Nation = ynys môn/anglesey AND Total > 8 | CREATE TABLE INST, Here is a database schema( table schema); | Name the least rank with bronze of 2, gold more than 0 and nation of ynys môn/anglesey with total more than 8.It is not neccessary to use all the tables. |
SELECT method FROM table_name_2 WHERE opponent = "rafael cavalcante" | CREATE TABLE INST, Here is a database schema( table schema); | Which method was used when Rafael Cavalcante was the opponent?It is not neccessary to use all the tables. |
SELECT segment_d FROM table_15187735_3 WHERE segment_c = "Chicken" | CREATE TABLE INST, Here is a database schema( table schema); | Name the segment d for chickenIt is not neccessary to use all the tables. |
SELECT Record FROM table WHERE Home = st. louis | CREATE TABLE INST, Here is a database schema( table schema); | What is the record of the team with a St. Louis home?.It is not neccessary to use all the tables. |
SELECT earpads FROM table_name_88 WHERE headphone_class = "reference" AND us_msrp = "$695" | CREATE TABLE INST, Here is a database schema( table schema); | What are the earpads for the headphones that are Reference class and have MSRP of $695?It is not neccessary to use all the tables. |
SELECT Start date (1st night) FROM table WHERE Season = 1966 | CREATE TABLE INST, Here is a database schema( table schema); | When are start dates (1st night) for the season of 1966?.It is not neccessary to use all the tables. |
SELECT winningteam FROM table_11236195_5 WHERE clive_churchill_medal = "Brett Kimmorley" | CREATE TABLE INST, Here is a database schema( table schema); | Brett kimmorley who was chosen for the clive churchill medal belonged to what team?It is not neccessary to use all the tables. |
SELECT driver FROM table_name_55 WHERE chassis = "193" AND rounds = "14" | CREATE TABLE INST, Here is a database schema( table schema); | What driver went 14 rounds with a 193 Chassis?It is not neccessary to use all the tables. |
SELECT MAX(2003) FROM table_name_19 WHERE 2011 < 107 AND 1995 < 17 | CREATE TABLE INST, Here is a database schema( table schema); | What is the highest 2003 value with a 2011 less than 107 and a 1995 value less than 17?It is not neccessary to use all the tables. |
SELECT constructor FROM table_name_33 WHERE race = "german grand prix" | CREATE TABLE INST, Here is a database schema( table schema); | What was the Constructor for the German Grand Prix Race?It is not neccessary to use all the tables. |
SELECT member_countries FROM table_name_47 WHERE area__km²_ = "49,036" | CREATE TABLE INST, Here is a database schema( table schema); | What is the name of the country that has an Area (km²) of 49036?It is not neccessary to use all the tables. |
SELECT Driver FROM table WHERE Race 2 = 14 | CREATE TABLE INST, Here is a database schema( table schema); | What is Driver, when Race 2 is 14?.It is not neccessary to use all the tables. |
SELECT COUNT # FROM table WHERE Episode = "Conference Call" | CREATE TABLE INST, Here is a database schema( table schema); | How many times was the episode named "conference call"?.It is not neccessary to use all the tables. |
SELECT T1.stu_fname, T1.stu_lname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num WHERE T2.enroll_grade = 'C' OR T2.enroll_grade = 'A' | CREATE TABLE INST, Here is a database schema( table schema); | Find names of all students who took some course and got A or C.It is not neccessary to use all the tables. |
SELECT Series FROM table WHERE Director = friz freleng AND Production Number = 1614 | CREATE TABLE INST, Here is a database schema( table schema); | From what series was the title with a production number of 1614 that was directed by Friz Freleng?.It is not neccessary to use all the tables. |
SELECT Name FROM table WHERE Overall > 414 AND Pick # > 9 | CREATE TABLE INST, Here is a database schema( table schema); | Who has an overall greater than 414 with a pick# bigger than 9?.It is not neccessary to use all the tables. |
SELECT Commissioned– Decommissioned FROM table WHERE Home Port = oakland AND NVR page = aor-1 | CREATE TABLE INST, Here is a database schema( table schema); | Name the commissioned-decommissioned for oakland and NVR page of aor-1.It is not neccessary to use all the tables. |
SELECT COUNT NHL team FROM table WHERE Position = Center | CREATE TABLE INST, Here is a database schema( table schema); | How many figures are provided for the team when the position drafted is center?.It is not neccessary to use all the tables. |
SELECT * FROM table_train_217 WHERE (serum_creatinine = 2 AND gender = 'male') OR (serum_creatinine > 1.8 AND gender = 'female') | CREATE TABLE INST, Here is a database schema( table schema); | serum creatinine = 2 mg / dl in male and > 1.8 mg / dl in femaleIt is not neccessary to use all the tables. |
SELECT COUNT(total) FROM table_19681738_1 WHERE hancock__number = 1394 | CREATE TABLE INST, Here is a database schema( table schema); | how many times was total considered when hancock # was 1394It is not neccessary to use all the tables. |
SELECT ICAO FROM table WHERE Fleet size = 2 | CREATE TABLE INST, Here is a database schema( table schema); | Which ICAO has a Fleet size of 2?.It is not neccessary to use all the tables. |
SELECT Production code FROM table WHERE Written by = Kirker Butler AND Directed by = Dan Povenmire | CREATE TABLE INST, Here is a database schema( table schema); | What's the production code of the episode written by Kirker Butler and directed by Dan Povenmire?.It is not neccessary to use all the tables. |
SELECT COUNT(*) FROM Users | CREATE TABLE INST, Here is a database schema( table schema); | How many StackOverflow users are there?.It is not neccessary to use all the tables. |
SELECT womens_singles FROM table_28138035_35 WHERE mens_singles = "Jean-Michel Saive" | CREATE TABLE INST, Here is a database schema( table schema); | Who won the Womens Singles in the year the Jean-Michel Saive won the Mens Singles?It is not neccessary to use all the tables. |
SELECT Kilgore (R) FROM table WHERE Potts (I) = 1% | CREATE TABLE INST, Here is a database schema( table schema); | What was Kilgore's (R) percentage when Potts (I) polled at 1%?.It is not neccessary to use all the tables. |
SELECT couple FROM table_23662272_4 WHERE total_points_earned = 161 | CREATE TABLE INST, Here is a database schema( table schema); | What is the name of the couple if the total points earned is 161?It is not neccessary to use all the tables. |
SELECT score FROM table_name_88 WHERE player = "bernhard langer" | CREATE TABLE INST, Here is a database schema( table schema); | What was the score of Bernhard Langer after 3 rounds?It is not neccessary to use all the tables. |
SELECT MIN("Grid") FROM table_78520 WHERE "Driver" = 'prince bira' | CREATE TABLE INST, Here is a database schema( table schema); | What was the smallest grid for Prince bira?It is not neccessary to use all the tables. |
SELECT All_Neutral, School_ID FROM basketball_match ORDER BY School_ID DESC | CREATE TABLE INST, Here is a database schema( table schema); | A bar chart shows the distribution of All_Neutral and School_ID , list in descending by the y axis.It is not neccessary to use all the tables. |
SELECT DISTINCT staff_first_name, staff_last_name FROM staff AS T1 JOIN problem_log AS T2 ON T1.staff_id = T2.assigned_to_staff_id WHERE T2.problem_id = 1 | CREATE TABLE INST, Here is a database schema( table schema); | List the first and last names of all distinct staff members who are assigned to the problem whose id is 1.It is not neccessary to use all the tables. |
SELECT SUM Floors FROM table WHERE Name = blue diamond | CREATE TABLE INST, Here is a database schema( table schema); | How many floors does the Blue Diamond have?.It is not neccessary to use all the tables. |
SELECT stadium FROM table_11208143_9 WHERE average = 13840 | CREATE TABLE INST, Here is a database schema( table schema); | Which stadiums have an average attendance of 13840?It is not neccessary to use all the tables. |
SELECT commonwealth_equivalent FROM table_1015521_2 WHERE us_air_force_equivalent = "Major General" | CREATE TABLE INST, Here is a database schema( table schema); | If you're a major general in the US air force then what ranking will you receive in the commonwealth's air force?It is not neccessary to use all the tables. |
SELECT owner FROM table_name_2 WHERE locomotive = "c501" | CREATE TABLE INST, Here is a database schema( table schema); | what is the owner of the c501It is not neccessary to use all the tables. |
SELECT COUNT(motogp_winner) FROM table_26781017_1 WHERE circuit = "Catalunya" | CREATE TABLE INST, Here is a database schema( table schema); | How many MotoGP winners were there when the circuit was Catalunya?It is not neccessary to use all the tables. |
SELECT player FROM table_11677760_1 WHERE college = "Direct to NBA" AND school = "St. Vincent – St. Mary High school" AND year = "2001-2002" | CREATE TABLE INST, Here is a database schema( table schema); | what is the player who's college is listed as direct to nba school is st. vincent – st. mary high school and the year is 2001-2002?It is not neccessary to use all the tables. |
SELECT MAX(round) FROM table_name_61 WHERE position = "linebacker" AND pick__number > 5 | CREATE TABLE INST, Here is a database schema( table schema); | Let's say position was linebacker with a pick number less than 5 what was the highest round?It is not neccessary to use all the tables. |
SELECT Postcodedistrict FROM table WHERE Location = eden park | CREATE TABLE INST, Here is a database schema( table schema); | What is the name of the Post code district that is in Eden Park?.It is not neccessary to use all the tables. |
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.discharge_location = "DEAD/EXPIRED" AND procedures.short_title = "Ven cath renal dialysis" | CREATE TABLE INST, Here is a database schema( table schema); | how many dead/expired discharged patients had venous catheterization for renal dialysis?It is not neccessary to use all the tables. |
SELECT SUM("Grid") FROM table_56764 WHERE "Laps" > '73' AND "Driver" = 'bruce mclaren' | CREATE TABLE INST, Here is a database schema( table schema); | What is the grid total for bruce mclaren with over 73 laps?It is not neccessary to use all the tables. |
SELECT Works number FROM table WHERE Builder = avonside engine company AND Type = 4-6-0 AND Number < 12 AND Date = december 1871 | CREATE TABLE INST, Here is a database schema( table schema); | Which Works number has a Builder of avonside engine company, and a Type of 4-6-0, and a Number smaller than 12, and a Date of december 1871?.It is not neccessary to use all the tables. |
SELECT MAX("No. in season") FROM table_25759 WHERE "No. in series" = '75' | CREATE TABLE INST, Here is a database schema( table schema); | What episode number of the season was also number 75 in the series?It is not neccessary to use all the tables. |
SELECT AVG Release Date FROM table WHERE Music Label = virgin | CREATE TABLE INST, Here is a database schema( table schema); | What is the release date by Virgin?.It is not neccessary to use all the tables. |
SELECT 1994 FROM table_name_65 WHERE 1996 = "grand slams" | CREATE TABLE INST, Here is a database schema( table schema); | What is 1994 when 1996 is "Grand Slams"?It is not neccessary to use all the tables. |
SELECT MIN Entries FROM table WHERE Percentage = 9.31% AND 3rd places > 23 | CREATE TABLE INST, Here is a database schema( table schema); | What is the least amount of entries that has 9.31% as a percentage with a 3rd place larger than 23?.It is not neccessary to use all the tables. |
SELECT MIN(area__km_2__) FROM table_24574438_1 | CREATE TABLE INST, Here is a database schema( table schema); | Name the least areaIt is not neccessary to use all the tables. |
SELECT high_assists FROM table_name_44 WHERE date = "november 25" | CREATE TABLE INST, Here is a database schema( table schema); | Can you tell me the High assists that has the Date of november 25?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 is the Home team score at junction oval?.It is not neccessary to use all the tables. |
SELECT team FROM table_name_96 WHERE circuit = "queensland raceway" AND winner = "garth tander" | CREATE TABLE INST, Here is a database schema( table schema); | What is Team when Circuit is Queensland Raceway and when Winner is Garth Tander?It is not neccessary to use all the tables. |
SELECT cpu FROM table_11703336_1 WHERE ram = "28 KB of ram" AND display_size = "128×64 pixels 21×8 characters" | CREATE TABLE INST, Here is a database schema( table schema); | what is the cpu for the calculator with 28 kb of ram and display size 128×64 pixels 21×8 characters?It is not neccessary to use all the tables. |
SELECT Venue FROM table WHERE Away team = south melbourne | CREATE TABLE INST, Here is a database schema( table schema); | At what venue was the game played where the away team was South Melbourne.It is not neccessary to use all the tables. |
SELECT Replaced by FROM table WHERE Date of appointment = 2 November 2010 | CREATE TABLE INST, Here is a database schema( table schema); | Who replaced on the date of appointment 2 november 2010?.It is not neccessary to use all the tables. |
SELECT MIN Grid FROM table WHERE Team = pkv racing AND Points = 13 AND Laps < 64 | CREATE TABLE INST, Here is a database schema( table schema); | What is the lowest grid of pkv racing, which had 13 points and less than 64 laps?.It is not neccessary to use all the tables. |
SELECT COUNT("NBA Draft") FROM table_17098 WHERE "Player" = 'Felipe Lopez' | CREATE TABLE INST, Here is a database schema( table schema); | how many times was the player felipe lopez?It is not neccessary to use all the tables. |
SELECT procedures.short_title FROM procedures WHERE procedures.icd9_code = "3891" | CREATE TABLE INST, Here is a database schema( table schema); | for icd9 code 3891, specify the procedural short title.It is not neccessary to use all the tables. |
SELECT "Direction" FROM table_26041 WHERE "24 Mountains" = 'Wei 未 Kun 坤 Shen 申' | CREATE TABLE INST, Here is a database schema( table schema); | What is every direction with 24 mountains as Wei Kun Shen ?It is not neccessary to use all the tables. |
SELECT 3’UTR sequence FROM table WHERE Coding = 6a 3 AND GenBank id = nm_001093770.2 | CREATE TABLE INST, Here is a database schema( table schema); | What was the 3’UTR sequence when Coding was 6a 3 and the GenBank id is nm_001093770.2?.It is not neccessary to use all the tables. |
SELECT Census Ranking FROM table WHERE Official Name = Perth | CREATE TABLE INST, Here is a database schema( table schema); | What is the census ranking for the Perth parish?.It is not neccessary to use all the tables. |
SELECT MIN(cultural_and_educational_panel) FROM table_name_74 WHERE nominated_by_the_taoiseach < 5 AND total > 19 | CREATE TABLE INST, Here is a database schema( table schema); | What is the smallest cultural and educational panel with a nominated by the Taoiseach less than 5 and the total greater than 19?It is not neccessary to use all the tables. |
SELECT Aircraft flown FROM table WHERE Axis Unit = luftwaffe (**) AND Enemy Aircraft = ju.88 | CREATE TABLE INST, Here is a database schema( table schema); | What was the aircraft flown when the axis unit was luftwaffe (**) and the enemy aircraft was ju.88?.It is not neccessary to use all the tables. |
SELECT edition_s_ FROM table_name_82 WHERE region = "germany" | CREATE TABLE INST, Here is a database schema( table schema); | What is the Edition of the release in Germany?It is not neccessary to use all the tables. |
SELECT Years as tallest FROM table WHERE Height ft (m) = 145 (44) | CREATE TABLE INST, Here is a database schema( table schema); | What is the Years as tallest of the Building with a Height ft (m) of 145 (44)?.It is not neccessary to use all the tables. |
SELECT Conference FROM table WHERE Championship Game Opponent = Ferris State | CREATE TABLE INST, Here is a database schema( table schema); | What is the conference when Ferris State is the championship game opponent?.It is not neccessary to use all the tables. |
SELECT Category FROM table WHERE Player = Olsen Racela | CREATE TABLE INST, Here is a database schema( table schema); | What are the names of the categories when the player is olsen racela?.It is not neccessary to use all the tables. |
SELECT MIN Pick FROM table WHERE Position = of AND Team = chicago white sox | CREATE TABLE INST, Here is a database schema( table schema); | What was the lowest pick when the position was OF with the Chicago White Sox?.It is not neccessary to use all the tables. |
SELECT Profits (billion $) FROM table WHERE Market Value (billion $) = 172.9 | CREATE TABLE INST, Here is a database schema( table schema); | What are the profits (in billions) of the company with a market value of 172.9 billion?.It is not neccessary to use all the tables. |
SELECT winning_jockey FROM table_name_86 WHERE track = "tampa bay downs" AND winning_horse = "barkley sound" | CREATE TABLE INST, Here is a database schema( table schema); | What Winning Jockey ran in the Tampa Bay Downs Track on Winning Horse Barkley Sound?It is not neccessary to use all the tables. |
SELECT Champion FROM table WHERE Season = 1994 | CREATE TABLE INST, Here is a database schema( table schema); | Who is the champion of the 1994 season?.It is not neccessary to use all the tables. |
SELECT AVG(field_goals) FROM table_name_87 WHERE points > 50 AND extra_points > 0 AND player = "herb graver" AND touchdowns < 15 | CREATE TABLE INST, Here is a database schema( table schema); | When Herb Graver played how many field goals were made when there were more than 50 points less than 15 touchdowns and more than 0 extra points?It is not neccessary to use all the tables. |
SELECT COUNT(wins) FROM table_25352318_1 WHERE season = 2010 AND team = "ART Grand Prix" | CREATE TABLE INST, Here is a database schema( table schema); | When art grand prix is the team and 2010 is the season how many wins are there?It is not neccessary to use all the tables. |
SELECT MIN Year FROM table WHERE Title = requiem for a dream AND Category = best director | CREATE TABLE INST, Here is a database schema( table schema); | What is the earliest year in which Requiem for a Dream was in the running for Best Director?.It is not neccessary to use all the tables. |
SELECT third_place FROM table_name_89 WHERE total_wins < 5 AND winners = "china b" | CREATE TABLE INST, Here is a database schema( table schema); | Who is third-place with less than 5 total wins with china b as the winners?It is not neccessary to use all the tables. |
SELECT COUNT(*) FROM table_204_4 WHERE "rider" = 'tom boonen' | CREATE TABLE INST, Here is a database schema( table schema); | how many times was tom boonen listed as the rider ?It is not neccessary to use all the tables. |
SELECT Opponent FROM table WHERE Surface = hard AND Outcome = winner AND Partnering = jordan kerr | CREATE TABLE INST, Here is a database schema( table schema); | Who was the Opponent partnering with Jordan Kerr, on a hard surface that was the winner?.It is not neccessary to use all the tables. |
SELECT COUNT District FROM table WHERE Incumbent = Ed Jones | CREATE TABLE INST, Here is a database schema( table schema); | How many districts does Ed Jones represent?.It is not neccessary to use all the tables. |
SELECT duration FROM table_name_86 WHERE lok_sabha = "fifth" | CREATE TABLE INST, Here is a database schema( table schema); | What is the duration when Lok Sabha shows fifth?It is not neccessary to use all the tables. |
SELECT SUM(attendance) FROM table_name_58 WHERE opponent = "philadelphia eagles" AND week > 9 | CREATE TABLE INST, Here is a database schema( table schema); | What is the sum of the attendance during the game against the philadelphia eagles after week 9?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.