sql
stringlengths
9
2.37k
table
stringclasses
9 values
query
stringlengths
51
503
SELECT Produced FROM table WHERE Aircraft = kai kuh-1 surion
CREATE TABLE INST, Here is a database schema( table schema);
Where was the Kai Kuh-1 Surion Produced?.It is not neccessary to use all the tables.
SELECT (SELECT SUM(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 = '017-20711')) AND intakeoutput.cellpath LIKE '%intake%' AND DATETIME(intakeoutput.intakeoutputtime, 'start of month') = DATETIME(CURRENT_TIME(), 'start of month', '-1 month') AND STRFTIME('%d', intakeoutput.intakeoutputtime) = '16') - (SELECT SUM(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 = '017-20711')) AND intakeoutput.cellpath LIKE '%output%' AND DATETIME(intakeoutput.intakeoutputtime, 'start of month') = DATETIME(CURRENT_TIME(), 'start of month', '-1 month') AND STRFTIME('%d', intakeoutput.intakeoutputtime) = '16')
CREATE TABLE INST, Here is a database schema( table schema);
what's the difference between the total output and the amount of input for patient 017-20711 on last month/16?It is not neccessary to use all the tables.
SELECT league FROM table_name_18 WHERE away = "2-3"
CREATE TABLE INST, Here is a database schema( table schema);
What league has 2-3 as the away?It is not neccessary to use all the tables.
SELECT hometown FROM table_name_83 WHERE player = "cody zeller"
CREATE TABLE INST, Here is a database schema( table schema);
What is the hometown of Cody Zeller?It is not neccessary to use all the tables.
SELECT MAX(goal) FROM table_name_14 WHERE score = "3-0"
CREATE TABLE INST, Here is a database schema( table schema);
What is the largest goal with a Score of 3-0?It is not neccessary to use all the tables.
SELECT Proto-Germanic FROM table WHERE Old English = /d/
CREATE TABLE INST, Here is a database schema( table schema);
What's the Proto-Germanic when the Old English is /d/?.It is not neccessary to use all the tables.
SELECT result FROM table_name_84 WHERE date = "11/02/1946"
CREATE TABLE INST, Here is a database schema( table schema);
What was the Result on 11/02/1946?It is not neccessary to use all the tables.
SELECT MAX(game) FROM table_17311783_8 WHERE team = "Charlotte"
CREATE TABLE INST, Here is a database schema( table schema);
In what game did Miami play Charlotte?It is not neccessary to use all the tables.
SELECT event FROM table_22644589_4 WHERE compulsory_dance__cd_ = "23.75"
CREATE TABLE INST, Here is a database schema( table schema);
In what even was the compulsory dance scored 23.75?It is not neccessary to use all the tables.
SELECT COUNT Average Attendance FROM table WHERE Capacity Percentage = 96.5%
CREATE TABLE INST, Here is a database schema( table schema);
How many average attendance has a capacity percentage of 96.5%.It is not neccessary to use all the tables.
SELECT date_of_appointment FROM table_name_94 WHERE replaced_by = "markus babbel"
CREATE TABLE INST, Here is a database schema( table schema);
What is the date of appointment of the manager who was replaced by markus babbel?It is not neccessary to use all the tables.
SELECT District FROM table WHERE Others = 18.3
CREATE TABLE INST, Here is a database schema( table schema);
Name the district for others being 18.3.It is not neccessary to use all the tables.
SELECT name FROM manufacturers WHERE revenue BETWEEN 100 AND 150
CREATE TABLE INST, Here is a database schema( table schema);
Find the name of companies whose revenue is between 100 and 150.It is not neccessary to use all the tables.
SELECT category FROM table_name_40 WHERE result = "nominated" AND lost_to = "jennifer westfeldt ( kissing jessica stein )"
CREATE TABLE INST, Here is a database schema( table schema);
which Category has a Result of nominated and a Lost to of jennifer westfeldt ( kissing jessica stein )?It is not neccessary to use all the tables.
SELECT MIN(class_year) FROM table_22982552_9 WHERE player = "Vencie Glenn"
CREATE TABLE INST, Here is a database schema( table schema);
What class year was Vencie Glenn from?It is not neccessary to use all the tables.
SELECT COUNT(*) FROM appointment
CREATE TABLE INST, Here is a database schema( table schema);
How many appointments are there?It is not neccessary to use all the tables.
SELECT kickoff_[a_] FROM table_name_66 WHERE record = "1-7"
CREATE TABLE INST, Here is a database schema( table schema);
When was the kickoff during a game with a record of 1-7?It is not neccessary to use all the tables.
SELECT score FROM table_17382360_7 WHERE team = "Boston Celtics"
CREATE TABLE INST, Here is a database schema( table schema);
what is the score in february 12 of the boston celtics teamIt is not neccessary to use all the tables.
SELECT 2nd leg FROM table WHERE Team 1 = union berlin
CREATE TABLE INST, Here is a database schema( table schema);
What is the 2nd leg that Team 1 is Union Berlin?.It is not neccessary to use all the tables.
SELECT competition FROM table_name_54 WHERE result = "win" AND date = "august 15, 2012"
CREATE TABLE INST, Here is a database schema( table schema);
Which competition did he win on August 15 2012?It is not neccessary to use all the tables.
SELECT playoffs FROM table_name_50 WHERE division = "2" AND regular_season = "4th, southeast"
CREATE TABLE INST, Here is a database schema( table schema);
Which Playoffs has a Division of 2 and a Regular Season of 4th southeast?It is not neccessary to use all the tables.
SELECT lab.labresulttime FROM lab WHERE lab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '016-38131')) AND lab.labname = 'sodium' AND STRFTIME('%y-%m', lab.labresulttime) = '2105-12' ORDER BY lab.labresulttime LIMIT 1
CREATE TABLE INST, Here is a database schema( table schema);
when was patient 016-38131 first given a sodium test in 12/2105?It is not neccessary to use all the tables.
SELECT Type FROM table WHERE Enrollment = 2102
CREATE TABLE INST, Here is a database schema( table schema);
what type is the institute that enrolled 2102.It is not neccessary to use all the tables.
SELECT Location FROM table WHERE Rank = 147
CREATE TABLE INST, Here is a database schema( table schema);
Which location has a rank of 147?.It is not neccessary to use all the tables.
SELECT royal_house FROM table_name_94 WHERE name = "shaokang"
CREATE TABLE INST, Here is a database schema( table schema);
What royal house did Shaokang belong to?It is not neccessary to use all the tables.
SELECT Type FROM table WHERE Opened = 1982
CREATE TABLE INST, Here is a database schema( table schema);
Which type opened in 1982?.It is not neccessary to use all the tables.
SELECT Opponent FROM table WHERE Streak = won 9 AND Date = april 13, 1990
CREATE TABLE INST, Here is a database schema( table schema);
who is the opponent when the streak is won 9 on april 13, 1990?.It is not neccessary to use all the tables.
SELECT SUM Interview FROM table WHERE Province = monte cristi AND Swimsuit > 7.27
CREATE TABLE INST, Here is a database schema( table schema);
Which Interview has a Province of monte cristi and a Swimsuit larger than 7.27.It is not neccessary to use all the tables.
SELECT home FROM table_name_79 WHERE season = "1949-50"
CREATE TABLE INST, Here is a database schema( table schema);
What was the home for season 1949-50?It is not neccessary to use all the tables.
SELECT MAX(total) FROM table_name_30 WHERE to_par = 10
CREATE TABLE INST, Here is a database schema( table schema);
WHAT IS THE TOTAL WITH A TO PAR OF 10?It is not neccessary to use all the tables.
SELECT player FROM table_name_38 WHERE position = "quarterback" AND college = "arkansas state"
CREATE TABLE INST, Here is a database schema( table schema);
Who is the quarterback for Arkansas State?It is not neccessary to use all the tables.
SELECT Date FROM table WHERE Opponents = notts county AND League position = 1st
CREATE TABLE INST, Here is a database schema( table schema);
What date was Notts County the opponent and the league position was 1st?.It is not neccessary to use all the tables.
SELECT MIN Build date FROM table WHERE Disposal = scrapped 1941
CREATE TABLE INST, Here is a database schema( table schema);
Which railway had the earliest build date and a disposal of "Scrapped 1941?".It is not neccessary to use all the tables.
SELECT MAX Vertices FROM table WHERE Dual Archimedean solid = truncated dodecahedron
CREATE TABLE INST, Here is a database schema( table schema);
Which Vertices have a Dual Archimedean solid of truncated dodecahedron?.It is not neccessary to use all the tables.
SELECT T1.date_of_completion FROM Student_Course_Enrolment AS T1 JOIN Student_Tests_Taken AS T2 ON T1.registration_id = T2.registration_id WHERE T2.test_result = "Fail"
CREATE TABLE INST, Here is a database schema( table schema);
What are the completion dates of all the tests that have result "Fail"?It is not neccessary to use all the tables.
SELECT team FROM table_name_18 WHERE speed = "113.316mph"
CREATE TABLE INST, Here is a database schema( table schema);
What's the name of the team that went 113.316mph?It is not neccessary to use all the tables.
SELECT city_of_license FROM table_name_28 WHERE frequency_mhz > 102.3 AND call_sign = "k292eu"
CREATE TABLE INST, Here is a database schema( table schema);
In which city is the station licensed whose frequency MHz is higher than 102.3 and whose call sign is K292EU?It is not neccessary to use all the tables.
SELECT MAX Played FROM table WHERE Goals against > 60 AND Losses < 29
CREATE TABLE INST, Here is a database schema( table schema);
When goals against is greater than 60 and losses less than 29, what is the highest played?.It is not neccessary to use all the tables.
SELECT date FROM table_name_40 WHERE opponent = "indianapolis colts"
CREATE TABLE INST, Here is a database schema( table schema);
When was the game against the Indianapolis Colts?It is not neccessary to use all the tables.
SELECT City, Country FROM AIRPORTS WHERE AirportName = "Alton"
CREATE TABLE INST, Here is a database schema( table schema);
Which city and country is the Alton airport at?It is not neccessary to use all the tables.
SELECT Second member FROM table WHERE Second party = whig AND Election = 1834
CREATE TABLE INST, Here is a database schema( table schema);
Who is the second member that is a second party Whig in the 1834 election?.It is not neccessary to use all the tables.
SELECT MIN("Production Num.") FROM table_65238 WHERE "Series" = 'lt' AND "Title" = 'dumb patrol'
CREATE TABLE INST, Here is a database schema( table schema);
What is the smallest production number for the LT series with the Dumb Patrol title?It is not neccessary to use all the tables.
SELECT aspect_ratio FROM table_272313_2 WHERE pixel_aspect_ratio = "SMPTE 259M" AND scanning = "interlaced"
CREATE TABLE INST, Here is a database schema( table schema);
Name the aspect ratio for smpte 259m and interlaced scanningIt is not neccessary to use all the tables.
SELECT attendance FROM table_name_27 WHERE opponent = "carolina panthers"
CREATE TABLE INST, Here is a database schema( table schema);
Which Attendance has an Opponent of carolina panthers?It is not neccessary to use all the tables.
SELECT Week 2 FROM table WHERE Week 4 = piret aava
CREATE TABLE INST, Here is a database schema( table schema);
What Week 2 has a Week 4 of piret aava?.It is not neccessary to use all the tables.
SELECT on_air_id FROM table_name_54 WHERE band = "fm" AND callsign = "4nsa"
CREATE TABLE INST, Here is a database schema( table schema);
What is the On-air ID of FM broadcaster 4nsa?It is not neccessary to use all the tables.
SELECT MAX(density) FROM table_name_88 WHERE province = "independencia" AND area < 2 OFFSET 007.4
CREATE TABLE INST, Here is a database schema( table schema);
What is the highest Density for the independencia province with an area smaller than 2007.4?It is not neccessary to use all the tables.
SELECT Method FROM table WHERE Location = tokyo , japan AND Event = rings: millennium combine 2
CREATE TABLE INST, Here is a database schema( table schema);
What is Method, when Location is "Tokyo , Japan", and when Event is "Rings: Millennium Combine 2"?.It is not neccessary to use all the tables.
SELECT Reversal symmetry FROM table WHERE Non-dictatorship = no AND Condorcet loser = no
CREATE TABLE INST, Here is a database schema( table schema);
what is the reversal symmetry when the non-dictatorship is no and condorcet loser is no?.It is not neccessary to use all the tables.
SELECT 2008 FROM table_name_41 WHERE 2012 = "sf"
CREATE TABLE INST, Here is a database schema( table schema);
Name the 2008 for 2012 of sfIt is not neccessary to use all the tables.
SELECT "Lap-by-lap" FROM table_78361 WHERE "Year" > '2008' AND "Pre-Race Host" = 'chris myers' AND "Ratings" = '9.9/22'
CREATE TABLE INST, Here is a database schema( table schema);
What Lap-by-lap has Chris Myers as the Pre-Race Host, a Year larger than 2008, and 9.9/22 as its Ratings?It is not neccessary to use all the tables.
SELECT date FROM table_name_49 WHERE home_team = "north melbourne"
CREATE TABLE INST, Here is a database schema( table schema);
When the Home team was north melbourne what was the Date of the game?It is not neccessary to use all the tables.
SELECT score FROM table_name_70 WHERE attendance = "23,493"
CREATE TABLE INST, Here is a database schema( table schema);
What was the score when the Rangers' attendance was 23,493?It is not neccessary to use all the tables.
SELECT date FROM table_name_51 WHERE tie_no = "6"
CREATE TABLE INST, Here is a database schema( table schema);
Name the team with a tie number of 6.It is not neccessary to use all the tables.
SELECT Cross Country FROM table WHERE Soccer = ashland AND Volleyball = wooster AND School Year = 2006-07
CREATE TABLE INST, Here is a database schema( table schema);
What is Cross Country, when Soccer is Ashland, when Volleyball is Wooster, and when School Year is 2006-07?.It is not neccessary to use all the tables.
SELECT MAX Prominence (m) FROM table WHERE Peak = Mount Gauttier
CREATE TABLE INST, Here is a database schema( table schema);
When mount gauttier is the peak what is the highest prominence in meters?.It is not neccessary to use all the tables.
SELECT SUM 2001 FROM table WHERE Year = ebitda AND 2009 < 3,600
CREATE TABLE INST, Here is a database schema( table schema);
what is 2001 when the year is ebitda and 2009 is less than 3,600?.It is not neccessary to use all the tables.
SELECT Distance FROM table WHERE Feature = ridge
CREATE TABLE INST, Here is a database schema( table schema);
what is the distance for ridge?.It is not neccessary to use all the tables.
SELECT Spacecraft FROM table WHERE End Time = 4 september 04:51
CREATE TABLE INST, Here is a database schema( table schema);
What is the spacecraft with end time of 4 September 04:51?.It is not neccessary to use all the tables.
SELECT position FROM table_2897457_3 WHERE nhl_team = "New Jersey Devils"
CREATE TABLE INST, Here is a database schema( table schema);
Which position has new Jersey Devils as the nhl team?It is not neccessary to use all the tables.
SELECT Goodman FROM table WHERE Total = 31 AND Horwood = 7 AND Result = Safe
CREATE TABLE INST, Here is a database schema( table schema);
What score did Goodman give to all songs with safe results, which received a 7 from Horwood and have a total score of 31?.It is not neccessary to use all the tables.
SELECT Score FROM table WHERE Opponent = philadelphia 76ers
CREATE TABLE INST, Here is a database schema( table schema);
What is the Score of the game against Philadelphia 76ers?.It is not neccessary to use all the tables.
SELECT COUNT College/junior/club team FROM table WHERE Player = John Dzikowski
CREATE TABLE INST, Here is a database schema( table schema);
How many different college/junior/club teams had player John Dzikowski?.It is not neccessary to use all the tables.
SELECT 2008 Rank FROM table WHERE Country = Djibouti
CREATE TABLE INST, Here is a database schema( table schema);
What is the 2008 rank of Djibouti? .It is not neccessary to use all the tables.
SELECT standard FROM table_name_79 WHERE pollutant = "o 3" AND averaging_time = "8-hour"
CREATE TABLE INST, Here is a database schema( table schema);
what is the standard when the pollutant is o 3 and averaging time is 8-hour?It is not neccessary to use all the tables.
SELECT viewers FROM table_27547668_3 WHERE _number = 13
CREATE TABLE INST, Here is a database schema( table schema);
How many people watched episode number 13?It is not neccessary to use all the tables.
SELECT MAX(touchdowns) FROM table_20906175_3 WHERE qb_rating = "82.7"
CREATE TABLE INST, Here is a database schema( table schema);
How many touchdowns were scored when QB rating was 82.7?It is not neccessary to use all the tables.
SELECT name FROM table_name_30 WHERE law_school_attended = "columbia law school" AND appointed = 2004
CREATE TABLE INST, Here is a database schema( table schema);
Who attended Columbia law school and was appointed in 2004?It is not neccessary to use all the tables.
SELECT Jockey FROM table WHERE Weight (kg) = 53.5
CREATE TABLE INST, Here is a database schema( table schema);
For which jockey was the weight in kg 53.5? .It is not neccessary to use all the tables.
SELECT result FROM table_1341663_44 WHERE incumbent = "George H. Mahon"
CREATE TABLE INST, Here is a database schema( table schema);
Name the result when the incumbent was george h. mahonIt is not neccessary to use all the tables.
SELECT Hometown FROM table WHERE Country = Belarus
CREATE TABLE INST, Here is a database schema( table schema);
When belarus is the country what is the hometown?.It is not neccessary to use all the tables.
SELECT High rebounds FROM table WHERE Game < 9 AND Opponent = detroit
CREATE TABLE INST, Here is a database schema( table schema);
Which High rebounds has a Game smaller than 9, and a Opponent of detroit?.It is not neccessary to use all the tables.
SELECT card_type_code, SUM(card_number) FROM Customers_Cards GROUP BY card_type_code ORDER BY SUM(card_number) DESC
CREATE TABLE INST, Here is a database schema( table schema);
What are card ids, customer ids, card types, and card numbers for each customer card?, and could you show y axis in desc order?It is not neccessary to use all the tables.
SELECT original_air_date FROM table_23399481_3 WHERE season__number = 4
CREATE TABLE INST, Here is a database schema( table schema);
What is the original air date for episode 4?It is not neccessary to use all the tables.
SELECT opponents FROM table_name_3 WHERE wicket_partnership = "5th"
CREATE TABLE INST, Here is a database schema( table schema);
Who was the opponents of the 5th Wicket Partnership?It is not neccessary to use all the tables.
SELECT opponent FROM table_name_45 WHERE overs = 3.3
CREATE TABLE INST, Here is a database schema( table schema);
Who was the opponent when Steven Smith had 3.3 overs?It is not neccessary to use all the tables.
SELECT event FROM table_name_87 WHERE year = 2007 AND position = "5th"
CREATE TABLE INST, Here is a database schema( table schema);
Which event in 2007 had a position of 5th?It is not neccessary to use all the tables.
SELECT report FROM table_1140085_2 WHERE location = "Kyalami"
CREATE TABLE INST, Here is a database schema( table schema);
what is the report where the location is kyalami?It is not neccessary to use all the tables.
SELECT SUM(100 AS s) FROM table_name_92 WHERE matches = 12 AND strike_rate < 144.81
CREATE TABLE INST, Here is a database schema( table schema);
Can you tell me the sum of 100s that has the Matches of 12 and the Strike Rate smaller than 144.81?It is not neccessary to use all the tables.
SELECT season FROM table_name_10 WHERE games = "72" AND lost = "9"
CREATE TABLE INST, Here is a database schema( table schema);
What's the season that had a lost of 9 with 72 games?It is not neccessary to use all the tables.
SELECT Points against FROM table WHERE Losing bonus = 3 AND Tries for = 84
CREATE TABLE INST, Here is a database schema( table schema);
How many points against did the club with a losing bonus of 3 and 84 tries have?.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 (CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'DALLAS' AND date_day.day_number = 16 AND date_day.month_number = 12 AND date_day.year = 1991 AND days.day_name = date_day.day_name AND flight.flight_days = days.days_code AND flight.to_airport = AIRPORT_SERVICE_1.airport_code) AND CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'OAKLAND' AND flight.from_airport = AIRPORT_SERVICE_0.airport_code
CREATE TABLE INST, Here is a database schema( table schema);
can you show me what flights are available on 12 16 going from OAKLAND to DALLASIt is not neccessary to use all the tables.
SELECT AVG Losses FROM table WHERE Geelong DFL = bell post hill AND Draws < 0
CREATE TABLE INST, Here is a database schema( table schema);
What are the average losses for Geelong DFL of Bell Post Hill where the draws are less than 0?.It is not neccessary to use all the tables.
SELECT Left Office FROM table WHERE Party = vacant (1999-2001)
CREATE TABLE INST, Here is a database schema( table schema);
What is Left Office, when Party is Vacant (1999-2001)?.It is not neccessary to use all the tables.
SELECT poverty_rate FROM table_22815568_1 WHERE market_income_per_capita = "$20,518"
CREATE TABLE INST, Here is a database schema( table schema);
What is the povery rate of the county with market income per capita of $20518?It is not neccessary to use all the tables.
SELECT season FROM table_name_84 WHERE position = "2nd"
CREATE TABLE INST, Here is a database schema( table schema);
Which season was 2nd position?It is not neccessary to use all the tables.
SELECT Country FROM table WHERE Television service = Sky Primafila 7 HD
CREATE TABLE INST, Here is a database schema( table schema);
Name the country for sky primafila 7 hd.It is not neccessary to use all the tables.
SELECT Margin of victory FROM table WHERE Tournament = semgroup championship
CREATE TABLE INST, Here is a database schema( table schema);
What is the margin of victory in a semgroup championship?.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.arrival_time <= 2400 AND flight.arrival_time >= 1800) AND date_day.day_number = 21 AND date_day.month_number = 2 AND date_day.year = 1991 AND days.day_name = date_day.day_name AND flight.flight_days = days.days_code) AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'ATLANTA' AND flight.to_airport = AIRPORT_SERVICE_1.airport_code) AND CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'SAN FRANCISCO' AND flight.from_airport = AIRPORT_SERVICE_0.airport_code) AND NOT flight.departure_time BETWEEN 601 AND 1759
CREATE TABLE INST, Here is a database schema( table schema);
what flights leave SAN FRANCISCO on monday night and arrive at ATLANTA later in the eveningIt is not neccessary to use all the tables.
SELECT Runs FROM table WHERE Venue = bellerive oval , hobart AND Player = travis birt
CREATE TABLE INST, Here is a database schema( table schema);
Name the Runs that has a Venue of bellerive oval , hobart, and a Player of travis birt?.It is not neccessary to use all the tables.
SELECT Mascot FROM table WHERE School = south bend clay
CREATE TABLE INST, Here is a database schema( table schema);
What is the mascot for South Bend Clay?.It is not neccessary to use all the tables.
SELECT date FROM table_name_22 WHERE h___a = "a" AND league_position = "2nd" AND opponents = "manchester city"
CREATE TABLE INST, Here is a database schema( table schema);
What date was the game against manchester city when they had a league position of 2nd?It is not neccessary to use all the tables.
SELECT MIN("Total") FROM table_61084 WHERE "All Around" = '10' AND "Rope" > '10'
CREATE TABLE INST, Here is a database schema( table schema);
What is the lowest total with an all around of 10 and a rope higher than 10?It is not neccessary to use all the tables.
SELECT MIN(bronze) FROM table_name_14 WHERE gold < 6 AND nation = "italy" AND total > 10
CREATE TABLE INST, Here is a database schema( table schema);
What is the lowest bronze medal count for Italy with fewer than 6 gold medals and greater than 10 total medals?It is not neccessary to use all the tables.
SELECT opponent FROM table_name_56 WHERE record = "53-24"
CREATE TABLE INST, Here is a database schema( table schema);
Which opponent has a 53-24 record?It is not neccessary to use all the tables.
SELECT venue FROM table_name_89 WHERE away_team = "south melbourne"
CREATE TABLE INST, Here is a database schema( table schema);
Which Venue has an Away team of south melbourne?It is not neccessary to use all the tables.
SELECT "Funny Car" FROM table_45047 WHERE "Pro Stock" = 'jim yates' AND "Year" > '1996'
CREATE TABLE INST, Here is a database schema( table schema);
Who won Funny Car when Jim Yates won Pro Stock, in years after 1996?It is not neccessary to use all the tables.
SELECT qual FROM table_name_80 WHERE laps = 200 AND year = "1957"
CREATE TABLE INST, Here is a database schema( table schema);
Which qual has both 200 total laps and took place in 1957?It is not neccessary to use all the tables.
SELECT Pole position FROM table WHERE Winning driver = Paul Tracy AND Race Name = ITT Automotive Grand Prix of Detroit
CREATE TABLE INST, Here is a database schema( table schema);
Who was at the pole position in the ITT Automotive Grand Prix of Detroit, won by Paul Tracy?.It is not neccessary to use all the tables.
SELECT Authors FROM table WHERE Unit = densuș-ciula formation
CREATE TABLE INST, Here is a database schema( table schema);
Which authors have a Unit of densuș-ciula formation?.It is not neccessary to use all the tables.