sql stringlengths 9 2.37k | table stringclasses 9
values | query stringlengths 51 503 |
|---|---|---|
SELECT MAX(goals_for) FROM table_name_18 WHERE ties > 0 | CREATE TABLE INST, Here is a database schema( table schema); | What is the largest Goals For by a team that has more than 0 ties?It is not neccessary to use all the tables. |
SELECT Opponent FROM table WHERE Time = 1:22 | CREATE TABLE INST, Here is a database schema( table schema); | Who was the opponent in the match that lasted 1:22?.It is not neccessary to use all the tables. |
SELECT Date (dd.mm.yyyy) FROM table WHERE Soviet Unit = 73 giap AND Enemy Aircraft = bf.109g-? w.nr.? | CREATE TABLE INST, Here is a database schema( table schema); | What was the date of the victory when the Soviet Unit was 73 giap, and the Enemy Aircraft was bf.109g-? w.nr.?.It is not neccessary to use all the tables. |
SELECT Constructor FROM table WHERE Grid < 3 AND Time/Retired = 1:34:31.522 | CREATE TABLE INST, Here is a database schema( table schema); | Which constructor had a grid number of less than 3 and where the Time/Retired was 1:34:31.522?.It is not neccessary to use all the tables. |
SELECT winners FROM table_name_86 WHERE runners_up = "chemnitzer fc ii" | CREATE TABLE INST, Here is a database schema( table schema); | Who was the winner when the runner-up was Chemnitzer FC II?It is not neccessary to use all the tables. |
SELECT "11:00 am" FROM table_59916 WHERE "4:00 pm" = 'power rangers: turbo' | CREATE TABLE INST, Here is a database schema( table schema); | What is on at 11:00AM that shows Power Rangers: Turbo at 4:00pm?It is not neccessary to use all the tables. |
SELECT SUM(founded) FROM table_name_68 WHERE club = "tri-city storm" AND titles > 1 | CREATE TABLE INST, Here is a database schema( table schema); | Which Founded has a Club of tri-city storm and a Titles larger than 1?It is not neccessary to use all the tables. |
SELECT 2007 FROM table_name_91 WHERE 2010 = "2r" AND tournament = "us open" | CREATE TABLE INST, Here is a database schema( table schema); | What is the 2007 result when the 2010 result was 2r at the US Open?It is not neccessary to use all the tables. |
SELECT date_of_completion, COUNT(date_of_completion) FROM Student_Course_Enrolment AS T1 JOIN Student_Tests_Taken AS T2 ON T1.registration_id = T2.registration_id WHERE T2.test_result = "Fail" ORDER BY COUNT(date_of_completion) | CREATE TABLE INST, Here is a database schema( table schema); | A bar chart for what are the number of the completion dates of all the tests that have result 'Fail'?, and I want to sort in ascending by the y-axis.It is not neccessary to use all the tables. |
SELECT Rowers FROM table WHERE Country = australia | CREATE TABLE INST, Here is a database schema( table schema); | Who are the rowers for Australia?.It is not neccessary to use all the tables. |
SELECT Public Debt % of GDP (2013 Q1) FROM table WHERE GDP % of EU (2012) = 4.7% | CREATE TABLE INST, Here is a database schema( table schema); | What is the public debt % of GDP in 2013 Q1 with a 4.7% GDP of EU in 2012?.It is not neccessary to use all the tables. |
SELECT MAX Yes FROM table WHERE Yes (%) = 95.17 | CREATE TABLE INST, Here is a database schema( table schema); | How many people voted yes when the percentage of yeses was 95.17?.It is not neccessary to use all the tables. |
SELECT Hometown/School FROM table WHERE Team = cleveland indians | CREATE TABLE INST, Here is a database schema( table schema); | Which Hometown/School has a Team of cleveland indians?.It is not neccessary to use all the tables. |
SELECT score FROM table_name_41 WHERE visitor = "philadelphia" AND date = "december 1" | CREATE TABLE INST, Here is a database schema( table schema); | What's the score on December 1 when Philadelphia visited?It is not neccessary to use all the tables. |
SELECT Winning score FROM table WHERE Date = may 29, 1977 | CREATE TABLE INST, Here is a database schema( table schema); | What was the Winning Score on May 29, 1977?.It is not neccessary to use all the tables. |
SELECT position FROM table_name_5 WHERE school = "villa park high school" | CREATE TABLE INST, Here is a database schema( table schema); | What position for the player from villa park high school?It is not neccessary to use all the tables. |
SELECT Player FROM table WHERE College/junior/club team = Deerfield Academy (Massachusetts) | CREATE TABLE INST, Here is a database schema( table schema); | Which player belongs to deerfield academy (Massachusetts) college/junior/club team?.It is not neccessary to use all the tables. |
SELECT COUNT Hosted FROM table WHERE Highest = 42659 | CREATE TABLE INST, Here is a database schema( table schema); | How many values of hosted have a highest value of 42659?.It is not neccessary to use all the tables. |
SELECT Time FROM table WHERE Year = 1984 | CREATE TABLE INST, Here is a database schema( table schema); | What Time has a Year of 1984?.It is not neccessary to use all the tables. |
SELECT T2.order_id, T2.order_status FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T1.customer_name = "Jeramie" | CREATE TABLE INST, Here is a database schema( table schema); | Give me a list of id and status of orders which belong to the customer named "Jeramie".It is not neccessary to use all the tables. |
SELECT Score FROM table WHERE Date = January 2 | CREATE TABLE INST, Here is a database schema( table schema); | What is every score when the date is January 2?.It is not neccessary to use all the tables. |
SELECT label FROM table_name_24 WHERE region = "germany" | CREATE TABLE INST, Here is a database schema( table schema); | What label does Germany have?It is not neccessary to use all the tables. |
SELECT position FROM table_name_18 WHERE college = "washington" AND overall = 46 | CREATE TABLE INST, Here is a database schema( table schema); | Which Position has a College of washington, and an Overall of 46?It is not neccessary to use all the tables. |
SELECT MAX Revenue ($M) FROM table WHERE Operating income ($m) > 27 AND Team = hamburg AND Debt as % of value < 0 | CREATE TABLE INST, Here is a database schema( table schema); | Name the most revenue for operating income more than 27 for hamburg and debt as % of value less than 0.It is not neccessary to use all the tables. |
SELECT tournament FROM table_name_95 WHERE outcome = "runner-up" AND surface = "hard" AND score = "6–4, 6–2" | CREATE TABLE INST, Here is a database schema( table schema); | Which tournament has an Outcome of runner-up a Surface of hard and a Score of 6–4 6–2?It is not neccessary to use all the tables. |
SELECT Date FROM table WHERE Home team score = 7.13 (55) | CREATE TABLE INST, Here is a database schema( table schema); | What was the date of the game when the home team scored 7.13 (55)?.It is not neccessary to use all the tables. |
SELECT Date FROM table WHERE Away team = Fremantle | CREATE TABLE INST, Here is a database schema( table schema); | On what date did the away team Fremantle play?.It is not neccessary to use all the tables. |
SELECT AVG Played FROM table WHERE Percentage = 3.33% AND Lost < 29 | CREATE TABLE INST, Here is a database schema( table schema); | What is the average of games played with a percentage of 3.33% and less than 29 losses?.It is not neccessary to use all the tables. |
SELECT "Role" FROM table_12069 WHERE "Direction" = 'thulasidas' | CREATE TABLE INST, Here is a database schema( table schema); | Which role had thulasidas direction?It is not neccessary to use all the tables. |
SELECT COUNT(international_tourist_arrivals__2012_) FROM table_14752049_6 WHERE rank = 1 | CREATE TABLE INST, Here is a database schema( table schema); | When the 1 is the rank what is the overall amount of international tourist arrivals in 2012?It is not neccessary to use all the tables. |
SELECT SUM(played) FROM table_name_12 WHERE team = "vasco da gama" AND against < 12 | CREATE TABLE INST, Here is a database schema( table schema); | What is the sum of games Played by the Team Vasco Da Gama with fewer than 12 Against?It is not neccessary to use all the tables. |
SELECT MAX(to_par) FROM table_name_96 WHERE year_s__won = "1977" AND total > 155 | CREATE TABLE INST, Here is a database schema( table schema); | Which player who won in 1977 and scored great than 155 was the closest to par?It is not neccessary to use all the tables. |
SELECT MAX(lane) FROM table_name_48 WHERE name = "johan wissman" AND react < 0.242 | CREATE TABLE INST, Here is a database schema( table schema); | what is the highest lane number for johan wissman when the react is less than 0.242?It is not neccessary to use all the tables. |
SELECT COUNT(original_airdate) FROM table_27547668_4 WHERE written_by = "Allan Hawco" | CREATE TABLE INST, Here is a database schema( table schema); | what is the number of original airdate written by allan hawco?It is not neccessary to use all the tables. |
SELECT 2013 FROM table WHERE 2008-12 = a AND 2007 = a AND Tournament = us open | CREATE TABLE INST, Here is a database schema( table schema); | Which 2013 has a 2008-12 of A, and a 2007 of A, and a Tournament of us open?.It is not neccessary to use all the tables. |
SELECT lead FROM table_name_81 WHERE home = "lockerbie" | CREATE TABLE INST, Here is a database schema( table schema); | Who is the lead of the team from Lockerbie?It is not neccessary to use all the tables. |
SELECT Opponent FROM table WHERE Record = 0-3 | CREATE TABLE INST, Here is a database schema( table schema); | Which Opponent has a Record of 0-3?.It is not neccessary to use all the tables. |
SELECT MAX(laps) FROM table_name_63 WHERE grid > 6 AND constructor = "renault" AND time_retired = "ignition" | CREATE TABLE INST, Here is a database schema( table schema); | When renault is the constructor the grid is over 6 and the time was labeled ignition what's the largest amount of laps on record?It is not neccessary to use all the tables. |
SELECT Club FROM table WHERE Points against = 431 | CREATE TABLE INST, Here is a database schema( table schema); | What is the club had 431 points against them?.It is not neccessary to use all the tables. |
SELECT MAX Crowd FROM table WHERE Home team score = 9.17 (71) | CREATE TABLE INST, Here is a database schema( table schema); | What is the largest crowd with a Home team score of 9.17 (71)?.It is not neccessary to use all the tables. |
SELECT U.S. national average electric mix FROM table WHERE Midwest (Des Moines) = 280 g/mi (174 g/km) | CREATE TABLE INST, Here is a database schema( table schema); | What was the US national average electric mix rating for the vehicle that was rated 280 g/mi (174 g/km) in the Midwest?.It is not neccessary to use all the tables. |
SELECT title FROM table_12226390_6 WHERE no_in_season = 25 | CREATE TABLE INST, Here is a database schema( table schema); | What's the title of the episode with a season number 25?It is not neccessary to use all the tables. |
SELECT score FROM table_name_1 WHERE player = "tiger woods" | CREATE TABLE INST, Here is a database schema( table schema); | What is Tiger Woods's score?It is not neccessary to use all the tables. |
SELECT * FROM Users WHERE Id = '##UserId##' | CREATE TABLE INST, Here is a database schema( table schema); | Find people from your company. Enter a company name to search for people working at that companyIt is not neccessary to use all the tables. |
SELECT LLWS FROM table WHERE City = parsippany | CREATE TABLE INST, Here is a database schema( table schema); | Which Little League World Series took place in Parsippany?.It is not neccessary to use all the tables. |
SELECT COUNT(DISTINCT admissions.subject_id) FROM admissions WHERE admissions.hadm_id IN (SELECT icustays.hadm_id FROM icustays WHERE icustays.icustay_id IN (SELECT inputevents_cv.icustay_id FROM inputevents_cv WHERE inputevents_cv.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'cariporide cc/hr' A... | CREATE TABLE INST, Here is a database schema( table schema); | count the number of patients who have been on cariporide cc/hr intake until 3 years ago.It is not neccessary to use all the tables. |
SELECT opponent FROM table_name_46 WHERE record = "66-69" | CREATE TABLE INST, Here is a database schema( table schema); | What is the name of the opponent that has a record of 66-69?It is not neccessary to use all the tables. |
SELECT injured FROM table_name_98 WHERE killed = "29" | CREATE TABLE INST, Here is a database schema( table schema); | What was the injured entry for the row with a killed entry of 29?It is not neccessary to use all the tables. |
SELECT SUM(pick__number) FROM table_name_79 WHERE cfl_team = "edmonton eskimos" | CREATE TABLE INST, Here is a database schema( table schema); | What is the total pick numbers for the CFL team Edmonton Eskimos?It is not neccessary to use all the tables. |
SELECT rank FROM table_name_84 WHERE laps < 200 AND finish = "26" | CREATE TABLE INST, Here is a database schema( table schema); | What rank had less than 200 laps with a finish of 26?It is not neccessary to use all the tables. |
SELECT date FROM table_27700530_10 WHERE record = "18–12" | CREATE TABLE INST, Here is a database schema( table schema); | What is the date where the record was 18–12?It is not neccessary to use all the tables. |
SELECT SUM(score) FROM table_name_13 WHERE place = "t2" AND player = "justin leonard" | CREATE TABLE INST, Here is a database schema( table schema); | What is Sum of Score when Place is T2 and when Player is Justin Leonard?It is not neccessary to use all the tables. |
SELECT LOCATION, COUNT(*) FROM performance GROUP BY LOCATION | CREATE TABLE INST, Here is a database schema( table schema); | Show different locations and the number of performances at each location.It is not neccessary to use all the tables. |
SELECT played FROM table_12828723_5 WHERE club = "Tumble RFC" | CREATE TABLE INST, Here is a database schema( table schema); | What was the played with club tumble rfc?It is not neccessary to use all the tables. |
SELECT date FROM table_name_40 WHERE tournament = "memorial tournament" AND runner_s__up = "payne stewart" | CREATE TABLE INST, Here is a database schema( table schema); | Which date was the Memorial Tournament held on when Payne Stewart was runner-up?It is not neccessary to use all the tables. |
SELECT COUNT Crowd FROM table WHERE Home team = wollongong hawks | CREATE TABLE INST, Here is a database schema( table schema); | how many times is the home team wollongong hawks?.It is not neccessary to use all the tables. |
SELECT COUNT(*) FROM editor | CREATE TABLE INST, Here is a database schema( table schema); | How many editors are there?It is not neccessary to use all the tables. |
SELECT MAX Conceded FROM table WHERE Points > 17 AND Team = guaraní AND Losses < 6 | CREATE TABLE INST, Here is a database schema( table schema); | Which Conceded is the highest one that has Points larger than 17, and a Team of guaraní, and Losses smaller than 6?.It is not neccessary to use all the tables. |
SELECT Completed FROM table WHERE Launched = 12 april 1934 | CREATE TABLE INST, Here is a database schema( table schema); | Name what was completed on 12 april 1934.It is not neccessary to use all the tables. |
SELECT Flagship Station FROM table WHERE Color commentator(s) = cedric maxwell AND Year = 1995-96 | CREATE TABLE INST, Here is a database schema( table schema); | Name the flagship station for cedric maxwell and year of 1995-96.It is not neccessary to use all the tables. |
SELECT result FROM table_name_65 WHERE competition = "friendly match" AND score = "1 – 1" | CREATE TABLE INST, Here is a database schema( table schema); | What is the result of the game when the competition was a friendly match and the Score was 1 – 1?It is not neccessary to use all the tables. |
SELECT COUNT(top_25) FROM table_name_23 WHERE wins = 0 AND cuts_made = 1 AND events > 5 | CREATE TABLE INST, Here is a database schema( table schema); | What is the total number of top-25s for tournaments that had 0 wins 1 cut made and more than 5 events?It is not neccessary to use all the tables. |
SELECT date FROM table_name_50 WHERE site = "michigan stadium • ann arbor, mi" | CREATE TABLE INST, Here is a database schema( table schema); | What date was the Site michigan stadium • ann arbor mi?It is not neccessary to use all the tables. |
SELECT Name FROM table WHERE Games > 37 AND Assists = 202 | CREATE TABLE INST, Here is a database schema( table schema); | Who played over 37 games and had 202 assists?.It is not neccessary to use all the tables. |
SELECT MIN(europe) FROM table_1914090_2 WHERE africa = 7375139 | CREATE TABLE INST, Here is a database schema( table schema); | What is the minimum number of members Europe had at the time Africa had 7375139?It is not neccessary to use all the tables. |
SELECT (SELECT chartevents.valuenum FROM chartevents WHERE chartevents.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 16169) AND NOT icustays.outtime IS NULL ORDER BY icustays.intime LIMIT 1) AND chartevents.item... | CREATE TABLE INST, Here is a database schema( table schema); | how much was patient 16169's arterial bp mean change second measured on the first intensive care unit visit compared to the value first measured on the first intensive care unit visit.It is not neccessary to use all the tables. |
SELECT COUNT(*) = 0 FROM course, program_course WHERE course.credits <> 1 AND course.department = 'EECS' AND program_course.category LIKE '%ULCS%' AND program_course.course_id = course.course_id | CREATE TABLE INST, Here is a database schema( table schema); | The upper-level classes , are they all worth 1 credits ?It is not neccessary to use all the tables. |
SELECT Tenure FROM table WHERE revenues = 60,000-->58,000 koku | CREATE TABLE INST, Here is a database schema( table schema); | What is the tenure of the person with revenues of 60,000-->58,000 koku?.It is not neccessary to use all the tables. |
SELECT role FROM table_name_8 WHERE original_broadway_cast = "adam riegler" | CREATE TABLE INST, Here is a database schema( table schema); | What was the role when the original broadway was Adam Riegler?It is not neccessary to use all the tables. |
SELECT g_name, rating FROM genre ORDER BY g_name | CREATE TABLE INST, Here is a database schema( table schema); | List the names of all genres in alphabetical oder together with its ratings.It is not neccessary to use all the tables. |
SELECT SUM(against) FROM table_name_86 WHERE opposing_team = "cuyo selection" | CREATE TABLE INST, Here is a database schema( table schema); | Sum of cuyo selection as the opposing team?It is not neccessary to use all the tables. |
SELECT ABS((SELECT "us r&b" FROM table_204_438 WHERE "title" = '"come go with me"') - (SELECT "us r&b" FROM table_204_438 WHERE "title" = '"dance 4 me"')) | CREATE TABLE INST, Here is a database schema( table schema); | what was the difference in r & b ranking between come go with me and dance 4 me . ?It is not neccessary to use all the tables. |
SELECT Location FROM table WHERE Most laps led = Patrick McKenna | CREATE TABLE INST, Here is a database schema( table schema); | What location(s) did patrick mckenna lead the most laps?.It is not neccessary to use all the tables. |
SELECT score FROM table_name_97 WHERE scorers = "match report" | CREATE TABLE INST, Here is a database schema( table schema); | What is the score when the scorers show match report?It is not neccessary to use all the tables. |
SELECT to_par FROM table_name_43 WHERE place = "t3" AND player = "bob gilder" | CREATE TABLE INST, Here is a database schema( table schema); | What is Bob Gilder in Place T3's To par?It is not neccessary to use all the tables. |
SELECT MIN(clubs_remaining) FROM table_19089486_1 | CREATE TABLE INST, Here is a database schema( table schema); | Name the least clubs remainingIt is not neccessary to use all the tables. |
SELECT Date FROM table WHERE Goal = 34 | CREATE TABLE INST, Here is a database schema( table schema); | What day has 34 goals?.It is not neccessary to use all the tables. |
SELECT category FROM table_name_84 WHERE nominee_s_ = "hy conrad" AND year = 2003 | CREATE TABLE INST, Here is a database schema( table schema); | What is the category when Hy Conrad nominated in 2003?It is not neccessary to use all the tables. |
SELECT Operator FROM table WHERE Width = 2.65 m AND Type designation = m5000 | CREATE TABLE INST, Here is a database schema( table schema); | Which Operator has a Width of 2.65 m, and a Type designation of m5000?.It is not neccessary to use all the tables. |
SELECT Position FROM table WHERE CFL Team = Montreal Alouettes | CREATE TABLE INST, Here is a database schema( table schema); | What position(s) drafted by the montreal alouettes?.It is not neccessary to use all the tables. |
SELECT state__class_ FROM table_224840_3 WHERE vacator = "John Laurance (F)" | CREATE TABLE INST, Here is a database schema( table schema); | in which state where John Laurance (f) as a vacator?It is not neccessary to use all the tables. |
SELECT employee_id FROM job_history GROUP BY employee_id HAVING COUNT(*) >= 2 | CREATE TABLE INST, Here is a database schema( table schema); | display the ID for those employees who did two or more jobs in the past.It is not neccessary to use all the tables. |
SELECT U.S. viewers (million) FROM table WHERE Title = "Company Man" | CREATE TABLE INST, Here is a database schema( table schema); | How many millions of people in the US watched the "Company Man" episode?.It is not neccessary to use all the tables. |
SELECT MAX Total Goals FROM table WHERE FA Cup Goals = 0 AND League Apps = 41 | CREATE TABLE INST, Here is a database schema( table schema); | What is the most total goals for a player having 0 FA Cup goals and 41 League appearances?.It is not neccessary to use all the tables. |
SELECT MAX(silver) FROM table_name_40 WHERE bronze > 1 AND total > 48 | CREATE TABLE INST, Here is a database schema( table schema); | What is the most silver when bronze is more than 1 and total is more than 48?It is not neccessary to use all the tables. |
SELECT Release date FROM table WHERE Publisher = microsoft game studios AND Title = amped: freestyle snowboarding | CREATE TABLE INST, Here is a database schema( table schema); | When Did Microsoft Game Studios release Amped: Freestyle Snowboarding?.It is not neccessary to use all the tables. |
SELECT Poll Source FROM table WHERE Lead Margin = 17 | CREATE TABLE INST, Here is a database schema( table schema); | Which poll source has a lead of 17?.It is not neccessary to use all the tables. |
SELECT U15 4th Quad FROM table WHERE U15 3rd Quad = bbc AND U15 6th Quad = gt | CREATE TABLE INST, Here is a database schema( table schema); | Which U15 4th Quad had a U15 3rd Quad of BBC and U15 6th Quad of GT?.It is not neccessary to use all the tables. |
SELECT rounds FROM table_name_28 WHERE team = "rml racing silverline" AND drivers = "james nash" | CREATE TABLE INST, Here is a database schema( table schema); | What rounds did RML Racing Silverline and James Nash compete?It is not neccessary to use all the tables. |
SELECT ACC_Regular_Season, ACC_Percent FROM basketball_match ORDER BY ACC_Regular_Season DESC | CREATE TABLE INST, Here is a database schema( table schema); | Bar chart x axis acc regular season y axis acc_percent, and show X-axis in descending order.It is not neccessary to use all the tables. |
SELECT Score FROM table WHERE Date = june 8, 1996 | CREATE TABLE INST, Here is a database schema( table schema); | What is Score, when Date is "June 8, 1996"?.It is not neccessary to use all the tables. |
SELECT COUNT(seats_won) FROM table_149330_1 WHERE _percentage_of_votes = "20.29" | CREATE TABLE INST, Here is a database schema( table schema); | What was the total number of seats won where the % of votes is equal to 20.29?It is not neccessary to use all the tables. |
SELECT Team F FROM table WHERE Team A = aida gagaring | CREATE TABLE INST, Here is a database schema( table schema); | Who is team f when Aida Gagaring is team A?.It is not neccessary to use all the tables. |
SELECT SUM(grid) FROM table_name_60 WHERE time = "+16.687" | CREATE TABLE INST, Here is a database schema( table schema); | What is the sum of Grid when Time is "+16.687"?It is not neccessary to use all the tables. |
SELECT took_office FROM table_name_30 WHERE party = "democrat" AND name = "john hancock" | CREATE TABLE INST, Here is a database schema( table schema); | Which Took Office that has a Party of democrat under the name of John HancockIt is not neccessary to use all the tables. |
SELECT County FROM table WHERE Built = 1934 | CREATE TABLE INST, Here is a database schema( table schema); | Which county built a bridge in 1934?.It is not neccessary to use all the tables. |
SELECT COUNT Couple FROM table WHERE Total = 14.5 | CREATE TABLE INST, Here is a database schema( table schema); | how many coupless totalled 14.5.It is not neccessary to use all the tables. |
SELECT "Date" FROM table_25366 WHERE "Team" = '@ Toronto' | CREATE TABLE INST, Here is a database schema( table schema); | On what date did the Pistons play @ toronto?It is not neccessary to use all the tables. |
SELECT MAX(laps) FROM table_name_86 WHERE grid < 15 AND time = "+52.833" | CREATE TABLE INST, Here is a database schema( table schema); | With a Grid less than 15 and a Time of +52.833 what is the highest number of Laps?It is not neccessary to use all the tables. |
SELECT Venue FROM table WHERE Away team = geelong | CREATE TABLE INST, Here is a database schema( table schema); | Where was the game when Geelong was the away team?.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.