sql
stringlengths
9
2.37k
table
stringclasses
9 values
query
stringlengths
51
503
SELECT MAX Grid FROM table WHERE Rider = tetsuya harada
CREATE TABLE INST, Here is a database schema( table schema);
What is the highest grid that tetsuya harada rode in?.It is not neccessary to use all the tables.
SELECT college_junior_club_team FROM table_1013129_8 WHERE player = "Keith McCambridge"
CREATE TABLE INST, Here is a database schema( table schema);
What team is Keith Mccambridge on?It is not neccessary to use all the tables.
SELECT colors FROM table_name_17 WHERE school = "zeigler high school"
CREATE TABLE INST, Here is a database schema( table schema);
What Colors has a School of zeigler high school?It is not neccessary to use all the tables.
SELECT COUNT(position) FROM table_name_58 WHERE gymnast = "oleksandr vorobiov ( ukr )" AND total > 16.25
CREATE TABLE INST, Here is a database schema( table schema);
What is the position for Oleksandr Vorobiov ( ukr ), when the total was larger than 16.25?It is not neccessary to use all the tables.
SELECT MAX Town ships FROM table WHERE Village groups = 376
CREATE TABLE INST, Here is a database schema( table schema);
How many townships are there in the region with 376 village groups?.It is not neccessary to use all the tables.
SELECT Club FROM table WHERE Number of seasons in Liga MX < 40 AND Number of seasons in top division = 65
CREATE TABLE INST, Here is a database schema( table schema);
Which club has fewer than 40 seasons in Liga MX and 65 seasons in the top division?.It is not neccessary to use all the tables.
SELECT tries_for FROM table_name_12 WHERE losing_bonus = "3" AND points = "45"
CREATE TABLE INST, Here is a database schema( table schema);
How many tries for did the club with a 3 losing bonus and 45 points have?It is not neccessary to use all the tables.
SELECT COUNT Rank (timeslot) FROM table WHERE Share (18–49) = 13
CREATE TABLE INST, Here is a database schema( table schema);
Name the rank timeslot for 18-49 share being 13.It is not neccessary to use all the tables.
SELECT Representative FROM table WHERE Congress = 112th
CREATE TABLE INST, Here is a database schema( table schema);
What name is listed under representative for the 112th congress?.It is not neccessary to use all the tables.
SELECT motorcycle FROM table_name_23 WHERE rider = "anthony west"
CREATE TABLE INST, Here is a database schema( table schema);
Anthony West ride which Motorcyle?It is not neccessary to use all the tables.
SELECT MIN(points) FROM table_name_84 WHERE team = "san martín de tucumán" AND played < 38
CREATE TABLE INST, Here is a database schema( table schema);
What's the lowest Points for the Team of San Martín De Tucumán and a Played that's smaller than 38?It is not neccessary to use all the tables.
SELECT DISTINCT fare.fare_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, fare, flight, flight_fare WHERE ((CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'BALTIMORE' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1....
CREATE TABLE INST, Here is a database schema( table schema);
US 3724 BALTIMORE to PHILADELPHIA what is the round trip fareIt is not neccessary to use all the tables.
SELECT time_retired FROM table_name_16 WHERE grid < 9 AND constructor = "ferrari" AND driver = "rubens barrichello"
CREATE TABLE INST, Here is a database schema( table schema);
Which Time/Retired has a grid smaller than 9 a Ferrari construct and is driven by Rubens Barrichello?It is not neccessary to use all the tables.
SELECT AVG(people_on_board) FROM table_name_48 WHERE airline = "iberia" AND aircraft_type = "lockheed l-1049g"
CREATE TABLE INST, Here is a database schema( table schema);
What is the number of people on board at Iberia Airline with the aircraft type of lockheed l-1049g?It is not neccessary to use all the tables.
SELECT Position FROM table WHERE Draft Pick # = 10
CREATE TABLE INST, Here is a database schema( table schema);
What position did the #10 draft pick play?.It is not neccessary to use all the tables.
SELECT Location Attendance FROM table WHERE Score = W 118-112
CREATE TABLE INST, Here is a database schema( table schema);
What was the location and attendance at the game where the final score is w 118-112?.It is not neccessary to use all the tables.
SELECT d_items.label FROM d_items WHERE d_items.itemid IN (SELECT inputevents_cv.itemid FROM inputevents_cv WHERE inputevents_cv.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 15821) AND NOT icustays.outtime IS N...
CREATE TABLE INST, Here is a database schema( table schema);
what was the name of the last intake that patient 15821 on the last intensive care unit visit had?It is not neccessary to use all the tables.
SELECT COUNT(wins) FROM table_name_96 WHERE goals_against < 32
CREATE TABLE INST, Here is a database schema( table schema);
What was the number of wins with goals against of less than 32?It is not neccessary to use all the tables.
SELECT Country FROM table WHERE Rank = 24
CREATE TABLE INST, Here is a database schema( table schema);
Which country is ranked 24?.It is not neccessary to use all the tables.
SELECT MIN(intakeoutput.cellvaluenumeric) FROM intakeoutput WHERE intakeoutput.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '015-59552')) AND intakeoutput.celllabel = 'outpu...
CREATE TABLE INST, Here is a database schema( table schema);
what is the daily minimum of output (ml)-chest tube right lateral output of patient 015-59552 in 12/this year?It is not neccessary to use all the tables.
SELECT MIN Earnings( $ ) FROM table WHERE Wins = 22 AND Rank < 2
CREATE TABLE INST, Here is a database schema( table schema);
What is the lowest level of Earnings($) to have a Wins value of 22 and a Rank lower than 2?.It is not neccessary to use all the tables.
SELECT transfer_window FROM table_name_63 WHERE transfer_fee = "n/a" AND moving_to = "free agent" AND name = "joe sagar"
CREATE TABLE INST, Here is a database schema( table schema);
What is the transfer window with n/a as the Transfer fee free agent for the Moving to and Joe Sagar as the name?It is not neccessary to use all the tables.
SELECT meter_200, SUM(meter_100) FROM swimmer GROUP BY meter_200 ORDER BY SUM(meter_100) DESC
CREATE TABLE INST, Here is a database schema( table schema);
Show me about the distribution of meter_200 and the sum of meter_100 , and group by attribute meter_200 in a bar chart, could you list y-axis from high to low order?It is not neccessary to use all the tables.
SELECT home_venue FROM table_283203_1 WHERE founded = 1993
CREATE TABLE INST, Here is a database schema( table schema);
Where is the home venue of the team founded in 1993?It is not neccessary to use all the tables.
SELECT score FROM table_name_11 WHERE date = "december 12, 1998"
CREATE TABLE INST, Here is a database schema( table schema);
What's the score on December 12 1998?It is not neccessary to use all the tables.
SELECT Wheelbase FROM table WHERE Body Styles = sport coupe (4p.)
CREATE TABLE INST, Here is a database schema( table schema);
What wheelbase has sport coupe (4p.) as the body style?.It is not neccessary to use all the tables.
SELECT date FROM table_name_51 WHERE oil_pattern = "chameleon" AND event = "lake county indiana classic"
CREATE TABLE INST, Here is a database schema( table schema);
Name the Date which has a Oil Pattern of chameleon and a Event of lake county indiana classic?It is not neccessary to use all the tables.
SELECT entrant FROM table_name_62 WHERE constructor = "benetton - playlife"
CREATE TABLE INST, Here is a database schema( table schema);
Which entrant had a constructor of benetton - playlife?It is not neccessary to use all the tables.
SELECT MIN(wins) FROM table_name_96 WHERE losses = 2
CREATE TABLE INST, Here is a database schema( table schema);
What is the lowest amount of wins of someone who has 2 losses?It is not neccessary to use all the tables.
SELECT mongolian FROM table_name_79 WHERE province = "municipality"
CREATE TABLE INST, Here is a database schema( table schema);
Which mongolian has the province of municipality?It is not neccessary to use all the tables.
SELECT T2.cell_mobile_number FROM Student_Addresses AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id ORDER BY T1.monthly_rental LIMIT 1
CREATE TABLE INST, Here is a database schema( table schema);
What is the cell phone number of the student whose address has the lowest monthly rental?It is not neccessary to use all the tables.
SELECT MAX Crowd FROM table WHERE Away team score = 4.9 (33)
CREATE TABLE INST, Here is a database schema( table schema);
What is the highest crowd listed when the away side scores 4.9 (33)?.It is not neccessary to use all the tables.
SELECT result FROM table_name_92 WHERE round = 5 AND event = "mt one"
CREATE TABLE INST, Here is a database schema( table schema);
Which Result has a Round of 5 and an Event of mt one?It is not neccessary to use all the tables.
SELECT MAX(total) FROM table_name_34 WHERE country = "spain"
CREATE TABLE INST, Here is a database schema( table schema);
What's spain's highest total?It is not neccessary to use all the tables.
SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, date_day, days, flight WHERE (((flight.departure_time BETWEEN 1200 AND 1800) AND date_day.day_number = 23 AND date_day.month_number = 4 AND date_day.year = 1991 AND days.day_...
CREATE TABLE INST, Here is a database schema( table schema);
list all flights from DENVER to SAN FRANCISCO on wednesday afternoonIt is not neccessary to use all the tables.
SELECT years FROM table_name_78 WHERE decile > 6 AND area = "waikouaiti"
CREATE TABLE INST, Here is a database schema( table schema);
What year has a decile more than 6 in the Waikouaiti area?It is not neccessary to use all the tables.
SELECT Date FROM table WHERE Album = l'un n'empêche pas l'autre
CREATE TABLE INST, Here is a database schema( table schema);
When has an Album of l'un n'empêche pas l'autre?.It is not neccessary to use all the tables.
SELECT driver FROM table_name_10 WHERE tyre = "p" AND entrant = "officine alfieri maserati"
CREATE TABLE INST, Here is a database schema( table schema);
Who is the driver when the tyre is p and the entrant is officine alfieri maserati?It is not neccessary to use all the tables.
SELECT Points difference FROM table WHERE Points for = 554
CREATE TABLE INST, Here is a database schema( table schema);
When there were 554 points, what was the point difference?.It is not neccessary to use all the tables.
SELECT Result FROM table WHERE Score = 48-12 AND City = penrith
CREATE TABLE INST, Here is a database schema( table schema);
What was the result of the match in Penrith that featured a score of 48-12?.It is not neccessary to use all the tables.
SELECT MIN Gold FROM table WHERE Bronze < 36 AND Rank = 2 AND Silver < 37
CREATE TABLE INST, Here is a database schema( table schema);
What is the lowest number of Gold, when the number of Bronze is less than 36, when the Rank is 2, and when Silver is less than 37?.It is not neccessary to use all the tables.
SELECT AVG(bronze) FROM table_name_27 WHERE silver > 0 AND total = 6 AND gold > 0
CREATE TABLE INST, Here is a database schema( table schema);
Name the average bronze with silver more than 0 total of 6 and gold more than 0It is not neccessary to use all the tables.
SELECT MAX 2006 FROM table WHERE 2002 < 0
CREATE TABLE INST, Here is a database schema( table schema);
How much is the highest number in 2006 with fewer than 0 in 2002?.It is not neccessary to use all the tables.
SELECT Surface FROM table WHERE Tournament = pune
CREATE TABLE INST, Here is a database schema( table schema);
What kind of surface was the tournament at Pune played on?.It is not neccessary to use all the tables.
SELECT Year FROM table WHERE Title = rio
CREATE TABLE INST, Here is a database schema( table schema);
What is the Year of Rio?.It is not neccessary to use all the tables.
SELECT MAX Tournaments FROM table WHERE Pro Debut = july 2002
CREATE TABLE INST, Here is a database schema( table schema);
What is the highest Tournaments, when Pro Debut is "July 2002"?.It is not neccessary to use all the tables.
SELECT Software_Platform, COUNT(*) FROM device GROUP BY Software_Platform ORDER BY COUNT(*)
CREATE TABLE INST, Here is a database schema( table schema);
A bar chart about what are the different software platforms for devices, and how many devices have each?, and rank by the the total number from low to high.It is not neccessary to use all the tables.
SELECT Score FROM table WHERE Opponent = boston celtics
CREATE TABLE INST, Here is a database schema( table schema);
What is the Score of the game against the boston celtics?.It is not neccessary to use all the tables.
SELECT result FROM table_21058823_1 WHERE record = "3-2-1"
CREATE TABLE INST, Here is a database schema( table schema);
What did they do in the game when their record was 3-2-1?It is not neccessary to use all the tables.
SELECT High points FROM table WHERE Location Attendance = Staples Center 18,997
CREATE TABLE INST, Here is a database schema( table schema);
Name the high points for the staples center 18,997.It is not neccessary to use all the tables.
SELECT height FROM table_name_59 WHERE current_club = "alta gestión fuenlabrada"
CREATE TABLE INST, Here is a database schema( table schema);
What is the height of the player who currently plays for Alta Gestión Fuenlabrada?It is not neccessary to use all the tables.
SELECT Builder FROM table WHERE Ship = zeehond
CREATE TABLE INST, Here is a database schema( table schema);
The Zeehond was built by whom?.It is not neccessary to use all the tables.
SELECT Margin FROM table WHERE Match Date = 19 Jan 2002
CREATE TABLE INST, Here is a database schema( table schema);
What was the margin of the match on 19 Jan 2002?.It is not neccessary to use all the tables.
SELECT engine FROM table_name_16 WHERE tire = "goodyear" AND sponsor = "herdez"
CREATE TABLE INST, Here is a database schema( table schema);
What is the engine of the goodyear tire and Herdez as a sponsor?It is not neccessary to use all the tables.
SELECT COUNT(location_attendance) FROM table_27882867_6 WHERE date = "January 11"
CREATE TABLE INST, Here is a database schema( table schema);
How many games did they play on january 11?It is not neccessary to use all the tables.
SELECT 7:00 PM FROM table WHERE 8:30 PM = tout le monde en parle
CREATE TABLE INST, Here is a database schema( table schema);
What shows for 7:00 PM when the 8:30 PM is tout le monde en parle?.It is not neccessary to use all the tables.
SELECT MIN(series__number) FROM table_14929574_3 WHERE directed_by = "Bill Eagles"
CREATE TABLE INST, Here is a database schema( table schema);
Which episode number was directed by Bill Eagles?It is not neccessary to use all the tables.
SELECT COUNT(total) FROM table_name_73 WHERE rank > 17 AND gold > 0
CREATE TABLE INST, Here is a database schema( table schema);
What's the total number that had a rank larger than 17 and a gold greater than 0?It is not neccessary to use all the tables.
SELECT Rank FROM table WHERE Total > 4 AND Nation = spain
CREATE TABLE INST, Here is a database schema( table schema);
Spain with a total of more than 4 medals is in what rank?.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.age < "70" AND procedures.long_title = "Regional lymph node excision"
CREATE TABLE INST, Here is a database schema( table schema);
give me the number of patients under 70 years of age who had regional lymph node excision.It is not neccessary to use all the tables.
SELECT AVG Silver FROM table WHERE Total < 2 AND Nation = south korea
CREATE TABLE INST, Here is a database schema( table schema);
Name the Silver that has a Total smaller than 2, and a Nation of south korea?.It is not neccessary to use all the tables.
SELECT to_par FROM table_name_56 WHERE score = 69 - 70 - 72 = 211
CREATE TABLE INST, Here is a database schema( table schema);
What is the to par for the 69-70-72=211 score?It is not neccessary to use all the tables.
SELECT MAX Goals For FROM table WHERE Lost = 25
CREATE TABLE INST, Here is a database schema( table schema);
What is the highest number of goals for for teams with 25 losses?.It is not neccessary to use all the tables.
SELECT General classification FROM table WHERE Stage = 13
CREATE TABLE INST, Here is a database schema( table schema);
What is the general classification with a 13 stage?.It is not neccessary to use all the tables.
SELECT high_rebounds FROM table_27723228_12 WHERE game = 81
CREATE TABLE INST, Here is a database schema( table schema);
Name the high rebounds for 81 gameIt is not neccessary to use all the tables.
SELECT MIN(south_american_rank) FROM table_2249087_1 WHERE nation = "Venezuela"
CREATE TABLE INST, Here is a database schema( table schema);
Name the south american rank for venezuelaIt is not neccessary to use all the tables.
SELECT round FROM table_name_43 WHERE year = 1968
CREATE TABLE INST, Here is a database schema( table schema);
What was the round in 1968?It is not neccessary to use all the tables.
SELECT Pop Act FROM table WHERE Album = all that you can't leave behind
CREATE TABLE INST, Here is a database schema( table schema);
Which act's album has a name of All That You Can't Leave Behind?.It is not neccessary to use all the tables.
SELECT Date FROM table WHERE Event = women's individual class 3
CREATE TABLE INST, Here is a database schema( table schema);
What was the date of the Women's Individual Class 3?.It is not neccessary to use all the tables.
SELECT date FROM table_name_45 WHERE athlete = "yelena isinbayeva" AND record = "4.90m(16ft0¾in)"
CREATE TABLE INST, Here is a database schema( table schema);
What is the Date when yelena isinbayeva was the Athlete with a Record of 4.90m(16ft0¾in)?It is not neccessary to use all the tables.
SELECT score FROM table_name_60 WHERE partner = "arnaud clément"
CREATE TABLE INST, Here is a database schema( table schema);
What was the score when the partner was arnaud clément?It is not neccessary to use all the tables.
SELECT MIN(weight__kg_) FROM table_name_67 WHERE jersey__number = 10
CREATE TABLE INST, Here is a database schema( table schema);
What was the lowest Weight (kg) for a player that had Jersey #10?It is not neccessary to use all the tables.
SELECT Partner FROM table WHERE Opponents in the final = anamika bhargava sylvia krywacz
CREATE TABLE INST, Here is a database schema( table schema);
Tell me the partner for opponents of anamika bhargava sylvia krywacz.It is not neccessary to use all the tables.
SELECT Round FROM table WHERE Venue = a AND Attendance > 14,314
CREATE TABLE INST, Here is a database schema( table schema);
What round was at the A venue with a attendance more than 14,314?.It is not neccessary to use all the tables.
SELECT MIN(fa_cup) FROM table_name_9 WHERE league > 0 AND malaysia_cup > 5
CREATE TABLE INST, Here is a database schema( table schema);
What is the lowest FA cup that has a league greater than 0 with a Malaysia cup greater than 5?It is not neccessary to use all the tables.
SELECT Finalists FROM table WHERE Surface = hard AND Winners = serena williams 6–1, 6–7(7), 6–3
CREATE TABLE INST, Here is a database schema( table schema);
Who was the Finalist on a Hard Surface with Winner Serena Williams 6–1, 6–7(7), 6–3?.It is not neccessary to use all the tables.
SELECT payment_method_code, COUNT(*) FROM Customers GROUP BY payment_method_code ORDER BY payment_method_code
CREATE TABLE INST, Here is a database schema( table schema);
Return a bar chart on how many customers use each payment method?, and I want to rank x-axis from low to high order.It is not neccessary to use all the tables.
SELECT Rank FROM table WHERE Cause of death = gunfire AND Badge/Serial Number = 11755
CREATE TABLE INST, Here is a database schema( table schema);
What is the Rank of the Officer with Badge/Serial Number 11755 who died in Gunfire?.It is not neccessary to use all the tables.
SELECT t1.drug FROM (SELECT prescriptions.drug, COUNT(prescriptions.startdate) AS c1 FROM prescriptions WHERE prescriptions.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 54281) AND DATETIME(prescriptions.startdate) <= DATETIME(CURRENT_TIME(), '-8 month') GROUP BY prescriptions.drug...
CREATE TABLE INST, Here is a database schema( table schema);
what was the name of the drug, which patient 54281 had been prescribed two or more times until 8 months ago?It is not neccessary to use all the tables.
SELECT Segment A FROM table WHERE Segment B = Snowboards
CREATE TABLE INST, Here is a database schema( table schema);
What was segment A when segment B was snowboards? .It is not neccessary to use all the tables.
SELECT ICAO FROM table WHERE Province = heilongjiang AND IATA = jmu
CREATE TABLE INST, Here is a database schema( table schema);
Which ICAO has a Province of heilongjiang, and a IATA of jmu?.It is not neccessary to use all the tables.
SELECT MAX(founded) FROM table_1183842_1 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 serials_issued FROM table_name_39 WHERE design = "yellow on blue" AND issued = 1955
CREATE TABLE INST, Here is a database schema( table schema);
What was the issued serial for yellow on blue design issued in 1955?It is not neccessary to use all the tables.
SELECT south FROM table_name_92 WHERE season = "2004-05"
CREATE TABLE INST, Here is a database schema( table schema);
Who was in the South in the 2004-05 season?It is not neccessary to use all the tables.
SELECT Country FROM table WHERE Wins > 2 AND Rank = 2 AND Name = federico bahamontes
CREATE TABLE INST, Here is a database schema( table schema);
Which Country has Wins larger than 2, and a Rank of 2, and a Name of federico bahamontes?.It is not neccessary to use all the tables.
SELECT COUNT(pick) FROM table_2886617_4 WHERE player = "Alyn McCauley"
CREATE TABLE INST, Here is a database schema( table schema);
How many times did Alyn McCauley get picked?It is not neccessary to use all the tables.
SELECT AVG(grid) FROM table_name_10 WHERE constructor = "ferrari" AND time_retired = "1:32:35.101"
CREATE TABLE INST, Here is a database schema( table schema);
What is the average grid number with a ferrari and a time or retired time of 1:32:35.101?It is not neccessary to use all the tables.
SELECT run_2 FROM table_name_73 WHERE country = "australia" AND run_1 < 53.75
CREATE TABLE INST, Here is a database schema( table schema);
What is the run 2 of the athlete from Australia with a run 1 less than 53.75?It is not neccessary to use all the tables.
SELECT tournament FROM table_name_98 WHERE opponent = "lu jiaxiang"
CREATE TABLE INST, Here is a database schema( table schema);
What is Tournament when Opponent is "Lu Jiaxiang"?It is not neccessary to use all the tables.
SELECT moving_to FROM table_name_22 WHERE country = "fra"
CREATE TABLE INST, Here is a database schema( table schema);
Name the moving to for fraIt is not neccessary to use all the tables.
SELECT Athlete FROM table WHERE Notes = fb AND Rank < 5
CREATE TABLE INST, Here is a database schema( table schema);
Who has less than 5 rank and notes of fb?.It is not neccessary to use all the tables.
SELECT start_station_name, start_station_id FROM trip ORDER BY start_station_id DESC
CREATE TABLE INST, Here is a database schema( table schema);
what are the ids and names of all start stations that were the beginning of at least 200 trips?, sort start_station_id from high to low order.It is not neccessary to use all the tables.
SELECT score FROM table_name_98 WHERE loss = "embree (1-2)"
CREATE TABLE INST, Here is a database schema( table schema);
What was the score of the game that had a loss of Embree (1-2)?It is not neccessary to use all the tables.
SELECT date FROM table_11960944_4 WHERE team = "@ Memphis"
CREATE TABLE INST, Here is a database schema( table schema);
Which date was the team playing @ Memphis?It is not neccessary to use all the tables.
SELECT Against FROM table WHERE Opponent = Kristian Pless
CREATE TABLE INST, Here is a database schema( table schema);
If the opponent is Kristian Pless, who was it against?.It is not neccessary to use all the tables.
SELECT Destination FROM table WHERE Service Pattern = Sydenham then fast to Norwood Junction
CREATE TABLE INST, Here is a database schema( table schema);
Where is the service pattern sydenham then fast to norwood junction?.It is not neccessary to use all the tables.
SELECT name FROM table_name_17 WHERE best = "1:45.361"
CREATE TABLE INST, Here is a database schema( table schema);
What is the name for the best of 1:45.361?It is not neccessary to use all the tables.
SELECT traditional FROM table_name_14 WHERE population = "44,803"
CREATE TABLE INST, Here is a database schema( table schema);
What shows for traditional when the population was 44803?It is not neccessary to use all the tables.
SELECT contestant_name FROM contestants WHERE contestant_name <> 'Jessie Alloway'
CREATE TABLE INST, Here is a database schema( table schema);
What are the names of the contestants whose names are not 'Jessie Alloway'It is not neccessary to use all the tables.
SELECT MIN Capacity FROM table WHERE Class = cm22 AND Vehicle = 1999 subaru impreza wrx sti
CREATE TABLE INST, Here is a database schema( table schema);
Which Capacity has a Class of cm22, and a Vehicle of 1999 subaru impreza wrx sti?.It is not neccessary to use all the tables.