sql
stringlengths
9
2.37k
table
stringclasses
9 values
query
stringlengths
51
503
SELECT SUM(year) FROM table_name_75 WHERE player_name = "ronnie bull"
CREATE TABLE INST, Here is a database schema( table schema);
How many years have a Player name of ronnie bull?It is not neccessary to use all the tables.
SELECT build_date FROM table_name_56 WHERE prr_class = "brs24"
CREATE TABLE INST, Here is a database schema( table schema);
What is the build date of the model with PRR Class brs24?It is not neccessary to use all the tables.
SELECT date FROM table_name_97 WHERE opponent = "george khrikadze"
CREATE TABLE INST, Here is a database schema( table schema);
What date did the opponent George Khrikadze play?It is not neccessary to use all the tables.
SELECT COUNT(games) AS ↑ FROM table_name_18 WHERE position = "fb"
CREATE TABLE INST, Here is a database schema( table schema);
How many games were played by the player at FB?It is not neccessary to use all the tables.
SELECT Country FROM table WHERE Total > 300
CREATE TABLE INST, Here is a database schema( table schema);
What is the country of the player who has a total larger than 300?.It is not neccessary to use all the tables.
SELECT Date FROM table WHERE Edition = 1991 world group i AND Opponent = li fang
CREATE TABLE INST, Here is a database schema( table schema);
When was the 1991 world group I with the opponent of Li Fang?.It is not neccessary to use all the tables.
SELECT series FROM table_name_85 WHERE title = "barbary coast bunny"
CREATE TABLE INST, Here is a database schema( table schema);
From which series is the title Barbary Coast Bunny?It is not neccessary to use all the tables.
SELECT diff FROM table_name_46 WHERE points_for = "662"
CREATE TABLE INST, Here is a database schema( table schema);
What is the diff for a club that has a value of 662 for points for?It is not neccessary to use all the tables.
SELECT River Mile FROM table WHERE Lock Side = rdb AND Pool Length (miles) = 55.4
CREATE TABLE INST, Here is a database schema( table schema);
What is the River Mile with a RDB lock side and a pool length of 55.4?.It is not neccessary to use all the tables.
SELECT third FROM table_name_78 WHERE lead = "zanda bikše"
CREATE TABLE INST, Here is a database schema( table schema);
Which Third has a Lead of zanda bikše?It is not neccessary to use all the tables.
SELECT AVG Facility ID FROM table WHERE Call sign = wnpr
CREATE TABLE INST, Here is a database schema( table schema);
WHich Facility ID has a Call sign of wnpr?.It is not neccessary to use all the tables.
SELECT COUNT(attendance) FROM table_name_75 WHERE week < 1
CREATE TABLE INST, Here is a database schema( table schema);
What is the attendance before week 1?It is not neccessary to use all the tables.
SELECT Result FROM table WHERE Date = july 16, 2000
CREATE TABLE INST, Here is a database schema( table schema);
Tell me the result of july 16, 2000.It is not neccessary to use all the tables.
SELECT vertical_0_b FROM table_25519358_1 WHERE horizontal_0_a = "明勾(YS月南)"
CREATE TABLE INST, Here is a database schema( table schema);
Name the vertical for 明勾(ys月南)It is not neccessary to use all the tables.
SELECT T2.address_id, T1.city FROM Addresses AS T1 JOIN Student_Addresses AS T2 ON T1.address_id = T2.address_id GROUP BY T2.address_id ORDER BY AVG(monthly_rental) DESC LIMIT 1
CREATE TABLE INST, Here is a database schema( table schema);
Find the id and city of the student address with the highest average monthly rental.It is not neccessary to use all the tables.
SELECT MIN $25 – 1/4 oz. FROM table WHERE $10 – 1/10 oz. = 70,250
CREATE TABLE INST, Here is a database schema( table schema);
WHAT IS THE LOWEST $25-1/4 OZ COIN WITH A $10-1/10 OZ OF $70,250?.It is not neccessary to use all the tables.
SELECT AVG(1990 AS _1991) FROM table_name_26 WHERE played = 38 AND points = 40
CREATE TABLE INST, Here is a database schema( table schema);
Which 1990-1991 is the average one that has Played of 38 and Points of 40?It is not neccessary to use all the tables.
SELECT date FROM table_name_44 WHERE time = "14:30" AND result = "0:1" AND home = "fc chiasso (chl)"
CREATE TABLE INST, Here is a database schema( table schema);
What day was the time 14:30 the result 0:1 and the home team fc chiasso (chl)?It is not neccessary to use all the tables.
SELECT Position FROM table WHERE Player = daultan leveille
CREATE TABLE INST, Here is a database schema( table schema);
What is Daultan Leveille's Position?.It is not neccessary to use all the tables.
SELECT MIN Best FROM table WHERE Qual 2 = 49.887
CREATE TABLE INST, Here is a database schema( table schema);
Who had the lowest Best time that also had a Qual 2 of 49.887?.It is not neccessary to use all the tables.
SELECT AVG(goals_against) FROM table_name_92 WHERE draws = 8 AND losses < 12 AND wins > 22
CREATE TABLE INST, Here is a database schema( table schema);
Name the average goals against for draws of 8 and wins more than 22 with losses less than 12It is not neccessary to use all the tables.
SELECT MIN(year_drafted) FROM table_18373863_2 WHERE years_played = "2005"
CREATE TABLE INST, Here is a database schema( table schema);
When 2005 is the year played what is the lowest year drafted?It is not neccessary to use all the tables.
SELECT The Tradition FROM table WHERE Year > 1998 AND Senior Players Championship = mark o'meara
CREATE TABLE INST, Here is a database schema( table schema);
When Mark O'meara was the senior player champion in a year greater than 1998, who was the tradition?.It is not neccessary to use all the tables.
SELECT zip_code FROM weather GROUP BY zip_code HAVING AVG(mean_humidity) < 70 INTERSECT SELECT zip_code FROM trip GROUP BY zip_code HAVING COUNT(*) >= 100
CREATE TABLE INST, Here is a database schema( table schema);
Give me the zip code where the average mean humidity is below 70 and at least 100 trips took place.It is not neccessary to use all the tables.
SELECT model_number FROM table_name_98 WHERE front_side_bus = "100mhz" AND l2_cache = "64kib" AND multiplier = "8.5×"
CREATE TABLE INST, Here is a database schema( table schema);
Which Model number has a Front Side Bus of 100mhz a L2-Cache of 64kib and a Multiplier of 8.5×?It is not neccessary to use all the tables.
SELECT IHSAA Class FROM table WHERE Location = columbia city
CREATE TABLE INST, Here is a database schema( table schema);
Which IHSAA Class has a Location of columbia city?.It is not neccessary to use all the tables.
SELECT Territory FROM table WHERE Acquired > 1899 AND Capital = saipan
CREATE TABLE INST, Here is a database schema( table schema);
What is the territory that was acquired past 1899 and has a capital of saipan?.It is not neccessary to use all the tables.
SELECT Clerk FROM table WHERE Highway Commissioners = albert lewis
CREATE TABLE INST, Here is a database schema( table schema);
Who was the clerk when the highway commissioner was Albert Lewis?.It is not neccessary to use all the tables.
SELECT "MSDN integration" FROM table_38392 WHERE "IntelliTrace" = 'yes'
CREATE TABLE INST, Here is a database schema( table schema);
Which MSDN integration has a IntelliTrace of yes?It is not neccessary to use all the tables.
SELECT MIN Year FROM table WHERE Chassis = lola t93/00 AND Start < 14
CREATE TABLE INST, Here is a database schema( table schema);
What is the lowest year that has lola t93/00 as the chassis with a start leas than 14?.It is not neccessary to use all the tables.
SELECT played FROM table_name_49 WHERE drawn = "0" AND points = "33"
CREATE TABLE INST, Here is a database schema( table schema);
What is the number of matches played for the team with 0 draws and 33 points?It is not neccessary to use all the tables.
SELECT T1.title FROM course AS T1 JOIN prereq AS T2 ON T1.course_id = T2.course_id GROUP BY T2.course_id HAVING COUNT(*) = 2
CREATE TABLE INST, Here is a database schema( table schema);
Find the title of courses that have two prerequisites?It is not neccessary to use all the tables.
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.admission_type = "EMERGENCY" AND prescriptions.route = "IV"
CREATE TABLE INST, Here is a database schema( table schema);
give me the number of emergency hospital admission patients who are taking drug via iv route.It is not neccessary to use all the tables.
SELECT "Dist (f)" FROM table_79627 WHERE "Race" = 'irish derby'
CREATE TABLE INST, Here is a database schema( table schema);
Which Dist (f) has a Race of irish derby?It is not neccessary to use all the tables.
SELECT Entrant FROM table WHERE Constructor = brm
CREATE TABLE INST, Here is a database schema( table schema);
What team used the BRM built car?.It is not neccessary to use all the tables.
SELECT MAX Draws FROM table WHERE Against > 2161
CREATE TABLE INST, Here is a database schema( table schema);
What is the highest draw against 2161?.It is not neccessary to use all the tables.
SELECT Home team FROM table WHERE Crowd > 18,200 AND Away team = st kilda
CREATE TABLE INST, Here is a database schema( table schema);
Which home team has a crowd larger than 18,200 and the St Kilda away team?.It is not neccessary to use all the tables.
SELECT Home team FROM table WHERE Attendance = 160
CREATE TABLE INST, Here is a database schema( table schema);
Which Home team had attendance 160?.It is not neccessary to use all the tables.
SELECT SUM(bronze) FROM table_name_24 WHERE rank = "3" AND total > 2
CREATE TABLE INST, Here is a database schema( table schema);
what is bronze when the rank is 3 and the total is more than 2?It is not neccessary to use all the tables.
SELECT title FROM table_27892955_1 WHERE us_viewers__million_ = "2.02"
CREATE TABLE INST, Here is a database schema( table schema);
What is the name of the episode that had 2.02 million u.s. viewers?It is not neccessary to use all the tables.
SELECT AVG(year) FROM table_name_96 WHERE award_ceremony = "drama desk award" AND category = "outstanding featured actress in a musical"
CREATE TABLE INST, Here is a database schema( table schema);
What year is associated with a drama desk award ceremony and a Category of outstanding featured actress in a musical?It is not neccessary to use all the tables.
SELECT winning_driver FROM table_name_48 WHERE location = "imola"
CREATE TABLE INST, Here is a database schema( table schema);
Which winning driver is located in Imola?It is not neccessary to use all the tables.
SELECT holmenkollen FROM table_name_22 WHERE country = "norway" AND winner = "tom sandberg"
CREATE TABLE INST, Here is a database schema( table schema);
Which Holmenkollen has a Country of norway, and a Winner of tom sandberg?It is not neccessary to use all the tables.
SELECT AVG(year) FROM table_name_50 WHERE type = "ep" AND title = "die shaolin affen ep"
CREATE TABLE INST, Here is a database schema( table schema);
What year had a title of Die Shaolin Affen EP and EP as the type?It is not neccessary to use all the tables.
SELECT MIN Total Attendance FROM table WHERE Team = New York Giants
CREATE TABLE INST, Here is a database schema( table schema);
What was the total attendance of the New York Giants?.It is not neccessary to use all the tables.
SELECT event FROM table_name_54 WHERE method = "submission (armbar)" AND opponent = "jason st. louis"
CREATE TABLE INST, Here is a database schema( table schema);
What is Event when Method is "Submission (Armbar)" and when Opponent is "Jason St. Louis"?It is not neccessary to use all the tables.
SELECT Extra FROM table WHERE Tournament = olympic games
CREATE TABLE INST, Here is a database schema( table schema);
Tell me the extra for tournament of olympic games.It is not neccessary to use all the tables.
SELECT event FROM table_name_2 WHERE year = 2006
CREATE TABLE INST, Here is a database schema( table schema);
What event was in 2006?It is not neccessary to use all the tables.
SELECT Crowned FROM table WHERE Co-kingship ceased = 17 September 1025
CREATE TABLE INST, Here is a database schema( table schema);
Name the crownded for 17 september 1025.It is not neccessary to use all the tables.
SELECT COUNT Country FROM table WHERE Per Capita Withdrawal (m 3 /p/yr) = 372
CREATE TABLE INST, Here is a database schema( table schema);
How many countries had a per capita withdrawal (m 3 /p/yr) of 372?.It is not neccessary to use all the tables.
SELECT Nominating Festival FROM table WHERE Film = un cartus de kent si un pachet de cafea
CREATE TABLE INST, Here is a database schema( table schema);
Name the nominating festival for un cartus de kent si un pachet de cafea.It is not neccessary to use all the tables.
SELECT name, LOCATION FROM cinema ORDER BY capacity DESC LIMIT 1
CREATE TABLE INST, Here is a database schema( table schema);
What are the name and location of the cinema with the largest capacity?It is not neccessary to use all the tables.
SELECT staffel_b FROM table_name_97 WHERE staffel_c = "hallescher fc chemie"
CREATE TABLE INST, Here is a database schema( table schema);
What is the Staffel B that has Hallescher Fc Chemie as Staffel C?It is not neccessary to use all the tables.
SELECT Method FROM table WHERE Event = shooto AND Round = 2 AND Opponent = issei tamura
CREATE TABLE INST, Here is a database schema( table schema);
Which method has an Event of shooto, a Round of 2, and an Opponent of issei tamura?.It is not neccessary to use all the tables.
SELECT green_communist FROM table_name_59 WHERE socialist = "41.0%"
CREATE TABLE INST, Here is a database schema( table schema);
What was the Green-Communist percentage in the poll in which the Socialist Party earned 41.0%?It is not neccessary to use all the tables.
SELECT Matches As Captain FROM table WHERE Asian Cup Played As A Captain = Qatar 1988
CREATE TABLE INST, Here is a database schema( table schema);
How many matches as captain were played where Asian Cup played as a captain is Qatar 1988.It is not neccessary to use all the tables.
SELECT Date FROM table WHERE Opponent = wales
CREATE TABLE INST, Here is a database schema( table schema);
When did they play against Wales?.It is not neccessary to use all the tables.
SELECT Party FROM table WHERE Year = 1955 AND Candidate = thomas mitchell
CREATE TABLE INST, Here is a database schema( table schema);
In 1955 which party did Thomas Mitchell belong to?.It is not neccessary to use all the tables.
SELECT Date FROM table WHERE Catalog = 32xa-112
CREATE TABLE INST, Here is a database schema( table schema);
What was the date for the catalog 32xa-112?.It is not neccessary to use all the tables.
SELECT MIN Game FROM table WHERE Date = november 1
CREATE TABLE INST, Here is a database schema( table schema);
What is the lowest Game, when Date is "November 1"?.It is not neccessary to use all the tables.
SELECT Director FROM table WHERE Total# = 14
CREATE TABLE INST, Here is a database schema( table schema);
Who is the director of the episode that corresponds to the total episodes number 14? .It is not neccessary to use all the tables.
SELECT Incumbent FROM table WHERE First elected = 1969
CREATE TABLE INST, Here is a database schema( table schema);
Who's the incumbent in the district that first elected in 1969?.It is not neccessary to use all the tables.
SELECT t2.drugname FROM (SELECT patient.uniquepid, diagnosis.diagnosistime FROM diagnosis JOIN patient ON diagnosis.patientunitstayid = patient.patientunitstayid WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '030-53416') AND diagnosis.diagnos...
CREATE TABLE INST, Here is a database schema( table schema);
what was the name of the drug prescribed to patient 030-53416 after having been diagnosed with hypovolemic shock in 05/2105 in the same day?It is not neccessary to use all the tables.
SELECT SUM Against FROM table 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 home_team AS score FROM table_name_47 WHERE home_team = "geelong"
CREATE TABLE INST, Here is a database schema( table schema);
Which Home team score has a Home team of geelong?It is not neccessary to use all the tables.
SELECT Date FROM table WHERE Home team = geelong
CREATE TABLE INST, Here is a database schema( table schema);
What was the date when Geelong was the home team?.It is not neccessary to use all the tables.
SELECT distance FROM table_name_26 WHERE type = "team time trial"
CREATE TABLE INST, Here is a database schema( table schema);
What is the distance for the team time trial?It is not neccessary to use all the tables.
SELECT 1988 FROM table_name_32 WHERE 1994 = "10–6"
CREATE TABLE INST, Here is a database schema( table schema);
What shows for 1988 when 1994 shows 10–6?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.admission_type = "ELECTIVE" AND procedures.icd9_code = "3607"
CREATE TABLE INST, Here is a database schema( table schema);
find the number of elective hospital admission patients with procedure icd9 code 3607.It is not neccessary to use all the tables.
SELECT Opponent FROM table WHERE Home/Away = home AND Date = july 27
CREATE TABLE INST, Here is a database schema( table schema);
Name the opponent which has a home/away of home and date of july 27.It is not neccessary to use all the tables.
SELECT stadium FROM table_name_56 WHERE opponent = "cal state fullerton titans"
CREATE TABLE INST, Here is a database schema( table schema);
What stadium had an opponent of Cal State Fullerton Titans?It is not neccessary to use all the tables.
SELECT AVG Rank (Timeslot) FROM table WHERE Rating > 2.9 AND Rating/share (18-49) = 2.6/8 AND Rank (Night) > 5
CREATE TABLE INST, Here is a database schema( table schema);
What is the timeslor rank for the episode with larger than 2.9 rating, rating/share of 2.6/8 and rank for the night higher than 5?.It is not neccessary to use all the tables.
SELECT jersey_number_s_ FROM table_name_54 WHERE years = "1986 – 1991 1997 – 1999"
CREATE TABLE INST, Here is a database schema( table schema);
What is the jersey number of the player from years 1986 – 1991 1997 – 1999?It is not neccessary to use all the tables.
SELECT days FROM table_name_48 WHERE the_presenter = "andreas mikroutsikos" AND launch_date = "march 10, 2003"
CREATE TABLE INST, Here is a database schema( table schema);
Which days were presented by Andreas Mikroutsikos and were launched on March 10 2003?It is not neccessary to use all the tables.
SELECT region FROM table_name_82 WHERE village = "chassagne-montrachet"
CREATE TABLE INST, Here is a database schema( table schema);
Which Reigon has a Village of Chassagne-Montrachet?It is not neccessary to use all the tables.
SELECT COUNT(total) FROM table_14260687_3 WHERE quarter = "2012 Q1"
CREATE TABLE INST, Here is a database schema( table schema);
How many total smartphones were shipped during the quarter 2012 Q1?It is not neccessary to use all the tables.
SELECT formats, COUNT(*) FROM files GROUP BY formats
CREATE TABLE INST, Here is a database schema( table schema);
For each file format, return the number of artists who released songs in that format. Show bar chart.It is not neccessary to use all the tables.
SELECT SUM("Rank") FROM table_13632 WHERE "Player" = 'matt ruth'
CREATE TABLE INST, Here is a database schema( table schema);
Which Rank has a Player of matt ruth?It is not neccessary to use all the tables.
SELECT Date FROM table WHERE Week > 6 AND Result = w 65-20
CREATE TABLE INST, Here is a database schema( table schema);
When was there a result of w 65-20 after week 6?.It is not neccessary to use all the tables.
SELECT race FROM table_name_88 WHERE time = "17:11.572"
CREATE TABLE INST, Here is a database schema( table schema);
Who holds the time of 17:11.572?It is not neccessary to use all the tables.
SELECT Name FROM table WHERE Position = gk AND From = wolverhampton wanderers
CREATE TABLE INST, Here is a database schema( table schema);
What is the name of the person who plays the GK position and is from the Wolverhampton Wanderers?.It is not neccessary to use all the tables.
SELECT "Away team score" FROM table_4755 WHERE "Crowd" > '22,000' AND "Venue" = 'western oval'
CREATE TABLE INST, Here is a database schema( table schema);
Which away team had a crowd larger than 22,000 at the Western Oval venue?It is not neccessary to use all the tables.
SELECT AVG Rank FROM table WHERE Total = 12
CREATE TABLE INST, Here is a database schema( table schema);
Which Rank has a Total of 12?.It is not neccessary to use all the tables.
SELECT catalog FROM table_name_16 WHERE region = "uk" AND label = "razor records"
CREATE TABLE INST, Here is a database schema( table schema);
What is Catalog when the Region is UK and when Label is Razor Records?It is not neccessary to use all the tables.
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.admission_type = "URGENT" AND demographic.admityear < "2190"
CREATE TABLE INST, Here is a database schema( table schema);
give me the number of patients whose admission type is urgent and admission year is less than 2190?It is not neccessary to use all the tables.
SELECT AVG Losses FROM table WHERE Against > 1255 AND Wins = 0 AND Draws < 0
CREATE TABLE INST, Here is a database schema( table schema);
What is the losses average when the against is greater than 1255 and wins is 0 and the draws less than 0?.It is not neccessary to use all the tables.
SELECT World Rank by QS , 2013 FROM table WHERE Members = University of Otago
CREATE TABLE INST, Here is a database schema( table schema);
What was the world rank by QS in 2013 for the University of Otago?.It is not neccessary to use all the tables.
SELECT 1 AS st_round FROM table_name_44 WHERE team_1 = "toulouse fc (d1)"
CREATE TABLE INST, Here is a database schema( table schema);
What is the first round when team 1 was toulouse fc (d1)?It is not neccessary to use all the tables.
SELECT streak FROM table_2846320_4 WHERE last_meeting = 2009
CREATE TABLE INST, Here is a database schema( table schema);
what is the length where the time is 2009It is not neccessary to use all the tables.
SELECT COUNT(DISTINCT t1.uniquepid) FROM (SELECT patient.uniquepid, diagnosis.diagnosistime FROM diagnosis JOIN patient ON diagnosis.patientunitstayid = patient.patientunitstayid WHERE diagnosis.diagnosisname = 'bone fracture(s) - left lower extremity' AND DATETIME(diagnosis.diagnosistime) <= DATETIME(CURRENT_TIME(), '...
CREATE TABLE INST, Here is a database schema( table schema);
count the number of patients who received vitamin k within 2 months after being diagnosed until 3 years ago with bone fracture(s) - left lower extremity.It is not neccessary to use all the tables.
SELECT * FROM table_test_22 WHERE systolic_blood_pressure_sbp >= 180 OR diastolic_blood_pressure_dbp >= 100
CREATE TABLE INST, Here is a database schema( table schema);
bp ( blood pressure ) > 180 / 100 mmhg ( on one measurement )It is not neccessary to use all the tables.
SELECT AVG(mintage) FROM table_name_62 WHERE issue_price = "$1,099.99" AND artist = "pamela stagg"
CREATE TABLE INST, Here is a database schema( table schema);
What was the mintage having an issue price of $1099.99 artist being Pamela Stagg?It is not neccessary to use all the tables.
SELECT Pages FROM table WHERE Date = 1987-08
CREATE TABLE INST, Here is a database schema( table schema);
How many pages does the story from 1987-08 have?.It is not neccessary to use all the tables.
SELECT College FROM table WHERE Player = Jim Bennett
CREATE TABLE INST, Here is a database schema( table schema);
What college did Jim Bennett attend?.It is not neccessary to use all the tables.
SELECT COUNT(frequency__mhz_) FROM table_name_52 WHERE type = "primary" AND call_letters = "ktbb-fm"
CREATE TABLE INST, Here is a database schema( table schema);
Frequency (MHz) that has a Type of primary and a Call letters of ktbb-fm has what total number?It is not neccessary to use all the tables.
SELECT region FROM table_name_43 WHERE name = "blaine county museum"
CREATE TABLE INST, Here is a database schema( table schema);
What is the region that the Blaine County Museum is located in?It is not neccessary to use all the tables.
SELECT AVG Attendance FROM table WHERE Opponent = @ philadelphia flyers AND Game < 42
CREATE TABLE INST, Here is a database schema( table schema);
What is the average Attendance, when Opponent is @ Philadelphia Flyers, and when Game is less than 42?.It is not neccessary to use all the tables.
SELECT Nation of citizenship FROM table WHERE Type of vehicle = stock car AND Year = 2012
CREATE TABLE INST, Here is a database schema( table schema);
What Nation of citizenship has a stock car vehicle with a year of 2012?.It is not neccessary to use all the tables.
SELECT Track FROM table WHERE Bobsleigh-skeleton curves = 14 AND Country = austria
CREATE TABLE INST, Here is a database schema( table schema);
Which track in Austria has Bobsleigh-skeleton curves with a grade of 14%?.It is not neccessary to use all the tables.
SELECT COUNT(production_number) FROM table_name_24 WHERE director = "robert mckimson" AND title = "mice follies"
CREATE TABLE INST, Here is a database schema( table schema);
What is the production number for the episode directed by Robert McKimson named Mice Follies?It is not neccessary to use all the tables.