sql stringlengths 9 2.37k | table stringclasses 9
values | query stringlengths 51 503 |
|---|---|---|
SELECT Date FROM table WHERE Week > 3 AND Attendance = bye | CREATE TABLE INST, Here is a database schema( table schema); | What is the Date when the week is more than 3 and the attendance shows bye?.It is not neccessary to use all the tables. |
SELECT Driver FROM table WHERE Laps > 72 AND Grid = 2 | CREATE TABLE INST, Here is a database schema( table schema); | What driver has grid 2 and over 72 laps?.It is not neccessary to use all the tables. |
SELECT Quantity FROM table WHERE Railway number(s) = 263 | CREATE TABLE INST, Here is a database schema( table schema); | What is the quantity for railway 263?.It is not neccessary to use all the tables. |
SELECT Rank FROM table WHERE Qual = 145.144 | CREATE TABLE INST, Here is a database schema( table schema); | Which Rank has a Qual of 145.144?.It is not neccessary to use all the tables. |
SELECT Team, COUNT(*) FROM technician GROUP BY Team | CREATE TABLE INST, Here is a database schema( table schema); | Create a bar chart showing the total number across teamIt is not neccessary to use all the tables. |
SELECT AVG(draws) FROM table_name_97 WHERE goal_difference > -3 AND goals_against = 30 AND points > 45 | CREATE TABLE INST, Here is a database schema( table schema); | What is the average Draws when Goal Difference is greater than -3 when Goals Against is 30 and when Points is greater than 45?It is not neccessary to use all the tables. |
SELECT Year FROM table WHERE Chassis = lotus 25 | CREATE TABLE INST, Here is a database schema( table schema); | What year was there a lotus 25 Chassis?.It is not neccessary to use all the tables. |
SELECT interview FROM table_11970261_2 WHERE swimsuit = "9.140" | CREATE TABLE INST, Here is a database schema( table schema); | what's the interview with swimsuit being 9.140It is not neccessary to use all the tables. |
SELECT jockey FROM table_name_39 WHERE trainer = "nick zito" AND odds = "34-1" | CREATE TABLE INST, Here is a database schema( table schema); | Who is the Jockey that has Nick Zito as Trainer and Odds of 34-1?It is not neccessary to use all the tables. |
SELECT 4th Runner Up FROM table WHERE 3rd Runner Up = Jean Liatri Augustine Girsang | CREATE TABLE INST, Here is a database schema( table schema); | Who won 5th place when jean liatri augustine girsang won 4th place?.It is not neccessary to use all the tables. |
SELECT COUNT(*) > 0 FROM allergy WHERE allergy.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '003-39724')) AND DATETIME(allergy.allergytime) <= DATETIME(CURRENT_TIME(), '-1 y... | CREATE TABLE INST, Here is a database schema( table schema); | until 1 year ago, patient 003-39724 had any allergies?It is not neccessary to use all the tables. |
SELECT MAX ERP W FROM table WHERE Frequency MHz = 89.3 fm | CREATE TABLE INST, Here is a database schema( table schema); | Which ERP W has a Frequency MHz of 89.3 fm?.It is not neccessary to use all the tables. |
SELECT Team_Name, All_Games_Percent FROM basketball_match ORDER BY All_Games_Percent DESC | CREATE TABLE INST, Here is a database schema( table schema); | Find Team_Name and All_Games_Percent , and visualize them by a bar chart, and list in descending by the y-axis.It is not neccessary to use all the tables. |
SELECT club_team FROM table_name_7 WHERE position = "(d)" AND nationality = "canada" AND player = "andrew macwilliam" | CREATE TABLE INST, Here is a database schema( table schema); | Which Club Team has a Position of (d) a Nationality of canada and a Player of andrew macwilliam?It is not neccessary to use all the tables. |
SELECT SUM Round FROM table WHERE Position = center | CREATE TABLE INST, Here is a database schema( table schema); | What is the sum of Round with a Position that is center?.It is not neccessary to use all the tables. |
SELECT agg FROM table_name_2 WHERE team_2 = "dynamo moscow" | CREATE TABLE INST, Here is a database schema( table schema); | What is the agg of team 2 Dynamo Moscow?It is not neccessary to use all the tables. |
SELECT time FROM table_name_54 WHERE song_title = "burning love" | CREATE TABLE INST, Here is a database schema( table schema); | How long is the song titled burning love?It is not neccessary to use all the tables. |
SELECT coronie FROM table_16886076_1 WHERE marowijne = "6.8%" | CREATE TABLE INST, Here is a database schema( table schema); | Name the coronie for marowijne being 6.8%It is not neccessary to use all the tables. |
SELECT MIN Number of seasons in top division FROM table WHERE Position in 2012–13 = 001 1st | CREATE TABLE INST, Here is a database schema( table schema); | Name the least number of seasons in top division with position in 2012-13 of 001 1st.It is not neccessary to use all the tables. |
SELECT Season FROM table WHERE Country = china AND Team = dalian shide AND Apps > 8 AND Goals = 2 | CREATE TABLE INST, Here is a database schema( table schema); | What is Season, when Country is China, when Team is Dalian Shide, when Apps is greater than 8, and when Goals is 2?.It is not neccessary to use all the tables. |
SELECT Viewers (millions) FROM table WHERE Series No. = 45 | CREATE TABLE INST, Here is a database schema( table schema); | How many were the viewers (in millions) of the series no. 45?.It is not neccessary to use all the tables. |
SELECT Champion FROM table WHERE Runner-up = peter fleming | CREATE TABLE INST, Here is a database schema( table schema); | Who won when Peter Fleming was a runner-up?.It is not neccessary to use all the tables. |
SELECT Party FROM table WHERE Incumbent = Samuel Smith | CREATE TABLE INST, Here is a database schema( table schema); | What is the party when the incumbent is samuel smith?.It is not neccessary to use all the tables. |
SELECT Tie no FROM table WHERE Away team = barnet | CREATE TABLE INST, Here is a database schema( table schema); | What is the Tie no listed for the Away team of Barnet?.It is not neccessary to use all the tables. |
SELECT AVG(wins) FROM table_name_1 WHERE class = "250cc" AND year = 1972 | CREATE TABLE INST, Here is a database schema( table schema); | Count the average Wins which has a Class of 250cc and a Year of 1972?It is not neccessary to use all the tables. |
SELECT SUM 100+ FROM table WHERE LWAT = 29 AND 140+ < 128 | CREATE TABLE INST, Here is a database schema( table schema); | What's the 100+ when the 140+ is less than 128 and the LWAT of 29?.It is not neccessary to use all the tables. |
SELECT MAX(founded) FROM table_name_67 WHERE institution = "cloud county community college" | CREATE TABLE INST, Here is a database schema( table schema); | What is the largest Founded with an Institution of cloud county community college?It is not neccessary to use all the tables. |
SELECT Venue FROM table WHERE Opponent = los angeles rams | CREATE TABLE INST, Here is a database schema( table schema); | Which venue hosted the Los Angeles Rams as an opponent?.It is not neccessary to use all the tables. |
SELECT COUNT Tries against FROM table WHERE Team = dinamo bucureşti AND Tries for < 19 | CREATE TABLE INST, Here is a database schema( table schema); | How many Tries against have a Team of dinamo bucureşti, and Tries for smaller than 19?.It is not neccessary to use all the tables. |
SELECT venue FROM table_name_24 WHERE away_team = "fitzroy" | CREATE TABLE INST, Here is a database schema( table schema); | Where was the game held when Fitzroy was the away team?It is not neccessary to use all the tables. |
SELECT director FROM table_name_61 WHERE film_title_used_in_nomination = "small voices" | CREATE TABLE INST, Here is a database schema( table schema); | Who was the director of Small Voices a film title used in nomination?It is not neccessary to use all the tables. |
SELECT country FROM table_name_45 WHERE rank < 6 AND notes = "fb" AND time = "6:32.32" | CREATE TABLE INST, Here is a database schema( table schema); | What country has a rank smaller than 6, a time of 6:32.32 and notes of FB?It is not neccessary to use all the tables. |
SELECT SUM(round) FROM table_name_87 WHERE name = "john o'day" AND pick < 3 | CREATE TABLE INST, Here is a database schema( table schema); | How many rounds have john o'day as the name and a pick less than 3?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 = "Rheumatic heart failure" AND lab.flag = "delta" | CREATE TABLE INST, Here is a database schema( table schema); | how many patients with rheumatic heart failure diagnoses have delta abnormal lab test status?It is not neccessary to use all the tables. |
SELECT MIN(miss_air) FROM table_30008638_1 | CREATE TABLE INST, Here is a database schema( table schema); | What is the least amount of Miss Airs any country has had?It is not neccessary to use all the tables. |
SELECT result FROM table_name_53 WHERE captain_1 = "louis burger" AND date = "30 october–2 november" | CREATE TABLE INST, Here is a database schema( table schema); | Which Result has a Captain 1 of louis burger and a Date of 30 october–2 november?It is not neccessary to use all the tables. |
SELECT state FROM table_name_5 WHERE venue = "thomas assembly center" | CREATE TABLE INST, Here is a database schema( table schema); | In what state is the Thomas Assembly Center located?It is not neccessary to use all the tables. |
SELECT MIN(episode_number) FROM table_12995531_3 WHERE total_viewers = 614000 | CREATE TABLE INST, Here is a database schema( table schema); | what is the episode number where the total viewers is 614000?It is not neccessary to use all the tables. |
SELECT Party FROM table WHERE Incumbent = Wright Patman | CREATE TABLE INST, Here is a database schema( table schema); | What party did incumbent Wright Patman belong to? .It is not neccessary to use all the tables. |
SELECT Result FROM table WHERE District = Virginia 11 | CREATE TABLE INST, Here is a database schema( table schema); | What is the result in the virginia 11 district?.It is not neccessary to use all the tables. |
SELECT Parish (Prestegjeld) FROM table WHERE Church Name = vangsnes kyrkje | CREATE TABLE INST, Here is a database schema( table schema); | Which parish has a church named Vangsnes Kyrkje?.It is not neccessary to use all the tables. |
SELECT Time FROM table WHERE Year = 2009 | CREATE TABLE INST, Here is a database schema( table schema); | What was the time for 2009?.It is not neccessary to use all the tables. |
SELECT Weeks on Top FROM table WHERE Issue Date(s) = 12 september | CREATE TABLE INST, Here is a database schema( table schema); | With an issue date(s) of 12 September, what is in the column for Weeks on Top?.It is not neccessary to use all the tables. |
SELECT cospar_id FROM table_18161217_2 WHERE estimated_operational_life = "2 months" AND satellite = "Kosmos 2397" | CREATE TABLE INST, Here is a database schema( table schema); | What is the cospar ID of the Kosmos 2397 satellite which has an operational life of 2 months?It is not neccessary to use all the tables. |
SELECT MIN("Goals") FROM table_53005 WHERE "Apps" < '22' | CREATE TABLE INST, Here is a database schema( table schema); | When the Apps were smaller than 22, what's the lowest amount of goals scored in a game?It is not neccessary to use all the tables. |
SELECT Men's singles FROM table WHERE Year = 1951 | CREATE TABLE INST, Here is a database schema( table schema); | Who played men's singles in 1951?.It is not neccessary to use all the tables. |
SELECT Surface FROM table WHERE Date = 23 january 2011 | CREATE TABLE INST, Here is a database schema( table schema); | Which Surface is on 23 january 2011?.It is not neccessary to use all the tables. |
SELECT Run time FROM table WHERE Viewers (in millions) = 7.4 | CREATE TABLE INST, Here is a database schema( table schema); | What is run time when there were 7.4 million viewers?.It is not neccessary to use all the tables. |
SELECT location FROM table_name_43 WHERE date = "11/08/1975*" | CREATE TABLE INST, Here is a database schema( table schema); | What is the Location of the game on 11/08/1975*?It is not neccessary to use all the tables. |
SELECT year FROM table_name_13 WHERE original_title = "la cérémonie" | CREATE TABLE INST, Here is a database schema( table schema); | Which Year has the Orginal title of La Cérémonie?It is not neccessary to use all the tables. |
SELECT MIN("Grid") FROM table_8762 WHERE "Time" = '+13.999' | CREATE TABLE INST, Here is a database schema( table schema); | Which Grid has a Time of +13.999?It is not neccessary to use all the tables. |
SELECT became_duchess FROM table_name_77 WHERE name = "eleonor magdalene of the palatinate-neuburg" | CREATE TABLE INST, Here is a database schema( table schema); | When did eleonor magdalene of the palatinate-neuburg become duchess?It is not neccessary to use all the tables. |
SELECT MAX(f_laps) FROM table_26178824_1 | CREATE TABLE INST, Here is a database schema( table schema); | what are the maximum f/laps?It is not neccessary to use all the tables. |
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.diagnosis = "OVERDOSE" AND demographic.dod_year <= "2168.0" | CREATE TABLE INST, Here is a database schema( table schema); | Give the number of patients whose primary disease is overdose and died in or before year 2168.It is not neccessary to use all the tables. |
SELECT date FROM table_name_27 WHERE home_team = "hawthorn" | CREATE TABLE INST, Here is a database schema( table schema); | When did Hawthorn play at home?It is not neccessary to use all the tables. |
SELECT MAX(losses) FROM table_name_82 WHERE wins = 0 AND win__percentage > 0 | CREATE TABLE INST, Here is a database schema( table schema); | What is the high loss total for players with zero wins and a win % greater than 0?It is not neccessary to use all the tables. |
SELECT AVG(price) FROM products WHERE manufacturer = 2 | CREATE TABLE INST, Here is a database schema( table schema); | What is the average price of products with manufacturer codes equal to 2?It is not neccessary to use all the tables. |
SELECT MIN Points FROM table WHERE Engine = bmw AND Chassis = march 792 AND Year > 1979 | CREATE TABLE INST, Here is a database schema( table schema); | Which engine of bmw had the lowest points and chassis of march 792 that is newer than 1979?.It is not neccessary to use all the tables. |
SELECT Year FROM table WHERE Fleet Number = 603 | CREATE TABLE INST, Here is a database schema( table schema); | Which year has a fleet number of 603?.It is not neccessary to use all the tables. |
SELECT Record FROM table WHERE Week = 9 | CREATE TABLE INST, Here is a database schema( table schema); | What was the record at week 9?.It is not neccessary to use all the tables. |
SELECT Hebrew FROM table WHERE Proto-Semitic = *tišʻ- | CREATE TABLE INST, Here is a database schema( table schema); | Name the hebrew for *tišʻ-.It is not neccessary to use all the tables. |
SELECT District FROM table WHERE Constituency number = 98 | CREATE TABLE INST, Here is a database schema( table schema); | What district has 98 constituencies?.It is not neccessary to use all the tables. |
SELECT gross FROM table_name_33 WHERE territory = "united kingdom" | CREATE TABLE INST, Here is a database schema( table schema); | What is the gross in the United Kingdom?It is not neccessary to use all the tables. |
SELECT Chassis FROM table WHERE Year = 1987 | CREATE TABLE INST, Here is a database schema( table schema); | What chassis has the year 1987?.It is not neccessary to use all the tables. |
SELECT AVG(t1.c1) FROM (SELECT SUM(cost.cost) AS c1 FROM cost WHERE cost.hadm_id IN (SELECT diagnoses_icd.hadm_id FROM diagnoses_icd WHERE diagnoses_icd.icd9_code = (SELECT d_icd_diagnoses.icd9_code FROM d_icd_diagnoses WHERE d_icd_diagnoses.short_title = 'opioid dependence-remiss')) AND STRFTIME('%y', cost.chargetime)... | CREATE TABLE INST, Here is a database schema( table schema); | what's the average hospital cost if there is opioid dependence-remiss since 2105?It is not neccessary to use all the tables. |
SELECT MIN(goals) FROM table_name_63 WHERE position = "second row" AND points > 12 | CREATE TABLE INST, Here is a database schema( table schema); | Tell me the lowest goals for second row and points more than 12It is not neccessary to use all the tables. |
SELECT Bachelorette FROM table WHERE Winner = ian mckee | CREATE TABLE INST, Here is a database schema( table schema); | Who was the bachelorette of the season where ian mckee was the winner?.It is not neccessary to use all the tables. |
SELECT Proto-Polynesian FROM table WHERE Proto-Malayo-Polynesian = *telu | CREATE TABLE INST, Here is a database schema( table schema); | Which Proto-Polynesian has a Proto-Malayo-Polynesian of *telu?.It is not neccessary to use all the tables. |
SELECT Record FROM table WHERE Team = Philadelphia | CREATE TABLE INST, Here is a database schema( table schema); | What was the team's record against philadelphia?.It is not neccessary to use all the tables. |
SELECT high_assists FROM table_name_76 WHERE high_points = "t. j. ford (29)" | CREATE TABLE INST, Here is a database schema( table schema); | What is High Assists when High Points is "T. J. Ford (29)"?It is not neccessary to use all the tables. |
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.gender = "M" AND procedures.long_title = "Other percutaneous procedures on biliary tract" | CREATE TABLE INST, Here is a database schema( table schema); | provide the number of male patients who underwent other percutaneous procedures on biliary tract.It is not neccessary to use all the tables. |
SELECT MAX(lost) FROM table_name_36 WHERE difference = "- 19" | CREATE TABLE INST, Here is a database schema( table schema); | What is the largest lost stat when the difference is - 19?It is not neccessary to use all the tables. |
SELECT COUNT(passed) FROM table_256286_40 WHERE yes_votes = 390338 | CREATE TABLE INST, Here is a database schema( table schema); | How many votes passed are listed on the measure that had 390338 yes votes?It is not neccessary to use all the tables. |
SELECT Company_name, COUNT(*) FROM phone GROUP BY Company_name ORDER BY COUNT(*) LIMIT 1 | CREATE TABLE INST, Here is a database schema( table schema); | Find the name of the company that has the least number of phone models. List the company name and the number of phone model produced by that company.It is not neccessary to use all the tables. |
SELECT MAX(annual_interchanges__millions__2011_12) FROM table_name_82 WHERE railway_station = "wimbledon" | CREATE TABLE INST, Here is a database schema( table schema); | What's the highest annual interchange for wimbledon railway station?It is not neccessary to use all the tables. |
SELECT percentage_lost FROM table_name_93 WHERE starting_weight__kg_ > 102 AND weight_lost__kg_ = 46.9 | CREATE TABLE INST, Here is a database schema( table schema); | What is the Percentage Lost for the contestant with a starting weight above 102 kg who lost 46.9 kg?It is not neccessary to use all the tables. |
SELECT 1st Place FROM table WHERE 3rd Place = TAU Cerámica | CREATE TABLE INST, Here is a database schema( table schema); | What team finished in 1st when tau cerámica was in 3rd?.It is not neccessary to use all the tables. |
SELECT Position in 2013 FROM table WHERE First season = 2014 | CREATE TABLE INST, Here is a database schema( table schema); | What position is the player whose first year is 2014.It is not neccessary to use all the tables. |
SELECT MIN(to_par) FROM table_name_8 WHERE player = "gary player" AND total > 145 | CREATE TABLE INST, Here is a database schema( table schema); | What is the lowest To par of gary player with more than 145 total?It is not neccessary to use all the tables. |
SELECT Cross Code Debut FROM table WHERE Int'l Debut = ru test new zealand v australia | CREATE TABLE INST, Here is a database schema( table schema); | What is the Cross Code Debut for a player that had their Int'l Debut of RU test New Zealand v Australia?.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 = "Cardiac dysrhythmias NEC" AND prescriptions.route = "IH" | CREATE TABLE INST, Here is a database schema( table schema); | provide the number of patients taking drug via ih route who were diagnosed with other cardiac dysrhythmias.It is not neccessary to use all the tables. |
SELECT position FROM table_10748727_1 WHERE races = 6 | CREATE TABLE INST, Here is a database schema( table schema); | What place is the team that completed 6 races?It is not neccessary to use all the tables. |
SELECT AVG Laps FROM table WHERE Driver = john watson AND Grid < 11 | CREATE TABLE INST, Here is a database schema( table schema); | How many Laps with a Grid smaller than 11 did John Watson have?.It is not neccessary to use all the tables. |
SELECT DISTINCT paper.paperid FROM paper, venue WHERE paper.year = 2015 AND venue.venueid = paper.venueid AND venue.venuename = 'nips' | CREATE TABLE INST, Here is a database schema( table schema); | nips papers 2015It is not neccessary to use all the tables. |
SELECT grand_prix FROM table_name_23 WHERE pole_position = "kimi räikkönen" | CREATE TABLE INST, Here is a database schema( table schema); | Name the Grand Prix for pole position of kimi räikkönenIt is not neccessary to use all the tables. |
SELECT MIN Shared Titles FROM table WHERE Last Final = 2006 | CREATE TABLE INST, Here is a database schema( table schema); | What is the minimum number of shared titles for the club whose last final was in 2006?.It is not neccessary to use all the tables. |
SELECT Date FROM table WHERE Partner = peter nyborg | CREATE TABLE INST, Here is a database schema( table schema); | When did he play with peter nyborg?.It is not neccessary to use all the tables. |
SELECT Director FROM table WHERE Language = dutch | CREATE TABLE INST, Here is a database schema( table schema); | Who is the Director that speaks dutch?.It is not neccessary to use all the tables. |
SELECT nation FROM table_22355_20 WHERE olympics = "1924–1928" AND bronze = 1 | CREATE TABLE INST, Here is a database schema( table schema); | What is the nation who won 1 bronze in the Olympics during 1924–1928?It is not neccessary to use all the tables. |
SELECT DISTINCT ground_service.transport_type FROM airport, airport_service, city, ground_service WHERE airport.airport_code = airport_service.airport_code AND city.city_code = airport_service.city_code AND city.city_name = 'BOSTON' AND ground_service.airport_code = airport.airport_code | CREATE TABLE INST, Here is a database schema( table schema); | what ground transportation is available at the BOSTON airportIt is not neccessary to use all the tables. |
SELECT Date FROM table WHERE Venue = vfl park | CREATE TABLE INST, Here is a database schema( table schema); | On which date was the venue of vfl park used?.It is not neccessary to use all the tables. |
SELECT Round FROM table WHERE Opponent = andre roberts | CREATE TABLE INST, Here is a database schema( table schema); | What is the round when the opponent is Andre Roberts?.It is not neccessary to use all the tables. |
SELECT Name FROM table WHERE Experience > 19 AND Alma Mater = eastern nazarene ('74) | CREATE TABLE INST, Here is a database schema( table schema); | What person has the alma mater of Eastern Nazarene ('74), and greater than 19 experience?.It is not neccessary to use all the tables. |
SELECT predecessor FROM table_name_54 WHERE district < 11 AND congress = "68th" AND date = "may 1, 1923" | CREATE TABLE INST, Here is a database schema( table schema); | What predecessor has a district less than 11 68th as the Congress and may 1 1923 as the date?It is not neccessary to use all the tables. |
SELECT Acquisition via FROM table WHERE Position = forward AND School/Club Team = state | CREATE TABLE INST, Here is a database schema( table schema); | Which acquisition via has a position of forward and is on the state school or club?.It is not neccessary to use all the tables. |
SELECT COUNT Yards per return FROM table WHERE Player = gizmo williams AND Games < 13 | CREATE TABLE INST, Here is a database schema( table schema); | Can you tell me the total number of Yards per return that has the Player of gizmo williams, and the Games smaller than 13?.It is not neccessary to use all the tables. |
SELECT episodes FROM table_name_98 WHERE first_airdate = "september 22, 1989" | CREATE TABLE INST, Here is a database schema( table schema); | How many episodes were in the season that first aired on September 22 1989?It is not neccessary to use all the tables. |
SELECT "Date of appointment" FROM table_30339 WHERE "Manner of departure" = 'fired' AND "Team" = 'Niger Tornadoes' | CREATE TABLE INST, Here is a database schema( table schema); | when was the next coach appointed after niger tornadoes fired their coach?It is not neccessary to use all the tables. |
SELECT home_team FROM table_name_3 WHERE date = "june 12" | CREATE TABLE INST, Here is a database schema( table schema); | Which Home Team is on june 12?It is not neccessary to use all the tables. |
SELECT Position FROM table WHERE CFL Team = montreal alouettes AND Pick # < 15 | CREATE TABLE INST, Here is a database schema( table schema); | Which position's cfl team was the Montreal Alouettes when the pick number was less than 15?.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.