sql
stringlengths 9
2.37k
| table
stringclasses 9
values | query
stringlengths 51
503
|
---|---|---|
SELECT COUNT Pick # FROM table WHERE NHL team = Philadelphia Flyers
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what is the total number of pick # where nhl team is philadelphia flyers.It is not neccessary to use all the tables.
|
SELECT "Scott" FROM table_23507 WHERE "Species" = 'Chloropsis hardwickii'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the scott for chloropsis hardwickiiIt is not neccessary to use all the tables.
|
SELECT High points FROM table WHERE Game < 10 AND High assists = chauncey billups (8)
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is High Points, when Game is less than 10, and when High Assists is "Chauncey Billups (8)"?.It is not neccessary to use all the tables.
|
SELECT surface FROM table_name_94 WHERE tournament = "eckental" AND score = "w/o"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the surface of eckental tournament with a w/o score?It is not neccessary to use all the tables.
|
SELECT points_classification FROM table_name_93 WHERE young_rider_classification = "chris anker sørensen" AND general_classification = "christian vande velde"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the point classification with chris anker s rensen as the young rider classification and Christian vande velde as the general classification?It is not neccessary to use all the tables.
|
SELECT 1st stage FROM table WHERE Parameter = Diameter
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the 1st stage for parameter being diameter.It is not neccessary to use all the tables.
|
SELECT SUM(fa_cup_goals) FROM table_name_59 WHERE name = "david mirfin" AND total_goals < 1
|
CREATE TABLE INST, Here is a database schema( table schema);
|
I want to know the sum of fa cup goals for david mirfin and total goals less than 1It is not neccessary to use all the tables.
|
SELECT new_returning_same_network FROM table_name_29 WHERE last_aired = 1982
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which New/Returning/Same Network has a Last Aired of 1982?It is not neccessary to use all the tables.
|
SELECT cancelable FROM table_name_97 WHERE bubbles = "no" AND category = "miscellaneous" AND type = "propertychange"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
When Bubbles of no and a Category of miscellaneous and a Type of propertychange what was the Cancelable?It is not neccessary to use all the tables.
|
SELECT finish FROM table_name_55 WHERE total < 292 AND year_s__won = "1978"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Of the 1978 winners who had finish totals smaller than 292?It is not neccessary to use all the tables.
|
SELECT COUNT(milepost) FROM table_name_74 WHERE name_of_the_tunnel = "twin tunnel #1 north"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the Milepost of the Twin Tunnel #1 North?It is not neccessary to use all the tables.
|
SELECT opponent_number FROM table_name_28 WHERE attendance = "87,453"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who was the opponent when the attendance was 87453?It is not neccessary to use all the tables.
|
SELECT COUNT(*) FROM tryout WHERE decision = 'yes'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many students got accepted after the tryout?It is not neccessary to use all the tables.
|
SELECT MAX(events) FROM table_name_65 WHERE wins > 2 AND earnings___$__ < 446 OFFSET 893
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the largest events number for more than 2 wins and less than $446893 in earnings?It is not neccessary to use all the tables.
|
SELECT "Date" FROM table_12587 WHERE "Tournament" = 'rodez, france'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the Date of the Rodez, France Tournament?It is not neccessary to use all the tables.
|
SELECT cust_name, acc_bal FROM customer WHERE cust_name LIKE '%a%'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Find the name and account balance of the customer whose name includes the letter a .It is not neccessary to use all the tables.
|
SELECT Original air date FROM table WHERE U.S. viewers (millions) = 4.08
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the original air date of the episode that had 4.08 million U.S. viewers? .It is not neccessary to use all the tables.
|
SELECT college FROM table_16575609_5 WHERE player = "Dante Luciani"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Where did Dante Luciani attend college?It is not neccessary to use all the tables.
|
SELECT Date FROM table WHERE Saros > 124 AND Type = total AND Magnitude > 1.0535 AND Time (greatest) = 20:55:28
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what is the date when saros is more than 124, the type is total, the magnitude is more than 1.0535 and the time (greatest) is 20:55:28?.It is not neccessary to use all the tables.
|
SELECT to_par FROM table_name_1 WHERE score = 68 - 71 - 69 = 208
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the To par when the Score is 68-71-69=208?It is not neccessary to use all the tables.
|
SELECT Bulletins to all contacts FROM table WHERE Transport Layer Security = no AND License = proprietary AND Creator = microsoft
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Were there Bulletins to all contacts of the proprietary license created by Microsoft with no transport layer of security?.It is not neccessary to use all the tables.
|
SELECT SUM(touchdowns) FROM table_name_33 WHERE player = "rolla bigelow" AND extra_points < 0
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many Touchdowns have a Player of rolla bigelow and an Extra points smaller than 0?It is not neccessary to use all the tables.
|
SELECT MIN(labour_party) FROM table_name_16 WHERE fianna_fáil > 5
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the lowest number in the Labour Party for the Fianna Fail higher than 5?It is not neccessary to use all the tables.
|
SELECT swimsuit FROM table_12094300_1 WHERE average = "8.791"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the score for swimsuit when the average is 8.791?It is not neccessary to use all the tables.
|
SELECT score FROM table_name_27 WHERE record = "8–11–1"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the score of the Kings game when they had a record of 8–11–1?It is not neccessary to use all the tables.
|
SELECT Location FROM table WHERE Home team = slovakia
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the location of the home game for Slovakia?.It is not neccessary to use all the tables.
|
SELECT Record FROM table WHERE Method = tko (elbows)
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the record when the TKO (elbows) method was used?.It is not neccessary to use all the tables.
|
SELECT Body Styles FROM table WHERE Model = 6/75
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What body styles have 6/75 as the model?.It is not neccessary to use all the tables.
|
SELECT AVG(laps) FROM table_name_14 WHERE driver = "toranosuke takagi"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What are toranosuke takagi's average laps?It is not neccessary to use all the tables.
|
SELECT AVG(population) FROM table_name_17 WHERE area__km_2__ < 433.7 AND code = 23013
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the average population for an area less than 433.7km and a 23013 code?It is not neccessary to use all the tables.
|
SELECT contestant_number, contestant_name FROM contestants ORDER BY contestant_name DESC
|
CREATE TABLE INST, Here is a database schema( table schema);
|
List the contestant numbers and names ordered by contestant name descending.It is not neccessary to use all the tables.
|
SELECT Home team score FROM table WHERE Home team = north melbourne
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was North Melbourne's score when they were the home team?.It is not neccessary to use all the tables.
|
SELECT Verb meaning FROM table WHERE Part 2 = bant
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the verb meaning of the word with part 2 "bant"?.It is not neccessary to use all the tables.
|
SELECT issue_date FROM volume ORDER BY weeks_on_top LIMIT 1
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the issue date of the volume with the minimum weeks on top?It is not neccessary to use all the tables.
|
SELECT Tie no FROM table WHERE Attendance = 54,591
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which Tie #has an Attendance of 54,591?.It is not neccessary to use all the tables.
|
SELECT Constructor FROM table WHERE Grid < 10 AND Laps > 76 AND Driver = juan manuel fangio
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who constructed juan manuel fangio's car with over 76 laps and a grid under 10?.It is not neccessary to use all the tables.
|
SELECT MIN(fa_cup) FROM table_name_3 WHERE total = "0 2" AND league_cup < 0
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many FA cups were there without any league cups but a total of 0 2?It is not neccessary to use all the tables.
|
SELECT new_entries FROM table_name_7 WHERE fixtures < 16 AND clubs = "4 → 2"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the value for New entries when the value for Fixtures is less than 16 and when the value for Clubs is 4 → 2?It is not neccessary to use all the tables.
|
SELECT SUM Car. FROM table WHERE Avg. = 4.7 AND Long > 30
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many carries for the RB averaging 4.7, and a long of over 30 yards?.It is not neccessary to use all the tables.
|
SELECT COUNT(founded) FROM table_name_77 WHERE venue = "champion window field"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many different dates are there for founded teams for the venue of champion window field?It is not neccessary to use all the tables.
|
SELECT MAX(played) FROM table_14489821_1
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what is the maximum number of matches played by a team?It is not neccessary to use all the tables.
|
SELECT valley_vista FROM table_11340432_1 WHERE willow_canyon = "Anthony Capuano"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the Valley Vista of Anthony CapuanoIt is not neccessary to use all the tables.
|
SELECT AVG(bronze) FROM table_name_34 WHERE rank = "8" AND total > 2
|
CREATE TABLE INST, Here is a database schema( table schema);
|
With 8 as the rank and a total of more than 2 medals what is the average bronze medals?It is not neccessary to use all the tables.
|
SELECT HIRE_DATE, COUNT(HIRE_DATE) FROM employees WHERE HIRE_DATE < '2002-06-21'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
For those employees who was hired before 2002-06-21, find hire_date and the amount of hire_date bin hire_date by time, and visualize them by a bar chart.It is not neccessary to use all the tables.
|
SELECT country FROM table_104858_1 WHERE year_current_scouting_organization_joined_wosm = "1930" AND year_member_organization_was_founded = "1926"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which countries have a scouting organization that was founded in 1926 and joined WOSM in 1930?It is not neccessary to use all the tables.
|
SELECT STU_FNAME, SUM(STU_GPA) FROM STUDENT WHERE STU_GPA < (SELECT AVG(STU_GPA) FROM STUDENT) GROUP BY STU_FNAME
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Find the first name and gpa of the students whose gpa is lower than the average gpa of all students. Plot them as bar chart.It is not neccessary to use all the tables.
|
SELECT Name FROM table WHERE Type = learning/social difficulties
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which name is the learning/social difficulties type?.It is not neccessary to use all the tables.
|
SELECT mixed_doubles FROM table_27753492_2 WHERE tour = "Korea Super Series"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who is the mixed doubled on the tour korea super series?It is not neccessary to use all the tables.
|
SELECT MAX(apogee__km_) FROM table_12141496_1 WHERE name = "SAMOS F3-3"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the maximum apogee for samos f3-3?It is not neccessary to use all the tables.
|
SELECT "Location" FROM table_47982 WHERE "Result" = '3-3'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the location of the match that had a result of 3-3?It is not neccessary to use all the tables.
|
SELECT AVG(played) FROM table_name_91 WHERE wins < 11 AND goals_for > 42 AND points > 22 AND losses = 11
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the average number played that has fewer than 11 wins, more than 42 goals, more than 22 points, and 11 losses?It is not neccessary to use all the tables.
|
SELECT Previous experience FROM table WHERE Weight > 180 AND Player = charles b. carter
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Weight larger than 180, and a Player of charles b. carter is what previous experience?.It is not neccessary to use all the tables.
|
SELECT Route/Via. FROM table WHERE Destination = Madurai
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the route/via when the destination is listed as Madurai?.It is not neccessary to use all the tables.
|
SELECT week FROM table_name_89 WHERE attendance = "39,056"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which week had 39056 people in attendance?It is not neccessary to use all the tables.
|
SELECT Outgoing manage FROM table WHERE Incoming manager = augusto inácio
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who was the outgoing manager when the incoming manager was augusto inácio?.It is not neccessary to use all the tables.
|
SELECT opponent FROM table_name_11 WHERE date = "dec 8"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is Opponent when Date is "Dec 8"?It is not neccessary to use all the tables.
|
SELECT club FROM table_name_65 WHERE drawn = "1" AND lost = "11" AND try_bonus = "7"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which club had 1 draw 11 lost and a try bonus of 7?It is not neccessary to use all the tables.
|
SELECT 1981 FROM table WHERE Tournament = wimbledon
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the 1981 value at the Tournament of Wimbledon?.It is not neccessary to use all the tables.
|
SELECT MIN(species_in_the_peruvian_amazon) FROM table_11727969_1 WHERE species_in_peru = 1000
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what's the minimum species in the peruvian amazon with species in peru of 1000It is not neccessary to use all the tables.
|
SELECT MAX(pl_gp) FROM table_name_27 WHERE rd__number > 9
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the highest PL GP for a round greater than 9?It is not neccessary to use all the tables.
|
SELECT team FROM table_name_96 WHERE year < 2007 AND class = "gts"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which Team has a Year smaller than 2007 and a Class of gts?It is not neccessary to use all the tables.
|
SELECT Date FROM table WHERE Week < 10 AND Attendance = 38,865
|
CREATE TABLE INST, Here is a database schema( table schema);
|
When was the pre-Week 10 game that had an attendance of over 38,865?.It is not neccessary to use all the tables.
|
SELECT opponent FROM table_name_28 WHERE date = "september 26, 2009"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who was the opponent on September 26 2009?It is not neccessary to use all the tables.
|
SELECT "Athlete" FROM table_66135 WHERE "Time" = '6:02.46'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
who is the athlete with the time 6:02.46?It is not neccessary to use all the tables.
|
SELECT dept_name FROM department ORDER BY dept_name
|
CREATE TABLE INST, Here is a database schema( table schema);
|
list names of all departments ordered by their names.It is not neccessary to use all the tables.
|
SELECT death FROM table_name_1 WHERE husband = "charles, 1st dauphin"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
when was the death of the person with husband Charles 1st dauphin?It is not neccessary to use all the tables.
|
SELECT MAX Shirt Number FROM table WHERE Cap Number = 5
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What's the largest shirt number when the cap number is 5?.It is not neccessary to use all the tables.
|
SELECT COUNT(2010 AS _11) FROM table_27712_2 WHERE country = "Brazil"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many data were given on 2010/2011 in Brazil?It is not neccessary to use all the tables.
|
SELECT "Attendance" FROM table_14855 WHERE "Time" = '1:31'
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the attendance for time of 1:31It is not neccessary to use all the tables.
|
SELECT phoneme FROM table_name_13 WHERE realization = "[ɪj]"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name the phoneme for realizaiton of [ɪj]It is not neccessary to use all the tables.
|
SELECT Result FROM table WHERE Date = 7 june 2000
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which Result has a Date of 7 june 2000?.It is not neccessary to use all the tables.
|
SELECT candidates FROM table_1342218_17 WHERE district = "Kentucky 4"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who were the candidates in the Kentucky 4 voting district?It is not neccessary to use all the tables.
|
SELECT current_club FROM table_12962773_1 WHERE height = "2.09"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what's current club with height being 2.09It is not neccessary to use all the tables.
|
SELECT D 50 √ FROM table WHERE D 47 √ = r 27 √
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the D 50 √ when the D 47 √ is r 27 √?.It is not neccessary to use all the tables.
|
SELECT MIN Stolen Ends FROM table WHERE Locale = British Columbia
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many stolen ends did the skipper whose locale was British Columbia have? .It is not neccessary to use all the tables.
|
SELECT COUNT(founded) FROM table_24195232_1 WHERE location = "Springfield, Ohio"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many entries are there for founded when the location was springfield ohio?It is not neccessary to use all the tables.
|
SELECT MIN(demographic.age) FROM demographic WHERE demographic.marital_status = "MARRIED" AND demographic.discharge_location = "DISCH-TRAN TO PSYCH HOSP"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
what is minimum age of patients whose marital status is married and discharge location is disch-tran to psych hosp?It is not neccessary to use all the tables.
|
SELECT MIN(third_place) FROM table_2146364_2
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the smallest third place finish?It is not neccessary to use all the tables.
|
SELECT Country FROM table WHERE Place = t1
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which Country has a Place of t1?.It is not neccessary to use all the tables.
|
SELECT Candidates FROM table WHERE Incumbent = Albert Bustamante
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Name all the candidates vying for Albert Bustamante's seat..It is not neccessary to use all the tables.
|
SELECT record FROM table_name_78 WHERE visitor = "new jersey devils" AND date = "may 7"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which record had a visitor of New Jersey Devils on May 7?It is not neccessary to use all the tables.
|
SELECT Ukraine career FROM table WHERE Lost > 1 AND Drawn > 11
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What years had a manager who lost more than 1 and drawn more than 11?.It is not neccessary to use all the tables.
|
SELECT Casualties FROM table WHERE Circumstances = combat AND Location = fayzabad area
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many casualties from the combat in the Fayzabad area?.It is not neccessary to use all the tables.
|
SELECT Denis Nizhegorodov ( RUS ) FROM table WHERE World record = North American record
|
CREATE TABLE INST, Here is a database schema( table schema);
|
When north american record is the world record who is the denis nizhegorodov ( rus )?.It is not neccessary to use all the tables.
|
SELECT rating FROM table_11238597_4 WHERE viewers__millions_ = "1.83"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the rating for the episode with 1.83 viewers (millions)?It is not neccessary to use all the tables.
|
SELECT Investor_details, COUNT(Investor_details) FROM Investors GROUP BY Investor_details ORDER BY COUNT(Investor_details) DESC
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Show all investor details, and count them by a bar chart, I want to rank from high to low by the how many investor details please.It is not neccessary to use all the tables.
|
SELECT class FROM table_name_50 WHERE identifier = "cbua-fm"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which class has an identifier of CBUA-FM?It is not neccessary to use all the tables.
|
SELECT t.TagName, COUNT(a.Id) AS "count", SUM(a.Score) AS "score" FROM Posts AS a INNER JOIN Posts AS q ON a.ParentId = q.Id INNER JOIN PostTags AS pt ON pt.PostId = q.Id INNER JOIN Tags AS t ON t.Id = pt.TagId WHERE (a.OwnerUserId = '##userid?39599##') GROUP BY t.TagName ORDER BY COUNT(a.Id) DESC
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Tags with most answers for the given user.It is not neccessary to use all the tables.
|
SELECT COUNT Points FROM table WHERE Name = tiago splitter AND Rank < 5
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What's the total number of points that the rank is less than 5 and has Tiago Splitter?.It is not neccessary to use all the tables.
|
SELECT MIN Bronze FROM table WHERE Silver < 0
|
CREATE TABLE INST, Here is a database schema( table schema);
|
with silver count at 0, what is the lowest bronze count?.It is not neccessary to use all the tables.
|
SELECT COUNT Total FROM table WHERE Gold = 1 AND Rank > 4 AND Bronze = 0
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the total when gold is 1, and rank is more than 4, and bronze is 0?.It is not neccessary to use all the tables.
|
SELECT date FROM table_name_98 WHERE attendance = "74,285"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What day was the attendance 74285?It is not neccessary to use all the tables.
|
SELECT Name FROM table WHERE Position = wr AND Weight = 197
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the name of the player who is a wr and has a weight of 197?.It is not neccessary to use all the tables.
|
SELECT mascot FROM table_name_11 WHERE county = "32 hendricks"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the mascot for the school in 32 Hendricks County?It is not neccessary to use all the tables.
|
SELECT MIN Rank (cable) FROM table WHERE Total viewers = 1464000
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What is the lowest cable rank of an episode with 1464000 viewers?.It is not neccessary to use all the tables.
|
SELECT score FROM table_17323042_11 WHERE high_points = "Andre Miller (17)"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What was the score and game outcome when High Points was andre miller (17)?It is not neccessary to use all the tables.
|
SELECT high_assists FROM table_name_3 WHERE game = 77
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Who had the high assists in game 77?It is not neccessary to use all the tables.
|
SELECT Date FROM table WHERE Crowd > 24,824 AND Venue = scg
|
CREATE TABLE INST, Here is a database schema( table schema);
|
What day was played in SCG with the attendance more than 24,824?.It is not neccessary to use all the tables.
|
SELECT COUNT(nationality) FROM table_1013129_3 WHERE nhl_team = "New Jersey Devils"
|
CREATE TABLE INST, Here is a database schema( table schema);
|
How many different nationalities do the players of New Jersey Devils come from?It is not neccessary to use all the tables.
|
SELECT Date FROM table WHERE Score in the final = 4–6, 3–6
|
CREATE TABLE INST, Here is a database schema( table schema);
|
Which date has a Score in the final of 4–6, 3–6?.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.