sql
stringlengths 9
2.37k
| table
stringclasses 9
values | query
stringlengths 51
503
|
---|---|---|
SELECT Id FROM Posts AS p WHERE (OwnerUserId IS NULL OR (SELECT DATEDIFF(d, LastAccessDate, GETDATE()) FROM Users AS u WHERE p.OwnerUserId = u.Id) > 360) AND CommunityOwnedDate IS NULL AND CommentCount > 4 AND LastEditDate > (SELECT MAX(CreationDate) FROM Comments WHERE PostId = p.Id) | CREATE TABLE INST, Here is a database schema( table schema); | likely obsolete comments on posts from users who've left.It is not neccessary to use all the tables. |
SELECT MIN Founded FROM table WHERE School = Lindenwood University | CREATE TABLE INST, Here is a database schema( table schema); | In what year was Lindenwood University founded?.It is not neccessary to use all the tables. |
SELECT date FROM table_name_42 WHERE result = "0–0" | CREATE TABLE INST, Here is a database schema( table schema); | Which Date has a Result of 0–0?It is not neccessary to use all the tables. |
SELECT venue FROM table_name_22 WHERE status = "2007 rugby world cup" AND against < 22 AND date = "08/09/2007" | CREATE TABLE INST, Here is a database schema( table schema); | What is Venue when Status is "2007 Rugby World Cup" when Against is less than 22 and when Date is "08/09/2007"?It is not neccessary to use all the tables. |
SELECT est FROM table_name_6 WHERE state_province = "alberta" AND league = "cfl" AND city = "edmonton" | CREATE TABLE INST, Here is a database schema( table schema); | In what year was the cfl team in edmonton alberta established?It is not neccessary to use all the tables. |
SELECT English FROM table WHERE house = balay AND three = tatlo AND four = apat | CREATE TABLE INST, Here is a database schema( table schema); | What is the language, when "house" is "balay", when "three" is "tatlo", and when "four" is "apat"?.It is not neccessary to use all the tables. |
SELECT AVG Number FROM table WHERE Song Title = o sudha | CREATE TABLE INST, Here is a database schema( table schema); | What is the average number for the song "O Sudha"?.It is not neccessary to use all the tables. |
SELECT series FROM table_name_60 WHERE saturday = "alice levine jamie east" | CREATE TABLE INST, Here is a database schema( table schema); | In what series did Alice Levine Jamie East give a presentation on Saturday?It is not neccessary to use all the tables. |
SELECT SUM(population) FROM table_name_32 WHERE census_ranking = "579 of 5,008" | CREATE TABLE INST, Here is a database schema( table schema); | What is the population of the parish with a census ranking of 579 of 5008?It is not neccessary to use all the tables. |
SELECT COUNT(tv_season) FROM table_217785_2 WHERE viewers__in_millions_of_households_ = "10.2" | CREATE TABLE INST, Here is a database schema( table schema); | Which season received 10.2 million viewers?It is not neccessary to use all the tables. |
SELECT T2.product_name, SUM(T1.product_quantity) FROM Order_items AS T1 JOIN Products AS T2 ON T1.product_id = T2.product_id GROUP BY T2.product_name | CREATE TABLE INST, Here is a database schema( table schema); | Show all product names and the total quantity ordered for each product name.It is not neccessary to use all the tables. |
SELECT Location FROM table WHERE Team = shakhtar-2 | CREATE TABLE INST, Here is a database schema( table schema); | Where is Shakhtar-2 located?.It is not neccessary to use all the tables. |
SELECT MAX Founded FROM table WHERE Institution = Alfred University | CREATE TABLE INST, Here is a database schema( table schema); | When was alfred university founded?.It is not neccessary to use all the tables. |
SELECT "Years" FROM table_33720 WHERE "Coach" = 'walter meanwell' AND "Conference Record" = '63-9' | CREATE TABLE INST, Here is a database schema( table schema); | In what years, when the conference record was 63-9, was the coach Walter Meanwell?It is not neccessary to use all the tables. |
SELECT start FROM table_name_17 WHERE year > 2010 AND team = "chip ganassi racing" | CREATE TABLE INST, Here is a database schema( table schema); | What start has a year later than 2010 and chip ganassi racing as the team?It is not neccessary to use all the tables. |
SELECT COUNT("Vacator") FROM table_73399 WHERE "Date successor seated" = 'October 22, 1808' | CREATE TABLE INST, Here is a database schema( table schema); | How many vacators have October 22, 1808 as date successor seated?It is not neccessary to use all the tables. |
SELECT SUM Laps FROM table WHERE Grid > 4 AND Driver = nick heidfeld | CREATE TABLE INST, Here is a database schema( table schema); | How many laps did Nick Heidfeld drive on grids larger than 4?.It is not neccessary to use all the tables. |
SELECT Grape, Appelation, Name FROM WINE WHERE Score > 93 ORDER BY Name | CREATE TABLE INST, Here is a database schema( table schema); | List the grape appelation and name of wines whose score is higher than 93 ordered by Name.It is not neccessary to use all the tables. |
SELECT Series FROM table WHERE Position = 7th | CREATE TABLE INST, Here is a database schema( table schema); | In what series did he have the 7th position? .It is not neccessary to use all the tables. |
SELECT defending_forces FROM table_name_41 WHERE population = "120" | CREATE TABLE INST, Here is a database schema( table schema); | What is the Defending forces when the population was 120?It is not neccessary to use all the tables. |
SELECT phone, room, building FROM Faculty WHERE Fname = "Jerry" AND Lname = "Prince" | CREATE TABLE INST, Here is a database schema( table schema); | Show the phone room and building for the faculty named Jerry Prince.It is not neccessary to use all the tables. |
SELECT 2007 FROM table_name_16 WHERE 2004 = "olympic games" | CREATE TABLE INST, Here is a database schema( table schema); | What is in 2007 has 2004 olympic games?It is not neccessary to use all the tables. |
SELECT SUM(member) FROM table_name_11 WHERE saros > 127 AND gamma < 1.1508 AND magnitude = 0.742 | CREATE TABLE INST, Here is a database schema( table schema); | what is the sum of the member when the saros is more than 127 gamma is less than 1.1508 and the magnitude is 0.742?It is not neccessary to use all the tables. |
SELECT MAX(lost) FROM table_name_75 WHERE drawn > 11 AND position < 17 AND goals_for > 61 | CREATE TABLE INST, Here is a database schema( table schema); | What is the highest lost with a drawn more than 11 a position lower than 17 and more than 61 goals?It is not neccessary to use all the tables. |
SELECT Event FROM table WHERE Year < 1913 AND Position = 2nd | CREATE TABLE INST, Here is a database schema( table schema); | what is the event for the year less than 1913 with the position of 2nd?.It is not neccessary to use all the tables. |
SELECT rank FROM table_name_65 WHERE active_service = "american civil war and indian wars" | CREATE TABLE INST, Here is a database schema( table schema); | What rank does the person participating in American Civil war and indian wars?It is not neccessary to use all the tables. |
SELECT school FROM table_name_74 WHERE location = "radford, va" | CREATE TABLE INST, Here is a database schema( table schema); | What school is in Radford Va?It is not neccessary to use all the tables. |
SELECT Golf FROM table WHERE School = green bay | CREATE TABLE INST, Here is a database schema( table schema); | Does Green Bay have a golf team?.It is not neccessary to use all the tables. |
SELECT score FROM table_name_16 WHERE opponent = "@ blue jays" AND date = "june 7" | CREATE TABLE INST, Here is a database schema( table schema); | What Score has an Opponent of @ Blue Jays with a Date of June 7?It is not neccessary to use all the tables. |
SELECT SUM(ViewCount) AS Views FROM Posts AS Questions INNER JOIN PostTags ON Questions.Id = PostTags.PostId INNER JOIN Tags ON PostTags.TagId = Tags.Id WHERE Questions.PostTypeId = 1 AND Tags.TagName = '##tagname##' | CREATE TABLE INST, Here is a database schema( table schema); | Number of questions per tag.It is not neccessary to use all the tables. |
SELECT Season # FROM table WHERE Episode title = " Avril Lavigne " | CREATE TABLE INST, Here is a database schema( table schema); | How many season # where episode title is " Avril Lavigne "? .It is not neccessary to use all the tables. |
SELECT mascot FROM table_name_41 WHERE _number___county = "34 howard" | CREATE TABLE INST, Here is a database schema( table schema); | What is the mascot with a #/County of 34 Howard?It is not neccessary to use all the tables. |
SELECT "Lead" FROM table_9348 WHERE "Skip" = 'wang bingyu' AND "Event" = '2009 wcc' | CREATE TABLE INST, Here is a database schema( table schema); | What was the Lead for the 2009 WCC when Wang Bingyu news was the skip?It is not neccessary to use all the tables. |
SELECT AVG Touchdowns FROM table WHERE Yards < 293 AND Long > 39 | CREATE TABLE INST, Here is a database schema( table schema); | What is the average Touchdowns, when Yards is less than 293, and when Long is greater than 39?.It is not neccessary to use all the tables. |
SELECT Mixed doubles FROM table WHERE Womens singles = Kairi Viilup | CREATE TABLE INST, Here is a database schema( table schema); | WHAT IS THE NAME OF THE MIXED DOUBLES PLAYER WHEN THE WOMENS SINGLE PLAYER IS KAIRI VIILUP?.It is not neccessary to use all the tables. |
SELECT Womens doubles FROM table WHERE Mixed doubles = Sudket Prapakamol Saralee Thungthongkam | CREATE TABLE INST, Here is a database schema( table schema); | Who is the women's doubles when the mixed doubles are sudket prapakamol saralee thungthongkam?.It is not neccessary to use all the tables. |
SELECT lead FROM table_name_97 WHERE third = "aanders brorson" | CREATE TABLE INST, Here is a database schema( table schema); | Who holds the lead role when Aanders Brorson is third?It is not neccessary to use all the tables. |
SELECT Format FROM table WHERE Label = alfa records AND Catalog = alca-9016 | CREATE TABLE INST, Here is a database schema( table schema); | What is the Format for the alfa records Label, and a Catalog of alca-9016?.It is not neccessary to use all the tables. |
SELECT AVG(points) FROM table_name_31 WHERE played > 20 | CREATE TABLE INST, Here is a database schema( table schema); | What points average has a played greater than 20?It is not neccessary to use all the tables. |
SELECT "Position" FROM table_48609 WHERE "School/Club Team" = 'mcmaster' | CREATE TABLE INST, Here is a database schema( table schema); | What is Position, when School/Club Team is McMaster?It is not neccessary to use all the tables. |
SELECT Venue FROM table WHERE Third = jack hargreaves | CREATE TABLE INST, Here is a database schema( table schema); | What was the venue when Jack Hargreaves finished third?.It is not neccessary to use all the tables. |
SELECT COUNT(field_goals) FROM table_14342592_8 WHERE extra_points = 19 | CREATE TABLE INST, Here is a database schema( table schema); | Name the number of field goals for 19 extra pointsIt is not neccessary to use all the tables. |
SELECT AVG Total Debt FROM table WHERE Total Receipts > 9,969,292 | CREATE TABLE INST, Here is a database schema( table schema); | What is the average total debt of a candidate with more than 9,969,292 total receipts?.It is not neccessary to use all the tables. |
SELECT Initial Owners FROM table WHERE Year Built = 1858 AND Name = wasco | CREATE TABLE INST, Here is a database schema( table schema); | Who were the initial owners of Wasco in 1858?.It is not neccessary to use all the tables. |
SELECT viewers__millions_ FROM table_23117208_3 WHERE prod_code = "RP#213" | CREATE TABLE INST, Here is a database schema( table schema); | how many millions of spectator did has the episode whose prod.code was rp#213?It is not neccessary to use all the tables. |
SELECT Recorded FROM table WHERE Translation = hate | CREATE TABLE INST, Here is a database schema( table schema); | What is the date recorded of Hate?.It is not neccessary to use all the tables. |
SELECT tries_for FROM table_name_25 WHERE points_against = "214" | CREATE TABLE INST, Here is a database schema( table schema); | What is the tries for when the points against is 214?It is not neccessary to use all the tables. |
SELECT "name" FROM table_204_255 WHERE "number of electorates (2009)" < (SELECT "number of electorates (2009)" FROM table_204_255 WHERE "name" = 'niwari') | CREATE TABLE INST, Here is a database schema( table schema); | the number of electorates represented in the niwari segment is more than those in which other segment ?It is not neccessary to use all the tables. |
SELECT COUNT(crowd) FROM table_name_6 WHERE home_team = "north melbourne" | CREATE TABLE INST, Here is a database schema( table schema); | What was the attendance of the North Melbourne's home game?It is not neccessary to use all the tables. |
SELECT attendance FROM table_name_84 WHERE date = "december 12, 2004" | CREATE TABLE INST, Here is a database schema( table schema); | What is the Attendance of the game on December 12 2004?It is not neccessary to use all the tables. |
SELECT AVG Round FROM table WHERE Position = te | CREATE TABLE INST, Here is a database schema( table schema); | What is the average round for te position?.It is not neccessary to use all the tables. |
SELECT MAX(pa) FROM table_15333005_1 WHERE locale = Ontario | CREATE TABLE INST, Here is a database schema( table schema); | Name the most pa for ontarioIt is not neccessary to use all the tables. |
SELECT Start Source FROM table WHERE Loan Club = fulham | CREATE TABLE INST, Here is a database schema( table schema); | What is the loan start source when the loan club is fulham?.It is not neccessary to use all the tables. |
SELECT Name FROM table WHERE Party = minister for community safety and legal affairs | CREATE TABLE INST, Here is a database schema( table schema); | What is the name of the minister from the party of minister for community safety and legal affairs?.It is not neccessary to use all the tables. |
SELECT fuel_type FROM table_name_62 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 COUNT("Title") FROM table_3018 WHERE "Production code" = '3X5655' | CREATE TABLE INST, Here is a database schema( table schema); | Name the total number of titles for 3x5655It is not neccessary to use all the tables. |
SELECT author FROM table_name_49 WHERE title = "bludgeoning angel dokuro-chan" | CREATE TABLE INST, Here is a database schema( table schema); | Who is the author of Bludgeoning Angel Dokuro-Chan?It is not neccessary to use all the tables. |
SELECT SUM Silver FROM table WHERE Gold = 2 AND Bronze < 2 | CREATE TABLE INST, Here is a database schema( table schema); | How many silvers have 2 as gold, and a bronze less than 2?.It is not neccessary to use all the tables. |
SELECT place FROM table_name_88 WHERE money___$__ = "20,903" AND player = "bob gilder" | CREATE TABLE INST, Here is a database schema( table schema); | What is the place when the player is Bob Gilder and the money was $20903?It is not neccessary to use all the tables. |
SELECT rank FROM table_name_14 WHERE team = "roma" | CREATE TABLE INST, Here is a database schema( table schema); | What Rank has a Team of roma?It is not neccessary to use all the tables. |
SELECT COUNT("Result") FROM table_19772 WHERE "Date" = 'October 25, 1964' | CREATE TABLE INST, Here is a database schema( table schema); | how many result with date being october 25, 1964It is not neccessary to use all the tables. |
SELECT batsmen FROM table_name_76 WHERE location = "the brit oval" | CREATE TABLE INST, Here is a database schema( table schema); | Who was the batsmen at the Brit Oval location?It is not neccessary to use all the tables. |
SELECT MAX Goals FROM table WHERE Rank > 3 AND Goal Ratio = 0.54 | CREATE TABLE INST, Here is a database schema( table schema); | What is the largest value for goals in rank over 3 with goal ration of 0.54?.It is not neccessary to use all the tables. |
SELECT "Tournament" FROM table_42635 WHERE "Runner(s)-up" = 'scott hoch & kenny perry' | CREATE TABLE INST, Here is a database schema( table schema); | What tournament had a runner(s)-up of Scott Hoch & Kenny Perry?It is not neccessary to use all the tables. |
SELECT Date FROM table WHERE Clock = 0.8-1.6ghz | CREATE TABLE INST, Here is a database schema( table schema); | Which date has a Clock of 0.8-1.6ghz?.It is not neccessary to use all the tables. |
SELECT DISTINCT allergy FROM Allergy_type WHERE allergytype = "food" | CREATE TABLE INST, Here is a database schema( table schema); | Show all allergies with type food.It is not neccessary to use all the tables. |
SELECT Partial thromboplastin time FROM table WHERE Condition = Factor X deficiency as seen in amyloid purpura | CREATE TABLE INST, Here is a database schema( table schema); | What is the partial thromboplastin time when the condition factor x deficiency as seen in amyloid purpura?.It is not neccessary to use all the tables. |
SELECT place FROM table_name_51 WHERE score > 68 AND player = "camilo villegas" | CREATE TABLE INST, Here is a database schema( table schema); | What place has a score greater than 68, and camilo villegas as the player?It is not neccessary to use all the tables. |
SELECT MIN(played) FROM table_name_58 WHERE position > 6 AND goals_against = 61 AND lost < 16 | CREATE TABLE INST, Here is a database schema( table schema); | What is the lowest played that has a position greater than 6 61 as the goals against with a loss less than 16?It is not neccessary to use all the tables. |
SELECT number_s_ FROM table_name_50 WHERE quantity = "24" | CREATE TABLE INST, Here is a database schema( table schema); | What number corresponds to the quantity of 24?It is not neccessary to use all the tables. |
SELECT june_10_11 FROM table_25355392_2 WHERE august_21_22 = "August 21, 2017" | CREATE TABLE INST, Here is a database schema( table schema); | What is the june 10-11 when august 21-22 is august 21 2017?It is not neccessary to use all the tables. |
SELECT DISCOVERY_TIME FROM Fires GROUP BY DISCOVERY_TIME ORDER BY count(*) DESC LIMIT 1 | CREATE TABLE INST, Here is a database schema( fires); | Which time of day has the most wildfires?. It is not neccessary to use all the tables. |
SELECT Location Attendance FROM table WHERE Date = October 12 | CREATE TABLE INST, Here is a database schema( table schema); | What was the location and the attendance for the game on October 12?.It is not neccessary to use all the tables. |
SELECT record FROM table_name_95 WHERE loss = "rosales (1-1)" | CREATE TABLE INST, Here is a database schema( table schema); | What was the record after the game in which Rosales (1-1) took the loss?It is not neccessary to use all the tables. |
SELECT College FROM table WHERE Pick # < 11 AND Name = von hutchins | CREATE TABLE INST, Here is a database schema( table schema); | Pick # smaller than 11, and a Name of von hutchins belongs to what college?.It is not neccessary to use all the tables. |
SELECT record FROM table_name_75 WHERE attendance = "19,823" | CREATE TABLE INST, Here is a database schema( table schema); | What was the Indians record during the game that had 19823 fans attending?It is not neccessary to use all the tables. |
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE diagnoses.short_title = "Hypertension NOS" AND prescriptions.route = "IV" | CREATE TABLE INST, Here is a database schema( table schema); | how many patients whose diagnoses short title is hypertension nos and drug route is iv?It is not neccessary to use all the tables. |
SELECT ACC_Road, School_ID FROM basketball_match GROUP BY ACC_Home, ACC_Road | CREATE TABLE INST, Here is a database schema( table schema); | Visualize a bar chart about the distribution of ACC_Road and School_ID , and group by attribute ACC_Home.It is not neccessary to use all the tables. |
SELECT AVG Points FROM table WHERE Played < 30 | CREATE TABLE INST, Here is a database schema( table schema); | What is the average points with less than 30 played?.It is not neccessary to use all the tables. |
SELECT Score FROM table WHERE Record = 35-28-6 | CREATE TABLE INST, Here is a database schema( table schema); | What Score has a Record of 35-28-6?.It is not neccessary to use all the tables. |
SELECT Date FROM table WHERE Record = 1-0 | CREATE TABLE INST, Here is a database schema( table schema); | Name the date with the record of 1-0.It is not neccessary to use all the tables. |
SELECT class FROM table_name_23 WHERE race = "the dodge dealers grand prix" | CREATE TABLE INST, Here is a database schema( table schema); | What class is the dodge dealers grand prix?It is not neccessary to use all the tables. |
SELECT Class AA FROM table WHERE Class AAA = giddings AND School Year = 2009-10 | CREATE TABLE INST, Here is a database schema( table schema); | What is the Class AA of the school year 2009-10 with a class AAA of Giddings?.It is not neccessary to use all the tables. |
SELECT Location/Attendance FROM table WHERE High rebounds = lennox (7) | CREATE TABLE INST, Here is a database schema( table schema); | Which Location/Attendance has High rebounds of lennox (7)?.It is not neccessary to use all the tables. |
SELECT Season FROM table WHERE Lead = don bartlett AND Third = don walchuk AND Second = carter rycroft | CREATE TABLE INST, Here is a database schema( table schema); | What is the Season when the Lead was don bartlett, and the third was don walchuk, and a Second of carter rycroft?.It is not neccessary to use all the tables. |
SELECT notes FROM table_name_41 WHERE competition = "all-africa games" AND year < 2007 | CREATE TABLE INST, Here is a database schema( table schema); | What were the notes of the All-Africa Games before 2007?It is not neccessary to use all the tables. |
SELECT MAX("Events") FROM table_35858 WHERE "Cuts made" > '6' AND "Top-25" > '30' | CREATE TABLE INST, Here is a database schema( table schema); | Name the most events with cuts made more than 6 and top 25 more than 30It is not neccessary to use all the tables. |
SELECT COUNT Written by FROM table WHERE Directed by = James Quinn | CREATE TABLE INST, Here is a database schema( table schema); | How many episodes were directed by james quinn?.It is not neccessary to use all the tables. |
SELECT MIN Crowd FROM table WHERE Away team score = 16.14 (110) | CREATE TABLE INST, Here is a database schema( table schema); | What is the smallest crowd for the away team score of 16.14 (110)?.It is not neccessary to use all the tables. |
SELECT MAX Displacement (cc) FROM table WHERE Model = r fwd auto phase1 | CREATE TABLE INST, Here is a database schema( table schema); | What is the highest displacement value for the R Fwd Auto Phase1?.It is not neccessary to use all the tables. |
SELECT F. Goals FROM table WHERE Tries = 0 0 AND Games = 05 5 | CREATE TABLE INST, Here is a database schema( table schema); | Name the F. Goals with tries of 0 0 and games of 05 5.It is not neccessary to use all the tables. |
SELECT incumbent FROM table_name_16 WHERE district = "20th" | CREATE TABLE INST, Here is a database schema( table schema); | Who was the incumbent in the 20th district?It is not neccessary to use all the tables. |
SELECT opponents_in_the_final FROM table_name_67 WHERE partner = "jiří novák" | CREATE TABLE INST, Here is a database schema( table schema); | What is Opponents In The Final when Partner is "Jiří Novák"?It is not neccessary to use all the tables. |
SELECT grid FROM table_name_57 WHERE time_retired = "hydraulics" | CREATE TABLE INST, Here is a database schema( table schema); | What was the Grid with a hydraulics time/required?It is not neccessary to use all the tables. |
SELECT Description FROM table WHERE Livery = black AND Date < 1897 AND Number & name = scottish tar distillers no. 78 | CREATE TABLE INST, Here is a database schema( table schema); | What's the Description for Scottish Tar Distillers No. 78, that's Livery is black, and a date prior to 1897?.It is not neccessary to use all the tables. |
SELECT SUM(wins) FROM table_name_26 WHERE teams = "chiefs" AND losses > 1 | CREATE TABLE INST, Here is a database schema( table schema); | How many wins have more than 1 loss and a team of chiefs?It is not neccessary to use all the tables. |
SELECT directed_by FROM table_23399481_2 WHERE us_viewers__in_millions_ = "2.05" | CREATE TABLE INST, Here is a database schema( table schema); | If the amount of U.S. viewers is 2.05 milliom who was the episode directed by?It is not neccessary to use all the tables. |
SELECT Copa CONMEBOL 1999 FROM table WHERE Copa Libertadores 1999 = did not qualify AND Team = cruzeiro | CREATE TABLE INST, Here is a database schema( table schema); | What is the Copa Conmebol 1999 result of team cruzeiro, which did not qualify for the Copa Libertadores 1999?.It is not neccessary to use all the tables. |
SELECT team FROM table_name_54 WHERE inn = "9th" | CREATE TABLE INST, Here is a database schema( table schema); | What team had the record asscoiated with the 9th inning?It is not neccessary to use all the tables. |
SELECT COUNT(car) FROM table_name_86 WHERE long = "2" | CREATE TABLE INST, Here is a database schema( table schema); | How many carries for the player with a 2 yard long?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.