sql stringlengths 9 2.37k | table stringclasses 9
values | query stringlengths 51 503 |
|---|---|---|
SELECT Years in Orlando FROM table WHERE Nationality = united states AND School/Club Team = concord hs | CREATE TABLE INST, Here is a database schema( table schema); | What years in Orlando have the United States as the nationality, with concord hs as the school/club team?.It is not neccessary to use all the tables. |
SELECT Position FROM table WHERE Pick > 243 | CREATE TABLE INST, Here is a database schema( table schema); | What was the position of the player picked at 243?.It is not neccessary to use all the tables. |
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.diagnosis = "ATRIAL SEPTAL DEFECT\MITRAL VALVE REPLACEMENT;REPAIR ATRIAL-SEPTAL DEFECT/SDA" AND demographic.age < "59" | CREATE TABLE INST, Here is a database schema( table schema); | Provide the number of patients whose primary disease is atrial septal defect/mitral valve replacement repair atrial-septal defect/sda and are aged below 59 years.It is not neccessary to use all the tables. |
SELECT Home team score FROM table WHERE Away team score = 16.21 (117) | CREATE TABLE INST, Here is a database schema( table schema); | For the match with an away team score of 16.21 (117), what was the home team score?.It is not neccessary to use all the tables. |
SELECT Championship FROM table WHERE Score in the final = 2–6, 6–2, 7–5 | CREATE TABLE INST, Here is a database schema( table schema); | What Championship has a Score in the final of 2–6, 6–2, 7–5?.It is not neccessary to use all the tables. |
SELECT team FROM table_name_5 WHERE county = "sussex" | CREATE TABLE INST, Here is a database schema( table schema); | Which team is in Sussex county?It is not neccessary to use all the tables. |
SELECT Name FROM WINE WHERE Price > (SELECT MAX(Price) FROM WINE WHERE YEAR = 2006) | CREATE TABLE INST, Here is a database schema( table schema); | What are the names of wines that are more expensive then all wines made in the year 2006?It is not neccessary to use all the tables. |
SELECT home FROM table_name_60 WHERE attendance < 2248 AND score = "2:0" AND date = "21 september 2008" | CREATE TABLE INST, Here is a database schema( table schema); | What is the home team of the match on 21 September 2008 with an attendance less than 2248 and a 2:0 score?It is not neccessary to use all the tables. |
SELECT MIN No. in series FROM table WHERE Written by = Lauren Gussis | CREATE TABLE INST, Here is a database schema( table schema); | What in the series number of the episode written by Lauren Gussis?.It is not neccessary to use all the tables. |
SELECT Polling institute FROM table WHERE Lead = 12% AND Labour = 40.2% | CREATE TABLE INST, Here is a database schema( table schema); | Which polling institute showed a lead of 12% and a Labour share of the poll at 40.2%?.It is not neccessary to use all the tables. |
SELECT AVG(losses) FROM table_name_35 WHERE wimmera_fl = "minyip murtoa" | CREATE TABLE INST, Here is a database schema( table schema); | Which Losses have a Wimmera FL of minyip murtoa?It is not neccessary to use all the tables. |
SELECT MAX Heat FROM table WHERE Lane > 3 AND Time = 2:09.12 | CREATE TABLE INST, Here is a database schema( table schema); | What is the highest heat for more than 3 lanes and a time of 2:09.12?.It is not neccessary to use all the tables. |
SELECT Song FROM table WHERE Picturization = Vijay | CREATE TABLE INST, Here is a database schema( table schema); | Which song has picturization by only vijay?.It is not neccessary to use all the tables. |
SELECT meter_200, SUM(ID) FROM swimmer GROUP BY meter_200 ORDER BY SUM(ID) DESC | CREATE TABLE INST, Here is a database schema( table schema); | Give me the comparison about the sum of ID over the meter_200 , and group by attribute meter_200 by a bar chart, order Y in descending order please.It is not neccessary to use all the tables. |
SELECT mixed_doubles FROM table_15002265_1 WHERE mens_singles = "Peter Moritz" | CREATE TABLE INST, Here is a database schema( table schema); | who is the the mixed doubles with mens singles being peter moritzIt is not neccessary to use all the tables. |
SELECT Date FROM table WHERE Location = prague AND Competition = world group, consolation round | CREATE TABLE INST, Here is a database schema( table schema); | what is the date for the game in prague for the world group, consolation round competition?.It is not neccessary to use all the tables. |
SELECT transfer_fee FROM table_name_61 WHERE app_l_c_e_ = "0 (0/0/0)" AND notes = "to anagennisi karditsa" | CREATE TABLE INST, Here is a database schema( table schema); | What was the transfer fee for the player who had an App(L/C/E) of 0 (0/0/0) and notes of to anagennisi karditsa?It is not neccessary to use all the tables. |
SELECT Crowd FROM table WHERE Home team score = 4.10 (34) | CREATE TABLE INST, Here is a database schema( table schema); | What is the average crowd size when the home side scores 4.10 (34)?.It is not neccessary to use all the tables. |
SELECT "Strike Rate" FROM table_23150 WHERE "Wickets" = '17' | CREATE TABLE INST, Here is a database schema( table schema); | What is the strike rate when there are 17 wickets?It is not neccessary to use all the tables. |
SELECT score FROM table_name_99 WHERE venue = "sultan qaboos sports complex, muscat" | CREATE TABLE INST, Here is a database schema( table schema); | The game played at Sultan Qaboos Sports Complex Muscat had what score?It is not neccessary to use all the tables. |
SELECT club FROM table_name_2 WHERE tries_for = "40" | CREATE TABLE INST, Here is a database schema( table schema); | Which club has 40 tries for?It is not neccessary to use all the tables. |
SELECT Deaths FROM table WHERE Natural Growth < 3.4 AND Total Fertility Rate = 1.63 | CREATE TABLE INST, Here is a database schema( table schema); | What was the amount of deaths that had a natural growth smaller than 3.4, and a total fertility rate of 1.63?.It is not neccessary to use all the tables. |
SELECT Team FROM table WHERE Record = 45-36 | CREATE TABLE INST, Here is a database schema( table schema); | Who did the Raptors play when their record was 45-36? .It is not neccessary to use all the tables. |
SELECT gt2_winning_team FROM table_11875915_2 WHERE gt3_winning_team = "#1 PTG" | CREATE TABLE INST, Here is a database schema( table schema); | Who was the GT2 winning team when the GT3 winning team was #1 PTG?It is not neccessary to use all the tables. |
SELECT T2.name, T1.name FROM country AS T1 JOIN roller_coaster AS T2 ON T1.country_id = T2.country_id | CREATE TABLE INST, Here is a database schema( table schema); | Show the names of roller coasters and names of country they are in.It is not neccessary to use all the tables. |
SELECT project_details FROM Projects WHERE NOT project_id IN (SELECT project_id FROM Project_Staff WHERE role_code = 'researcher') | CREATE TABLE INST, Here is a database schema( table schema); | List the project details of the projects which did not hire any staff for a researcher role.It is not neccessary to use all the tables. |
SELECT Record FROM table WHERE Loss = wyatt (4–4) | CREATE TABLE INST, Here is a database schema( table schema); | What was the record at the game that had a loss of Wyatt (4–4)?.It is not neccessary to use all the tables. |
SELECT MAX Founded FROM table WHERE Enrollment = 3584 | CREATE TABLE INST, Here is a database schema( table schema); | If the enrollment is 3584, what's the largest founded?.It is not neccessary to use all the tables. |
SELECT Title FROM table WHERE Attendance = n/a AND Runner-up = waseda AND Season = 1995-6 details | CREATE TABLE INST, Here is a database schema( table schema); | What was the title for the game with an attendance of n/a with the runner-up being Waseda, and a season of 1995-6 details?.It is not neccessary to use all the tables. |
SELECT divisional_record FROM table_name_58 WHERE away_team = "dallas" | CREATE TABLE INST, Here is a database schema( table schema); | Can you tell me the Divisional Record that has the Away Team of dallas?It is not neccessary to use all the tables. |
SELECT SUM(goals_against) FROM table_name_41 WHERE goals_for > 52 AND losses < 10 | CREATE TABLE INST, Here is a database schema( table schema); | How many goals against total did the team with more than 52 goals and fewer than 10 losses have?It is not neccessary to use all the tables. |
SELECT Gender FROM table WHERE Decile > 1 AND Name = south auckland seventh-day adventist school | CREATE TABLE INST, Here is a database schema( table schema); | Which gender had a decile of more than 1 and featured the South Auckland Seventh-Day Adventist School?.It is not neccessary to use all the tables. |
SELECT "Gold Coast" FROM table_71060 WHERE "Melbourne" = 'yes' AND "Perth" = 'no' AND "Adelaide" = 'yes' | CREATE TABLE INST, Here is a database schema( table schema); | What is the result for Gold Coast when Melbourne and Adelaide are yes, but Perth is no?It is not neccessary to use all the tables. |
SELECT 2008 FROM table WHERE 2011 = 1r | CREATE TABLE INST, Here is a database schema( table schema); | What is the 2008 entry for the row that as a 2011 entry of 1R?.It is not neccessary to use all the tables. |
SELECT country FROM table_name_67 WHERE season > 2006 AND team = "fc atyrau" | CREATE TABLE INST, Here is a database schema( table schema); | Which country does FC Atyrau represent after the 2006 season?It is not neccessary to use all the tables. |
SELECT "stamp set" FROM table_203_153 WHERE "#cards" = 'three' | CREATE TABLE INST, Here is a database schema( table schema); | which stamp set had only three cards in the set ?It is not neccessary to use all the tables. |
SELECT winner FROM table_11622562_1 WHERE tournament = "PaineWebber Invitational" | CREATE TABLE INST, Here is a database schema( table schema); | What's the winner of the Painewebber Invitational tournament?It is not neccessary to use all the tables. |
SELECT position FROM table_1213511_6 WHERE player = "Jim Johnston" | CREATE TABLE INST, Here is a database schema( table schema); | What position does Jim Johnston play?It is not neccessary to use all the tables. |
SELECT description FROM table_14465871_1 WHERE powershell__alias_ = "cpi, copy, cp" | CREATE TABLE INST, Here is a database schema( table schema); | If Powershell (alias) is cpi copy cp what are all corresponding descriptions.It is not neccessary to use all the tables. |
SELECT final FROM table_name_11 WHERE no5 = "simara" | CREATE TABLE INST, Here is a database schema( table schema); | What is the final result of the team that has Simara as No.5?It is not neccessary to use all the tables. |
SELECT Fate, COUNT(Fate) FROM mission GROUP BY Fate ORDER BY COUNT(Fate) DESC | CREATE TABLE INST, Here is a database schema( table schema); | Compare the total number of each fate with a bar chart, could you show by the the number of fate in desc?It is not neccessary to use all the tables. |
SELECT "Degree" FROM table_31588 WHERE "Award Year" = '1965' AND "Award" = 'chemistry' | CREATE TABLE INST, Here is a database schema( table schema); | Tell me the degree for chemistry 1965It is not neccessary to use all the tables. |
SELECT COUNT Post FROM table WHERE Trainer = steve asmussen AND Time/ Behind = 19 ½ | CREATE TABLE INST, Here is a database schema( table schema); | What is the total number of Post, when Trainer is "Steve Asmussen", and when Time/ Behind is 19 ½?.It is not neccessary to use all the tables. |
SELECT MIN(attendance) FROM table_name_27 WHERE visitor = "colorado" AND date = "may 30" | CREATE TABLE INST, Here is a database schema( table schema); | What is the lowest number of people attending the game on May 30 with Colorado as the visitors?It is not neccessary to use all the tables. |
SELECT AVG Loses FROM table WHERE Draws < 0 | CREATE TABLE INST, Here is a database schema( table schema); | What average Loses has Draws less than 0?.It is not neccessary to use all the tables. |
SELECT venue FROM table_name_11 WHERE score = "4-1" | CREATE TABLE INST, Here is a database schema( table schema); | What is the Venue of the Competition with a Score of 4-1?It is not neccessary to use all the tables. |
SELECT MIN(qualifying_rank) FROM table_13114949_3 | CREATE TABLE INST, Here is a database schema( table schema); | what is the lowest qualifying rank?It is not neccessary to use all the tables. |
SELECT SUM 18-49 FROM table WHERE Air Date = june 25, 2009 AND Order > 29 | CREATE TABLE INST, Here is a database schema( table schema); | What is the sum of numbers listed in 18-49 for the episode that aired on June 25, 2009 with an order larger than 29?.It is not neccessary to use all the tables. |
SELECT outcome FROM table_2362486_1 WHERE score_in_the_final = "6–7(1), 2–6, 6–4, 7–5, 6–7(2)" | CREATE TABLE INST, Here is a database schema( table schema); | What was the outcome in the championship where the final score was 6–7(1) 2–6 6–4 7–5 6–7(2)?It is not neccessary to use all the tables. |
SELECT Backed with FROM table WHERE Record label = wild world AND Date > 2008 | CREATE TABLE INST, Here is a database schema( table schema); | What's the Backed after 2008 with a label of Wild World?.It is not neccessary to use all the tables. |
SELECT regular_season_winner FROM table_22779004_1 WHERE conference = "Missouri Valley conference" | CREATE TABLE INST, Here is a database schema( table schema); | Who won the regular season when Missouri Valley Conference took place?It is not neccessary to use all the tables. |
SELECT institution FROM table_1974782_1 WHERE location = "Worcester, Massachusetts" | CREATE TABLE INST, Here is a database schema( table schema); | What school is located in Worcester Massachusetts?It is not neccessary to use all the tables. |
SELECT COUNT(pick__number) FROM table_16729063_1 WHERE position = "Linebacker" | CREATE TABLE INST, Here is a database schema( table schema); | How many draft picks are there at the linebacker position?It is not neccessary to use all the tables. |
SELECT COUNT(*) > 0 FROM treatment WHERE treatment.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.uniquepid = '030-47098' AND patient.hospitalid <> (SELECT DISTINCT patient.hospitalid FROM patient WHERE patient.uniquepid = '030-47098' AND patient.hospitaldischargetime IS NULL)) AND tr... | CREATE TABLE INST, Here is a database schema( table schema); | had patient 030-47098 been treated since 4 years ago in other hospitals with a administration of electrolytes - intravenous procedure?It is not neccessary to use all the tables. |
SELECT MIN("Euler characteristic: V \u2212 E + F") FROM table_4937 WHERE "Faces F" < '20' AND "Edges E" < '30' AND "Name" = 'hexahedron or cube' AND "Vertices V" < '8' | CREATE TABLE INST, Here is a database schema( table schema); | What is the lowest Euler characteristic: V-E+F of a hexahedron or cube, which has less than 20 faces F, less than 30 edges E, and less than 8 vertices V?It is not neccessary to use all the tables. |
SELECT COUNT(points_won) FROM table_name_74 WHERE year = "2007" AND total_matches > 5 | CREATE TABLE INST, Here is a database schema( table schema); | In 2007 how many points were won when more than 5 matches were played?It is not neccessary to use all the tables. |
SELECT surface FROM table_name_34 WHERE date = "november 28, 2010" | CREATE TABLE INST, Here is a database schema( table schema); | Tell me the surface for november 28 2010It is not neccessary to use all the tables. |
SELECT opponent FROM table_23486853_8 WHERE date = "March 16" | CREATE TABLE INST, Here is a database schema( table schema); | Who is every opponent on the date of March 16?It is not neccessary to use all the tables. |
SELECT COUNT ERP / Power W FROM table WHERE Frequency = 89.3 fm AND Facility ID < 40430 | CREATE TABLE INST, Here is a database schema( table schema); | Name the total number of ERP/Power W for frequency of 89.3 fm and facility ID less than 40430.It is not neccessary to use all the tables. |
SELECT challenge FROM table_25531112_2 WHERE circuit = "Albert Park Grand Prix circuit" | CREATE TABLE INST, Here is a database schema( table schema); | Who made the challenge on the Albert Park Grand Prix Circuit?It is not neccessary to use all the tables. |
SELECT artist FROM table_name_11 WHERE issue_price = "$8,159.95" | CREATE TABLE INST, Here is a database schema( table schema); | Which Artist has an Issue Price of $8159.95?It is not neccessary to use all the tables. |
SELECT Seat FROM table WHERE Name in Russian = Плоцкая губерния | CREATE TABLE INST, Here is a database schema( table schema); | What seat does плоцкая губерния hold?.It is not neccessary to use all the tables. |
SELECT intercontinental_cup_1999 FROM table_name_48 WHERE copa_libertadores_1999 = "did not qualify" AND copa_mercosur_1999 = "quarterfinals" | CREATE TABLE INST, Here is a database schema( table schema); | What is the intercontinental cup 1999 result of the team who did not qualify for the Copa Libertadores 1999 and made quarterfinals in the Copa Mercosur 1999?It is not neccessary to use all the tables. |
SELECT player FROM table_11545282_5 WHERE no = "53" | CREATE TABLE INST, Here is a database schema( table schema); | Which player is no. 53?It is not neccessary to use all the tables. |
SELECT october FROM table_name_13 WHERE record = "0-2-2" | CREATE TABLE INST, Here is a database schema( table schema); | What October has 0-2-2 as the record?It is not neccessary to use all the tables. |
SELECT poor_law_union FROM table_30121082_1 WHERE area__acres__ = 142 | CREATE TABLE INST, Here is a database schema( table schema); | What are the Poor Law Unions when the area (in acres) is 142?It is not neccessary to use all the tables. |
SELECT nationality FROM table_2886617_4 WHERE nhl_team = "Vancouver Canucks" | CREATE TABLE INST, Here is a database schema( table schema); | What country does the player who joined the Vancouver Canucks originally hail from?It is not neccessary to use all the tables. |
SELECT COUNT(*) FROM table_204_373 WHERE "loser" = 'mocho cota' AND "winner" = 'chamaco valaguez' | CREATE TABLE INST, Here is a database schema( table schema); | how many times did mocho cota lose to chamaco valaguez ?It is not neccessary to use all the tables. |
SELECT claimed_sales FROM table_name_85 WHERE genre = "rock" | CREATE TABLE INST, Here is a database schema( table schema); | What is the number of claimed sales in the rock genre?It is not neccessary to use all the tables. |
SELECT MIN(mpg_us_combined) FROM table_name_11 WHERE transmission = "a6" AND co_2_g_km < 303 AND engine_capacity > 2461 AND l_100km_urban__cold_ = 15.9 | CREATE TABLE INST, Here is a database schema( table schema); | What is the lowest combined mpg in the US for the A6 transmission a CO2 g/km under 303 engine capacity over 2461 and L/100km urban (cold) of 15.9?It is not neccessary to use all the tables. |
SELECT Opponent FROM table WHERE Week > 6 AND Result = l 30–24 | CREATE TABLE INST, Here is a database schema( table schema); | Who did they play against in a week after 6 and the result was l 30–24?.It is not neccessary to use all the tables. |
SELECT extroverted, _relationship_oriented FROM table_11256021_1 WHERE date = "c. 1928" | CREATE TABLE INST, Here is a database schema( table schema); | what's the extroverted relationship-oriented where date is c. 1928It is not neccessary to use all the tables. |
SELECT COUNT(period) FROM table_24565004_11 WHERE goals¹ = 15 | CREATE TABLE INST, Here is a database schema( table schema); | How many periods had 15 goals?It is not neccessary to use all the tables. |
SELECT Laid down FROM table WHERE Completed = 22 october 1934 | CREATE TABLE INST, Here is a database schema( table schema); | Name the laid down for completed of 22 october 1934.It is not neccessary to use all the tables. |
SELECT COUNT Points FROM table WHERE Position = Right end | CREATE TABLE INST, Here is a database schema( table schema); | How many points where scored by the right end?.It is not neccessary to use all the tables. |
SELECT ResName FROM Restaurant | CREATE TABLE INST, Here is a database schema( table schema); | Show me all the restaurants.It is not neccessary to use all the tables. |
SELECT Team_Name, ACC_Percent FROM basketball_match | CREATE TABLE INST, Here is a database schema( table schema); | Show me about the distribution of Team_Name and ACC_Percent in a bar chart.It is not neccessary to use all the tables. |
SELECT Player FROM table WHERE Country = united states AND Place = t10 AND Score = 67-77=144 | CREATE TABLE INST, Here is a database schema( table schema); | Who was the player from the United States in T10 place with a score of 67-77=144?.It is not neccessary to use all the tables. |
SELECT Driver FROM table WHERE Entries = 210 | CREATE TABLE INST, Here is a database schema( table schema); | Which driver has 210 as entries?.It is not neccessary to use all the tables. |
SELECT Score FROM table WHERE Location = Verizon Center AND Points = 68 | CREATE TABLE INST, Here is a database schema( table schema); | What is every score at the location of Verizon Center and points of 68?.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 lab ON demographic.hadm_id = lab.hadm_id WHERE diagnoses.short_title = "Fever in other diseases" AND lab.fluid = "Cerebrospinal Fluid (CSF)" | CREATE TABLE INST, Here is a database schema( table schema); | give me the number of patients whose diagnoses short title is fever in other diseases and lab test fluid is cerebrospinal fluid (csf)?It is not neccessary to use all the tables. |
SELECT Round of 16 FROM table WHERE Event = 69kg | CREATE TABLE INST, Here is a database schema( table schema); | What's the 69kg of Round 16?.It is not neccessary to use all the tables. |
SELECT date_of_vacancy FROM table_17115950_2 WHERE replaced_by = "Viorel Moldovan" | CREATE TABLE INST, Here is a database schema( table schema); | What was the date of vacancy when Viorel Moldovan replaced a manager?It is not neccessary to use all the tables. |
SELECT attendance FROM table_name_48 WHERE home_team = "walsall" | CREATE TABLE INST, Here is a database schema( table schema); | What was the attendance for the home team of Walsall?It is not neccessary to use all the tables. |
SELECT T1.Name, T2.Revenue FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY T1.Name ORDER BY T1.Name DESC | CREATE TABLE INST, Here is a database schema( table schema); | For those records from the products and each product's manufacturer, a bar chart shows the distribution of name and the average of revenue , and group by attribute name, and could you show bars in descending order?It is not neccessary to use all the tables. |
SELECT partial_thromboplastin_time FROM table_221653_1 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 Score FROM table WHERE Date = december 14, 1985 | CREATE TABLE INST, Here is a database schema( table schema); | What is the score when the date is December 14, 1985?.It is not neccessary to use all the tables. |
SELECT Weeks on Top FROM table WHERE Artist = savage garden | CREATE TABLE INST, Here is a database schema( table schema); | How many weeks on top was the single from Savage Garden?.It is not neccessary to use all the tables. |
SELECT DISTINCT course.department, course.name, course.number FROM course INNER JOIN area ON course.course_id = area.course_id INNER JOIN program_course ON program_course.course_id = course.course_id WHERE (area.area LIKE '%Conscious Sedation%' OR course.description LIKE '%Conscious Sedation%' OR course.name LIKE '%Con... | CREATE TABLE INST, Here is a database schema( table schema); | For the MDE requirement , which courses in Conscious Sedation do I need to take ?It is not neccessary to use all the tables. |
SELECT COUNT(top_division_titles) FROM table_1908877_2 WHERE position_in_2012_13 = "5th" | CREATE TABLE INST, Here is a database schema( table schema); | How many clubs achieved the 5th position in 2012-13?It is not neccessary to use all the tables. |
SELECT Time FROM table WHERE Opponent = dave menne | CREATE TABLE INST, Here is a database schema( table schema); | What was the time of the bout against Dave Menne?.It is not neccessary to use all the tables. |
SELECT Pole Position FROM table WHERE Rnd = 3 | CREATE TABLE INST, Here is a database schema( table schema); | who is the pole position for the rnd 3.It is not neccessary to use all the tables. |
SELECT original_airdate FROM table_name_65 WHERE episode__number = "29 (7)" | CREATE TABLE INST, Here is a database schema( table schema); | When did Episode 29 (7) originally air?It is not neccessary to use all the tables. |
SELECT circuit FROM table_name_76 WHERE fastest_lap = "unknown" AND date = "july 19" | CREATE TABLE INST, Here is a database schema( table schema); | What circut has an unknown fastest lap on July 19?It is not neccessary to use all the tables. |
SELECT MIN(total_seasons) FROM table_name_58 WHERE team = "vancouver 86ers" | CREATE TABLE INST, Here is a database schema( table schema); | What is the least total seasons of the Vancouver 86ers?It is not neccessary to use all the tables. |
SELECT COUNT Position in table FROM table WHERE Date of vacancy = 14 February 2011 | CREATE TABLE INST, Here is a database schema( table schema); | How many times was the date of vacancy 14 february 2011?.It is not neccessary to use all the tables. |
SELECT MAX(release_date) FROM table_name_3 WHERE label = "ariola" AND country = "spain" | CREATE TABLE INST, Here is a database schema( table schema); | What was the latest release date for Ariola in Spain?It is not neccessary to use all the tables. |
SELECT Best score FROM table WHERE Dance = freestyle | CREATE TABLE INST, Here is a database schema( table schema); | What is the best score of the dance freestyle?.It is not neccessary to use all the tables. |
SELECT team FROM table_25368177_1 WHERE net_run_rate = "0.134" | CREATE TABLE INST, Here is a database schema( table schema); | What team had a net run rate of 0.134?It is not neccessary to use all the tables. |
SELECT Artist FROM table WHERE Format = 12 inch vinyl AND Single = alien rock b/w combat, the remix | CREATE TABLE INST, Here is a database schema( table schema); | What artist had a single called Alien Rock b/w Combat, The Remix on 12 inch Vinyl format?.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.