sql
stringlengths 9
2.37k
| table
stringclasses 9
values | query
stringlengths 51
503
|
---|---|---|
SELECT DISTINCT course_offering.end_time, course_offering.start_time, semester.semester, semester.year FROM course, course_offering, semester WHERE course_offering.start_time < '12:00:00' AND course_offering.start_time >= '08:00:00' AND course.course_id = course_offering.course_id AND course.department = 'PERSIAN' AND course.number = 404 AND semester.semester = 'WN' AND semester.semester_id = course_offering.semester AND semester.year = 2016 | CREATE TABLE INST, Here is a database schema( table schema); | Which morning classes does PERSIAN 404 have ?It is not neccessary to use all the tables. |
SELECT T2.title, T1.stars, T2.director, MAX(T1.stars) FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE director <> "null" GROUP BY director | CREATE TABLE INST, Here is a database schema( table schema); | For each director return the director's name together with the title of the movie they directed that received the highest rating among all of their movies and the value of that rating. Ignore movies whose director is NULL.It is not neccessary to use all the tables. |
SELECT Party FROM table WHERE Incumbent = Mathias Morris | CREATE TABLE INST, Here is a database schema( table schema); | Which party does the incumbent Mathias Morris belong to?.It is not neccessary to use all the tables. |
SELECT example FROM table_30011_2 WHERE equivalent = "NTE160" | CREATE TABLE INST, Here is a database schema( table schema); | What is every example for the equivalent of NTE160?It is not neccessary to use all the tables. |
SELECT Points FROM table WHERE Rank > 1 AND Places = 33 | CREATE TABLE INST, Here is a database schema( table schema); | what is the points when the rank is more than 1 and the places is 33?.It is not neccessary to use all the tables. |
SELECT winner FROM table_name_50 WHERE prize = "£200,000" | CREATE TABLE INST, Here is a database schema( table schema); | Who is the winner of the prize of £200000 as listed?It is not neccessary to use all the tables. |
SELECT AVG Losses FROM table WHERE Goals against > 51 AND Wins > 14 | CREATE TABLE INST, Here is a database schema( table schema); | What is the average loss with a goal higher than 51 and wins higher than 14?.It is not neccessary to use all the tables. |
SELECT Race Winner FROM table WHERE Location = monza | CREATE TABLE INST, Here is a database schema( table schema); | Who was the winner of the race in monza?.It is not neccessary to use all the tables. |
SELECT MAX December FROM table WHERE Record = 21–7–2 AND Game > 30 | CREATE TABLE INST, Here is a database schema( table schema); | Which December has a Record of 21–7–2, and a Game larger than 30?.It is not neccessary to use all the tables. |
SELECT COUNT(name) FROM table_25401874_1 WHERE points = 50 | CREATE TABLE INST, Here is a database schema( table schema); | How many names are listed for the player with 50 points?It is not neccessary to use all the tables. |
SELECT against FROM table_name_19 WHERE round = "2r" AND surface = "clay" | CREATE TABLE INST, Here is a database schema( table schema); | Who was the match against when on a clay surface during round 2r?It is not neccessary to use all the tables. |
SELECT COUNT(party) FROM table_1341865_20 WHERE district = "Louisiana 5" | CREATE TABLE INST, Here is a database schema( table schema); | How many parties won the election in the Louisiana 5 district?It is not neccessary to use all the tables. |
SELECT "Record" FROM table_43762 WHERE "Score" = '76-85' | CREATE TABLE INST, Here is a database schema( table schema); | For the game that was 76-85, what was the record?It is not neccessary to use all the tables. |
SELECT MAX(keynote_version) FROM table_name_18 WHERE numbers_version = "2.3" AND pages_version > 4.3 | CREATE TABLE INST, Here is a database schema( table schema); | What's the latest keynote version of version 2.3 of numbers with pages greater than 4.3?It is not neccessary to use all the tables. |
SELECT MAX Draws FROM table WHERE Goals against > 33 AND Losses = 13 AND Goals for < 51 | CREATE TABLE INST, Here is a database schema( table schema); | What is the most draws when goals against are more than 33, losses are 13 and goals for is less than 51?.It is not neccessary to use all the tables. |
SELECT production_code FROM table_28348757_3 WHERE _number = 8 | CREATE TABLE INST, Here is a database schema( table schema); | Name the production code for number 8It is not neccessary to use all the tables. |
SELECT Player FROM table WHERE Score = 68 | CREATE TABLE INST, Here is a database schema( table schema); | Who scored a 68?.It is not neccessary to use all the tables. |
SELECT Competition FROM table WHERE Date = 6/7/03 | CREATE TABLE INST, Here is a database schema( table schema); | What competition was held on the date 6/7/03.It is not neccessary to use all the tables. |
SELECT Progressive ticket FROM table WHERE Democratic ticket = john t. norton | CREATE TABLE INST, Here is a database schema( table schema); | Who was on the Progressive ticket when John T. Norton was on the Democratic ticket?.It is not neccessary to use all the tables. |
SELECT language FROM table_name_3 WHERE television_service = "telemarket for you" | CREATE TABLE INST, Here is a database schema( table schema); | What language is telemarket for you?It is not neccessary to use all the tables. |
SELECT Circuit FROM table WHERE Length = 45 minutes AND Date = august 6 | CREATE TABLE INST, Here is a database schema( table schema); | Which circuit has a length of 45 minutes and is held on August 6?.It is not neccessary to use all the tables. |
SELECT Home team FROM table WHERE Home team score = 12.15 (87) | CREATE TABLE INST, Here is a database schema( table schema); | Which home team scored 12.15 (87)?.It is not neccessary to use all the tables. |
SELECT opponent FROM table_name_49 WHERE attendance = "74,246" | CREATE TABLE INST, Here is a database schema( table schema); | What Opponent has an Attendance of 74246?It is not neccessary to use all the tables. |
SELECT SUM(attendance) FROM table_name_51 WHERE opponent = "dallas cowboys" AND week > 5 | CREATE TABLE INST, Here is a database schema( table schema); | What is the Attendance with Opponent Dallas Cowboys in a Week greater than 5?It is not neccessary to use all the tables. |
SELECT netflix FROM table_name_47 WHERE series_ep = "1-01" | CREATE TABLE INST, Here is a database schema( table schema); | What is the Netflix number having a series episode of 1-01?It is not neccessary to use all the tables. |
SELECT label FROM table_name_47 WHERE date = "1988" AND catalog = "54513" | CREATE TABLE INST, Here is a database schema( table schema); | Which label had a catalog of 54513 in 1988?It is not neccessary to use all the tables. |
SELECT catalog FROM table_name_47 WHERE region = "germany" | CREATE TABLE INST, Here is a database schema( table schema); | What Catalog was released in Germany?It is not neccessary to use all the tables. |
SELECT QB Rating FROM table WHERE Comp % = 62.0 | CREATE TABLE INST, Here is a database schema( table schema); | What is the Quarterback rating of the player who got a comp percentage of 62.0?.It is not neccessary to use all the tables. |
SELECT opponenent FROM table_name_70 WHERE result = "2-2 (draw)" | CREATE TABLE INST, Here is a database schema( table schema); | Who was the opponent when the result was 2-2 (draw)?It is not neccessary to use all the tables. |
SELECT player FROM table_name_97 WHERE college = "alabama" | CREATE TABLE INST, Here is a database schema( table schema); | Which player is from the College of Alabama?It is not neccessary to use all the tables. |
SELECT entrant FROM table_name_76 WHERE year = 1967 | CREATE TABLE INST, Here is a database schema( table schema); | What is the entrant for 1967?It is not neccessary to use all the tables. |
SELECT Date successor seated FROM table WHERE District = Massachusetts 20th | CREATE TABLE INST, Here is a database schema( table schema); | The successor for the Massachusetts 20th district was seated on what date?.It is not neccessary to use all the tables. |
SELECT Artist FROM table WHERE Record label = vertigo | CREATE TABLE INST, Here is a database schema( table schema); | Which Artist has a Record label of vertigo?.It is not neccessary to use all the tables. |
SELECT Result FROM table WHERE Attendance > 22,057 AND Week > 5 | CREATE TABLE INST, Here is a database schema( table schema); | After Week 5, what was the Result of the game with Attendance greater than 22,057?.It is not neccessary to use all the tables. |
SELECT MIN(indoor) FROM table_19534874_2 WHERE inspection = 5 | CREATE TABLE INST, Here is a database schema( table schema); | What are the minimum indoor results that have a 5 for inspection?It is not neccessary to use all the tables. |
SELECT record FROM table_name_55 WHERE date = "december 5, 2007" | CREATE TABLE INST, Here is a database schema( table schema); | What is the record of the game on December 5 2007?It is not neccessary to use all the tables. |
SELECT Exists? FROM table WHERE Airdate = 20 december 1965 | CREATE TABLE INST, Here is a database schema( table schema); | What shows for Exists when the airdate was 20 december 1965?.It is not neccessary to use all the tables. |
SELECT Constituency FROM table WHERE Winning party 2003 = conservative | CREATE TABLE INST, Here is a database schema( table schema); | Which constituency had the conservative party win in 2003?.It is not neccessary to use all the tables. |
SELECT MAX(overall) FROM table_name_62 WHERE position = "guard" AND college = "rice" | CREATE TABLE INST, Here is a database schema( table schema); | What is the College of Rice's highest overall for the guard position?It is not neccessary to use all the tables. |
SELECT SUM(october) FROM table_name_19 WHERE opponent = "pittsburgh penguins" | CREATE TABLE INST, Here is a database schema( table schema); | What is the sum of October when Opponent is "Pittsburgh Penguins"?It is not neccessary to use all the tables. |
SELECT years FROM table_name_51 WHERE playoffs = 115 | CREATE TABLE INST, Here is a database schema( table schema); | what is the years when playoffs is 115?It is not neccessary to use all the tables. |
SELECT Crew Chief FROM table WHERE Listed Owner(s) = Wayne Day | CREATE TABLE INST, Here is a database schema( table schema); | Who is Wayne Day's crew chief?.It is not neccessary to use all the tables. |
SELECT High assists FROM table WHERE Date = January 8 | CREATE TABLE INST, Here is a database schema( table schema); | Who had the high assist total on january 8?.It is not neccessary to use all the tables. |
SELECT MIN("Year") FROM table_55462 WHERE "College/Country" = 'baylor' | CREATE TABLE INST, Here is a database schema( table schema); | What is the earliest year a Baylor player made the list?It is not neccessary to use all the tables. |
SELECT production_code FROM table_2468961_7 WHERE no_in_series = 137 | CREATE TABLE INST, Here is a database schema( table schema); | When 137 is the number in series what is the production code?It is not neccessary to use all the tables. |
SELECT firefox FROM table_name_22 WHERE internet_explorer = "21.70%" | CREATE TABLE INST, Here is a database schema( table schema); | What percentage of users were using Firefox according to the source that reported 21.70% used Internet Explorer?It is not neccessary to use all the tables. |
SELECT COUNT(results) FROM table_27561503_2 WHERE sports_20_winning_team = "#23 Lotus" | CREATE TABLE INST, Here is a database schema( table schema); | Name the results for #23 lotusIt is not neccessary to use all the tables. |
SELECT P1 diameter (mm) FROM table WHERE Chambering = .300 Lapua Magnum | CREATE TABLE INST, Here is a database schema( table schema); | What is the p1 diameter (mm) when .300 lapua magnum is the chambering?.It is not neccessary to use all the tables. |
SELECT Since FROM table WHERE Transfer fee = £ 75k | CREATE TABLE INST, Here is a database schema( table schema); | What the since year of the player with a transfer fee of £ 75k?.It is not neccessary to use all the tables. |
SELECT try_bonus FROM table_13564702_3 WHERE club = "Kenfig Hill RFC" | CREATE TABLE INST, Here is a database schema( table schema); | Name the try bonus for kenfig hill rfcIt is not neccessary to use all the tables. |
SELECT control FROM table_2076516_1 WHERE school = "Western Carolina University" | CREATE TABLE INST, Here is a database schema( table schema); | When western carolina university is the school what is the control?It is not neccessary to use all the tables. |
SELECT MAX("Total") FROM table_30671 WHERE "Couple" = 'Aylar & Egor' AND "Karianne Gulliksen" = '8' | CREATE TABLE INST, Here is a database schema( table schema); | What is the greatest total score received by aylar & egor when karianne Gulliksen gave an 8?It is not neccessary to use all the tables. |
SELECT AVG Grid FROM table WHERE Rider = loic napoleone | CREATE TABLE INST, Here is a database schema( table schema); | Which Grid has a Rider of loic napoleone?.It is not neccessary to use all the tables. |
SELECT Against FROM table WHERE Losses = 14 | CREATE TABLE INST, Here is a database schema( table schema); | Which against has 14 losses?.It is not neccessary to use all the tables. |
SELECT MIN("2009") FROM table_53212 WHERE "2010" = '141' AND "1985" > '165' | CREATE TABLE INST, Here is a database schema( table schema); | What is the lowest 2009 value with a 2010 value of 141 and a 1985 value bigger than 165?It is not neccessary to use all the tables. |
SELECT MAX Year FROM table WHERE Chassis = emeryson 1006 AND Points > 0 | CREATE TABLE INST, Here is a database schema( table schema); | What is the latest year for a Emeryson 1006 chassis with more than 0 points?.It is not neccessary to use all the tables. |
SELECT AVG(cups) FROM table_name_9 WHERE other > 3 AND league > 3 AND player = "lauri dalla valle" AND total > 21 | CREATE TABLE INST, Here is a database schema( table schema); | What is the number of cups when the other was more than 3 the league more than 3 for Lauri Dalla Valle and a Total more than 21?It is not neccessary to use all the tables. |
SELECT Talent (Male) FROM table WHERE Year = 1991 | CREATE TABLE INST, Here is a database schema( table schema); | Who is the male talent in 1991?.It is not neccessary to use all the tables. |
SELECT COUNT(round) FROM table_name_53 WHERE time = "n/a" AND location = "alabama , united states" AND record = "1-2-0" | CREATE TABLE INST, Here is a database schema( table schema); | What is the total number of Round(s) when Time is "N/A" when Location is "Alabama United States" and when Record is "1-2-0"?It is not neccessary to use all the tables. |
SELECT position FROM table_name_68 WHERE competition = "olympic games" AND year = 2008 | CREATE TABLE INST, Here is a database schema( table schema); | What was the position of the Olympic Games in the year 2008?It is not neccessary to use all the tables. |
SELECT COUNT(Neu) - vehlefanz FROM table_11680175_1 WHERE schwante = "2.043" | CREATE TABLE INST, Here is a database schema( table schema); | How many times did Neu-Vehlefanz occur when Schwante had 2.043?It is not neccessary to use all the tables. |
SELECT AVG Total FROM table WHERE Gold = 0 AND Rank < 16 AND Nation = georgia AND Bronze > 2 | CREATE TABLE INST, Here is a database schema( table schema); | What is the average Total that has a Gold of 0, when the rank is less than 16, the nation is Georgia and there is more than 2 for Bronze?.It is not neccessary to use all the tables. |
SELECT Weight FROM table WHERE Club = vk primorac kotor | CREATE TABLE INST, Here is a database schema( table schema); | What is the weight of the player from the vk primorac kotor club?.It is not neccessary to use all the tables. |
SELECT athlete FROM table_name_50 WHERE nationality = "united states" AND wind = "1.7" | CREATE TABLE INST, Here is a database schema( table schema); | Who's the athlete with a wind of 1.7 and from the United States?It is not neccessary to use all the tables. |
SELECT Almaty , Kazakhstan FROM table WHERE Sergey Filimonov ( KAZ ) = 210kg | CREATE TABLE INST, Here is a database schema( table schema); | What is the Almaty, Kazakhstan when Sergey Filimonov ( KAZ ) is 210kg?.It is not neccessary to use all the tables. |
SELECT Country FROM table WHERE Change (2011 to 2012) = -0.1% | CREATE TABLE INST, Here is a database schema( table schema); | When the change (2011 to 2012) is -0.1% what is the country?.It is not neccessary to use all the tables. |
SELECT captain FROM table_name_57 WHERE runner_up = "tanunda" AND year > 1939 | CREATE TABLE INST, Here is a database schema( table schema); | When the year is later than 1939 and the Runner-up is Tanunda who is the Captain?It is not neccessary to use all the tables. |
SELECT builder FROM table_name_93 WHERE completed > 1889 | CREATE TABLE INST, Here is a database schema( table schema); | Which builder completed after 1889?It is not neccessary to use all the tables. |
SELECT Best FROM table WHERE Qual 1 = 1:01.043 | CREATE TABLE INST, Here is a database schema( table schema); | What is the best time of the team that had a qualifying 1 time of 1:01.043?.It is not neccessary to use all the tables. |
SELECT COUNT Settlement FROM table WHERE Cyrillic Name Other Names = Његошево | CREATE TABLE INST, Here is a database schema( table schema); | How many places have as their cyrillic name and other names његошево?.It is not neccessary to use all the tables. |
SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS "#", Id AS "user_link", Reputation, Location, LastAccessDate, UpVotes, DownVotes FROM Users WHERE (LOWER(Location) LIKE '%cagliari%' OR LOWER(Location) LIKE '%cagliari%') AND NOT (LOWER(Location) LIKE '%mit%') AND LENGTH(Location) > 1 LIMIT 100 | CREATE TABLE INST, Here is a database schema( table schema); | User List: Top N - Italy - with false positive exclusions.It is not neccessary to use all the tables. |
SELECT MIN(grade) FROM Highschooler WHERE NOT id IN (SELECT T1.student_id FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id) | CREATE TABLE INST, Here is a database schema( table schema); | Find the minimum grade of students who have no friends.It is not neccessary to use all the tables. |
SELECT communist_ticket FROM table_name_49 WHERE american_labor_ticket = "joseph v. o'leary" | CREATE TABLE INST, Here is a database schema( table schema); | Who's the Communist ticket with an American Labor ticket of joseph v. o'leary?It is not neccessary to use all the tables. |
SELECT score FROM table_name_92 WHERE opponents_in_the_final = "john bromwich frank sedgman" | CREATE TABLE INST, Here is a database schema( table schema); | Which Score has Opponents in the final of john bromwich frank sedgman?It is not neccessary to use all the tables. |
SELECT Call sign FROM table WHERE City of license = higgston, ga | CREATE TABLE INST, Here is a database schema( table schema); | What Call sign has a City of license of higgston, ga?.It is not neccessary to use all the tables. |
SELECT "Description" FROM table_15851 WHERE "Aircraft" = 'CH-47D Chinook' | CREATE TABLE INST, Here is a database schema( table schema); | What if the description of a ch-47d chinook?It is not neccessary to use all the tables. |
SELECT frequency FROM table_name_71 WHERE facility_id = 13598 | CREATE TABLE INST, Here is a database schema( table schema); | Which Frequency has a Facility ID of 13598?It is not neccessary to use all the tables. |
SELECT replaced_by FROM table_name_44 WHERE team = "arminia bielefeld" | CREATE TABLE INST, Here is a database schema( table schema); | Who replaced the manager of team arminia bielefeld?It is not neccessary to use all the tables. |
SELECT Winner FROM table WHERE Mountains classification = Oscar Solis AND Team classification = EPM-UNE | CREATE TABLE INST, Here is a database schema( table schema); | Who were the winners if the Mountain Classification award was given to Oscar Solis and Team Classification was given to EPM-Une?.It is not neccessary to use all the tables. |
SELECT MAX(goals) FROM table_name_4 WHERE points = 13 AND assists = 10 AND club = "eisbären berlin" | CREATE TABLE INST, Here is a database schema( table schema); | What is the highest number of goals Eisbären Berlin had along with 13 points and 10 assists?It is not neccessary to use all the tables. |
SELECT tv_series FROM table_name_33 WHERE species = "boar" | CREATE TABLE INST, Here is a database schema( table schema); | What show has a boar?It is not neccessary to use all the tables. |
SELECT Name FROM table WHERE Overs < 2047.3 AND Wickets > 200 AND Average > 29.02 | CREATE TABLE INST, Here is a database schema( table schema); | Who has fewer than 2047.3 overs, more than 200 wickets and an average of 29.02?.It is not neccessary to use all the tables. |
SELECT Home team FROM table WHERE Tie no = 9 | CREATE TABLE INST, Here is a database schema( table schema); | Who is the home team with tie number 9?.It is not neccessary to use all the tables. |
SELECT tickets_sold___available FROM table_name_18 WHERE venue = "long beach arena" | CREATE TABLE INST, Here is a database schema( table schema); | What is the number of tickets sold and available for the concert at Long Beach Arena?It is not neccessary to use all the tables. |
SELECT surface FROM table_name_82 WHERE score = "w/o" | CREATE TABLE INST, Here is a database schema( table schema); | On which surface was the score w/o?It is not neccessary to use all the tables. |
SELECT COUNT(last_title) FROM table_name_79 WHERE wins < 71 AND first_title > 1968 AND country = "fiji" | CREATE TABLE INST, Here is a database schema( table schema); | What is the total of Last title that has Wins smaller than 71 and a First title larger than 1968 and a Country of fiji?It is not neccessary to use all the tables. |
SELECT name FROM table_name_37 WHERE laid_down = "28 february 1943" | CREATE TABLE INST, Here is a database schema( table schema); | what is the name when the laid down is 28 february 1943?It is not neccessary to use all the tables. |
SELECT Manufacturer FROM table WHERE Order Year = 2011 | CREATE TABLE INST, Here is a database schema( table schema); | Name the manufacturer for 2011.It is not neccessary to use all the tables. |
SELECT result FROM table_name_14 WHERE week = 7 | CREATE TABLE INST, Here is a database schema( table schema); | Name the result for week 7It is not neccessary to use all the tables. |
SELECT COUNT(*) FROM STUDENT | CREATE TABLE INST, Here is a database schema( table schema); | Find the number of students in total.It is not neccessary to use all the tables. |
SELECT opponent FROM table_name_78 WHERE date = "july 8" AND score = "8-12" | CREATE TABLE INST, Here is a database schema( table schema); | When the date is July 8 and the score is 8-12 who is the opponent?It is not neccessary to use all the tables. |
SELECT SUM Track FROM table WHERE Catalogue = epa 4054 AND Time = 2:05 | CREATE TABLE INST, Here is a database schema( table schema); | What is the sum of every track with a catalogue of EPA 4054 with a 2:05 length?.It is not neccessary to use all the tables. |
SELECT verb_meaning FROM table_1745843_2 WHERE part_3 = "*bundun" | CREATE TABLE INST, Here is a database schema( table schema); | What is the verb meaning for *bundun?It is not neccessary to use all the tables. |
SELECT MAX Silver FROM table WHERE Total = 57 AND Bronze > 20 | CREATE TABLE INST, Here is a database schema( table schema); | What is the highest silver that has 57 as the total, with a bronze greater than 20?.It is not neccessary to use all the tables. |
SELECT gdp_2012_millions_of_euro FROM table_name_51 WHERE population_in_millions < 1.3 AND gdp__nominal__per_capita_2012_euro = "20,700(p)" | CREATE TABLE INST, Here is a database schema( table schema); | What is GDP 2012 Millions of Euro when Population in Millions is less than 1.3 and when GDP (Nominal) Per Capita 2012 Euro is 20700(p)?It is not neccessary to use all the tables. |
SELECT location FROM table_name_67 WHERE competition = "group stage" AND lineup = "start" AND date = "2000-09-17" | CREATE TABLE INST, Here is a database schema( table schema); | Which Location has a Competition of Group Stage a Lineup of Start and a Date of 2000-09-17?It is not neccessary to use all the tables. |
SELECT Charleston Southerns Head Coach FROM table WHERE Result = L, 56-6 | CREATE TABLE INST, Here is a database schema( table schema); | Who is Charleston Southerns head coach where the result is L, 56-6?-.It is not neccessary to use all the tables. |
SELECT Home team score FROM table WHERE Venue = lake oval | CREATE TABLE INST, Here is a database schema( table schema); | What is the Home team score for the Lake Oval Venue?.It is not neccessary to use all the tables. |
SELECT DISTINCT t1.product_name FROM products AS t1 JOIN complaints AS t2 ON t1.product_id = t2.product_id JOIN customers AS t3 GROUP BY t3.customer_id ORDER BY COUNT(*) LIMIT 1 | CREATE TABLE INST, Here is a database schema( table schema); | Which products has been complained by the customer who has filed least amount of complaints?It is not neccessary to use all the tables. |
SELECT MIN Joined FROM table WHERE City = college park AND Conference championships < 0 | CREATE TABLE INST, Here is a database schema( table schema); | What is the lowest year joined in the city of College Park at the Conference championships smaller than 0?.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.