sql
stringlengths
9
2.37k
table
stringclasses
9 values
query
stringlengths
51
503
SELECT High rebounds FROM table WHERE High points = Carl Landry (23)
CREATE TABLE INST, Here is a database schema( table schema);
Who did the high rebounds in the game where Carl Landry (23) did the most high points?.It is not neccessary to use all the tables.
SELECT Call sign FROM table WHERE ERP W = 27
CREATE TABLE INST, Here is a database schema( table schema);
Name the call sign for ERP W of 27.It is not neccessary to use all the tables.
SELECT COUNT(attendance) FROM table_name_98 WHERE week = 4
CREATE TABLE INST, Here is a database schema( table schema);
What is the total number of spectators on week 4?It is not neccessary to use all the tables.
SELECT MIN(events) FROM table_name_34 WHERE cuts_made = 24 AND top_25 < 11
CREATE TABLE INST, Here is a database schema( table schema);
What is the smallest number of events with 24 cuts and less than 11 in the top-25?It is not neccessary to use all the tables.
SELECT location FROM table_name_16 WHERE event = "extreme challenge 63" AND time = "2:00"
CREATE TABLE INST, Here is a database schema( table schema);
Where was Extreme Challenge 63 with a time of 2:00 held?It is not neccessary to use all the tables.
SELECT team_2 FROM table_name_46 WHERE team_1 = "la nuova piovese (veneto a)"
CREATE TABLE INST, Here is a database schema( table schema);
Tell me the team 2 for team 1 being la nuova piovese (veneto a)It is not neccessary to use all the tables.
SELECT COUNT(year) FROM table_12275654_1 WHERE mens_singles = "Niels Christian Kaldau" AND womens_singles = "Pi Hongyan"
CREATE TABLE INST, Here is a database schema( table schema);
How many times did Niels Christian Kaldau win the men's single and Pi Hongyan win the women's single in the same year?It is not neccessary to use all the tables.
SELECT "Airport" FROM table_76249 WHERE "ICAO" = 'bgbw'
CREATE TABLE INST, Here is a database schema( table schema);
What airport has an ICAP of BGBW?It is not neccessary to use all the tables.
SELECT Name FROM table WHERE Time > 53.06 AND Lane < 8 AND Rank > 2 AND Nationality = japan
CREATE TABLE INST, Here is a database schema( table schema);
Which Name has a Time larger than 53.06, and a Lane smaller than 8, and a Rank larger than 2, and a Nationality of japan?.It is not neccessary to use all the tables.
SELECT MAX(points) FROM table_name_92 WHERE year > 1959
CREATE TABLE INST, Here is a database schema( table schema);
Which line after 1959 had the highest amount of points?It is not neccessary to use all the tables.
SELECT Away team score FROM table WHERE Venue = victoria park
CREATE TABLE INST, Here is a database schema( table schema);
How much did the away team score at victoria park?.It is not neccessary to use all the tables.
SELECT 3 AS rd_place FROM table_name_60 WHERE year = "1990"
CREATE TABLE INST, Here is a database schema( table schema);
what shows for 3rd place in 1990?It is not neccessary to use all the tables.
SELECT DISTINCT T1.name FROM nurse AS T1 JOIN on_call AS T2 ON T1.EmployeeID = T2.nurse
CREATE TABLE INST, Here is a database schema( table schema);
Find the names of nurses who are on call.It is not neccessary to use all the tables.
SELECT runner_s__up FROM table_name_12 WHERE margin = "1 stroke"
CREATE TABLE INST, Here is a database schema( table schema);
Who are the Runner(s)-up with a Margin of 1 stroke?It is not neccessary to use all the tables.
SELECT D'Oyly Carte 1945 Tour FROM table WHERE D'Oyly Carte 1930 Tour = john dean
CREATE TABLE INST, Here is a database schema( table schema);
D'Oyly Carte 1930 Tour of john dean involved what D'Oyly Carte 1945 Tour?.It is not neccessary to use all the tables.
SELECT interface FROM table_name_58 WHERE product = "xerox travel scanner 100"
CREATE TABLE INST, Here is a database schema( table schema);
What is the interface of the product xerox travel scanner 100?It is not neccessary to use all the tables.
SELECT Venue FROM table WHERE Attendance > 6,938
CREATE TABLE INST, Here is a database schema( table schema);
What is the Venue with an Attendance that is larger than 6,938?.It is not neccessary to use all the tables.
SELECT MAX(points) FROM table_25352324_5
CREATE TABLE INST, Here is a database schema( table schema);
What is the highest value for points?It is not neccessary to use all the tables.
SELECT Location FROM table WHERE Winner = baltimore colts AND Year < 1972 AND Result = 14-6
CREATE TABLE INST, Here is a database schema( table schema);
What is the Location, when the Winner is the Baltimore Colts, when the Year is before 1972, and when the Result is 14-6?.It is not neccessary to use all the tables.
SELECT MAX Year FROM table WHERE Genre = Emo AND Artist = All-American Rejects AND Song title = " Move Along "
CREATE TABLE INST, Here is a database schema( table schema);
What is the year for the genre of emo and artist is all-american rejects and song title is " move along "?.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, airport_service AS AIRPORT_SERVICE_2, city AS CITY_0, city AS CITY_1, city AS CITY_2, flight, flight_stop WHERE ((CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'SAN FRANCISCO' AND CITY_2.city_code = AIRPORT_SERVICE_2.city_code AND CITY_2.city_name = 'DALLAS' AND flight_stop.stop_airport = AIRPORT_SERVICE_2.airport_code AND flight.flight_id = flight_stop.flight_id AND flight.to_airport = AIRPORT_SERVICE_1.airport_code) AND CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'BOSTON' AND flight.from_airport = AIRPORT_SERVICE_0.airport_code) AND flight.departure_time BETWEEN 1200 AND 1800
CREATE TABLE INST, Here is a database schema( table schema);
do you have an afternoon flight leaving in the afternoon going from BOSTON to SAN FRANCISCO with a stopover in DALLASIt is not neccessary to use all the tables.
SELECT Location FROM table WHERE Mascot = Dragons
CREATE TABLE INST, Here is a database schema( table schema);
where are dragons used as mascots?.It is not neccessary to use all the tables.
SELECT Score FROM table WHERE Decision = toivonen AND Record = 18–14–4
CREATE TABLE INST, Here is a database schema( table schema);
What was the score when the record was 18–14–4 with a toivonen decision?.It is not neccessary to use all the tables.
SELECT COUNT Bronze FROM table WHERE Total = 16 AND Rank > 3
CREATE TABLE INST, Here is a database schema( table schema);
What is the total of bronze medals from nations with more than 16 total medals and ranks larger than 3?.It is not neccessary to use all the tables.
SELECT race FROM table_name_1 WHERE date = "04-25-2008"
CREATE TABLE INST, Here is a database schema( table schema);
What race happened on 04-25-2008?It is not neccessary to use all the tables.
SELECT MIN(height__m_) FROM table_name_26 WHERE prominence__m_ = 2 OFFSET 349
CREATE TABLE INST, Here is a database schema( table schema);
What is the smallest height with a prominence of 2349?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, flight WHERE CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'DALLAS' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'PITTSBURGH' AND flight.from_airport = AIRPORT_SERVICE_0.airport_code AND flight.to_airport = AIRPORT_SERVICE_1.airport_code
CREATE TABLE INST, Here is a database schema( table schema);
show me flights from DALLAS to PITTSBURGHIt is not neccessary to use all the tables.
SELECT attendance FROM table_name_60 WHERE week > 10 AND result = "l 22-21"
CREATE TABLE INST, Here is a database schema( table schema);
I want the attendance for week larger than 10 and result of l 22-21It is not neccessary to use all the tables.
SELECT a.OwnerUserId AS "user_link", SUM(CASE WHEN v.VoteTypeId = 2 THEN 1 ELSE 0 END) AS "upvotes", SUM(CASE WHEN v.VoteTypeId = 3 THEN 1 ELSE 0 END) AS "downvotes" FROM Posts AS a LEFT OUTER JOIN Votes AS v ON v.PostId = a.Id WHERE a.OwnerUserId IN ('##UserID##') AND v.VoteTypeId IN (2, 3) AND a.PostTypeId = 2 GROUP BY a.OwnerUserId
CREATE TABLE INST, Here is a database schema( table schema);
DO YOU GIVE WHAT YOU GET?. Comparison of (% of votes that are upvotes) for VOTES CAST versus VOTES RECEIVED for the specific user(s).It is not neccessary to use all the tables.
SELECT MAX Grid FROM table WHERE Constructor = toyota AND Driver = jarno trulli
CREATE TABLE INST, Here is a database schema( table schema);
I want the highest Grid for Toyota and jarno trulli.It is not neccessary to use all the tables.
SELECT result FROM table_1342218_43 WHERE incumbent = "Milton H. West"
CREATE TABLE INST, Here is a database schema( table schema);
What was the result for the incumbent Milton H. West?It is not neccessary to use all the tables.
SELECT result FROM table_name_47 WHERE competition = "friendly match" AND venue = "seoul"
CREATE TABLE INST, Here is a database schema( table schema);
What is the result of the friendly match in Seoul?It is not neccessary to use all the tables.
SELECT score FROM table_name_48 WHERE december = 30
CREATE TABLE INST, Here is a database schema( table schema);
What's the score for December of 30?It is not neccessary to use all the tables.
SELECT score FROM table_name_99 WHERE home = "toronto maple leafs" AND date = "february 1"
CREATE TABLE INST, Here is a database schema( table schema);
What is the Score of the Toronto Maple Leafs home game on February 1?It is not neccessary to use all the tables.
SELECT best_finish FROM table_10021158_3 WHERE scoring_rank = "117"
CREATE TABLE INST, Here is a database schema( table schema);
When the scoring rank was 117 what was the best finish?It is not neccessary to use all the tables.
SELECT "Year born (Age)" FROM table_62199 WHERE "Player" = 'rowan barrett'
CREATE TABLE INST, Here is a database schema( table schema);
What year was Rowan Barrett born?It is not neccessary to use all the tables.
SELECT MIN(pick) FROM table_name_88 WHERE overall > 17 AND player_name = "dave adams category:articles with hcards" AND year > 1963
CREATE TABLE INST, Here is a database schema( table schema);
What is the smallest Pick with Overall larger than 17 a Player name of dave adams category:articles with hcards and a Year larger than 1963?It is not neccessary to use all the tables.
SELECT SUM(laps) FROM table_name_79 WHERE year = "1954"
CREATE TABLE INST, Here is a database schema( table schema);
What was the sum of laps in 1954?It is not neccessary to use all the tables.
SELECT COUNT Poles FROM table WHERE Points = 72
CREATE TABLE INST, Here is a database schema( table schema);
How many poles had 72 points?.It is not neccessary to use all the tables.
SELECT Report FROM table WHERE Winning driver = mario razzauti
CREATE TABLE INST, Here is a database schema( table schema);
What Report has a Winning driver of mario razzauti?.It is not neccessary to use all the tables.
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.marital_status = "SINGLE" AND lab.itemid = "51265"
CREATE TABLE INST, Here is a database schema( table schema);
count the number of patients whose marital status is single and item id is 51265?It is not neccessary to use all the tables.
SELECT Notes FROM table WHERE Theme = patience
CREATE TABLE INST, Here is a database schema( table schema);
What are the notes of the patience theme?.It is not neccessary to use all the tables.
SELECT (SELECT "election year" FROM table_204_54 WHERE id = 2) - (SELECT "election year" FROM table_204_54 WHERE id = 1)
CREATE TABLE INST, Here is a database schema( table schema);
what is the difference in election year between the first and second members on the list ?It is not neccessary to use all the tables.
SELECT Driver FROM table WHERE Laps = 3 AND Grid < 15
CREATE TABLE INST, Here is a database schema( table schema);
Which driver had 3 Laps and grids less than 15?.It is not neccessary to use all the tables.
SELECT dates_administered FROM table_name_87 WHERE lead_margin < 5.5 AND poll_source = "survey usa"
CREATE TABLE INST, Here is a database schema( table schema);
What was the date of the poll from Survey USA that showed a lead margin smaller than 5.5?It is not neccessary to use all the tables.
SELECT No. in series FROM table WHERE Family/families = The Amaral Family
CREATE TABLE INST, Here is a database schema( table schema);
What episode in the series was the Amaral family featured?.It is not neccessary to use all the tables.
SELECT name FROM table_name_3 WHERE total = "116 (22)"
CREATE TABLE INST, Here is a database schema( table schema);
Which player had a total of 116 (22)?It is not neccessary to use all the tables.
SELECT Name FROM table WHERE Moving to = arminia bielefeld
CREATE TABLE INST, Here is a database schema( table schema);
Who was the player moving to Arminia Bielefeld?.It is not neccessary to use all the tables.
SELECT location_s_ FROM table_19897294_10 WHERE no_in_series = "US9"
CREATE TABLE INST, Here is a database schema( table schema);
Where was the episode with series number US9 filmed?It is not neccessary to use all the tables.
SELECT Starting_Year FROM technician ORDER BY Age DESC LIMIT 1
CREATE TABLE INST, Here is a database schema( table schema);
What is the starting year of the oldest technicians?It is not neccessary to use all the tables.
SELECT venue FROM table_name_10 WHERE year < 1991 AND time > 10.29 AND competition = "mediterranean games" AND event = "4x100 m relay"
CREATE TABLE INST, Here is a database schema( table schema);
What Venue has a Year smaller than 1991 Time larger than 10.29 Competition of mediterranean games and Event of 4x100 m relay?It is not neccessary to use all the tables.
SELECT "Orbital regime" FROM table_38104 WHERE "Launches" > '4' AND "Failures" < '2'
CREATE TABLE INST, Here is a database schema( table schema);
What is the orbital regime of launches greater than 4 and failures less than 2?It is not neccessary to use all the tables.
SELECT HIRE_DATE, COMMISSION_PCT FROM employees WHERE FIRST_NAME LIKE '%D%' OR FIRST_NAME LIKE '%S%'
CREATE TABLE INST, Here is a database schema( table schema);
For all employees who have the letters D or S in their first name, a line chart shows the change of commission_pct over hire_dateIt is not neccessary to use all the tables.
SELECT 1 AS _letter FROM table_name_10 WHERE amino_acid = "asparagine"
CREATE TABLE INST, Here is a database schema( table schema);
what is the 1-letter for the amino acid asparagine?It is not neccessary to use all the tables.
SELECT Team FROM table WHERE Location Attendance = Philips Arena 12,140
CREATE TABLE INST, Here is a database schema( table schema);
What is every team with location attendance of Philips Arena 12,140?.It is not neccessary to use all the tables.
SELECT Actor's Name FROM table WHERE Film Name = anastasiya slutskaya AND Country = belarus
CREATE TABLE INST, Here is a database schema( table schema);
Tell me the actor's name for anastasiya slutskaya belarus.It is not neccessary to use all the tables.
SELECT Team classification FROM table WHERE Points classification = Philippe Gilbert AND Mountains classification = Johnny Hoogerland AND Stage < 9.0
CREATE TABLE INST, Here is a database schema( table schema);
What is every team classification when points classification is Philippe Gilbert if mountains classification is Johnny Hoogerland and stage is less than 9.0?.It is not neccessary to use all the tables.
SELECT 1 AS st_prize___$__ FROM table_25938117_1 WHERE tournament = "Senior PGA Championship"
CREATE TABLE INST, Here is a database schema( table schema);
Name the 1st prize for senior pga championshipIt is not neccessary to use all the tables.
SELECT MIN(points) FROM table_name_15 WHERE rider = "roger dutton/tony wright"
CREATE TABLE INST, Here is a database schema( table schema);
What are the fewest points that Roger Dutton/Tony Wright have received?It is not neccessary to use all the tables.
SELECT name FROM table_name_35 WHERE laps = 50 AND grid > 9 AND team = "jim beam racing" AND time_retired = "+ 18.0s"
CREATE TABLE INST, Here is a database schema( table schema);
What is Name when Laps is "50" when Grid is greater than 9 when Team is "Jim Beam Racing" and when Time/Retired is "+ 18.0s"?It is not neccessary to use all the tables.
SELECT permanence_of_the_body FROM table_11609814_1 WHERE purity = "apprehension"
CREATE TABLE INST, Here is a database schema( table schema);
what's the permanence of the body where purity is apprehensionIt is not neccessary to use all the tables.
SELECT height__ft_ FROM table_13463790_2 WHERE name = "52-54 Lime Street"
CREATE TABLE INST, Here is a database schema( table schema);
what's the height (ft) with name being 52-54 lime streetIt is not neccessary to use all the tables.
SELECT AVG(laps) FROM table_name_5 WHERE time = "+23.002" AND grid < 11
CREATE TABLE INST, Here is a database schema( table schema);
Which Laps have a Time of +23.002 and a Grid smaller than 11?It is not neccessary to use all the tables.
SELECT league AS Cup FROM table_12755786_8 WHERE player = "Kevin McKinlay"
CREATE TABLE INST, Here is a database schema( table schema);
what is the tourney where the winner is kevin mckinlay?It is not neccessary to use all the tables.
SELECT current_club FROM table_name_51 WHERE apps > 368 AND debut_year < 1994
CREATE TABLE INST, Here is a database schema( table schema);
What is the current club with more than 368 apps and a debut year earlier than 1994?It is not neccessary to use all the tables.
SELECT Player FROM table WHERE College/junior/club team = Cornell University (NCAA)
CREATE TABLE INST, Here is a database schema( table schema);
What player came from Cornell University (NCAA)?.It is not neccessary to use all the tables.
SELECT player FROM table_name_94 WHERE country = "united states" AND score = 75 - 70 - 68 = 211
CREATE TABLE INST, Here is a database schema( table schema);
Who is the player from the United States with a 75-70-68=211 score?It is not neccessary to use all the tables.
SELECT MIN(no_in_series) FROM table_24132083_1 WHERE written_by = "Tim Schlattmann"
CREATE TABLE INST, Here is a database schema( table schema);
What's the series number of the episode written by Tim Schlattmann?It is not neccessary to use all the tables.
SELECT Land ( sqmi ) FROM table WHERE County = Grand Forks
CREATE TABLE INST, Here is a database schema( table schema);
How big is the land in square miles of Grand Forks county?.It is not neccessary to use all the tables.
SELECT latest_stable_release FROM table_name_83 WHERE name = "crawltrack"
CREATE TABLE INST, Here is a database schema( table schema);
What is the latest stable release date for Crawltrack?It is not neccessary to use all the tables.
SELECT Engine FROM table WHERE Points > 62 AND Entrant = rebaque
CREATE TABLE INST, Here is a database schema( table schema);
What is the Motor that has a Focuses bigger than 62, and a Participant of rebaque?.It is not neccessary to use all the tables.
SELECT SUM Played FROM table WHERE Drawn < 2 AND Against > 29
CREATE TABLE INST, Here is a database schema( table schema);
What is the sum of Played when the drawn is less than 2 and against is more than 29?.It is not neccessary to use all the tables.
SELECT performed_by FROM table_191105_2 WHERE music_by = "Bob Dorough" AND episode_title = "Conjunction Junction"
CREATE TABLE INST, Here is a database schema( table schema);
When conjunction junction is the episode title and the music is by bob dorough who is the performer?It is not neccessary to use all the tables.
SELECT date FROM table_name_84 WHERE opponent_in_the_final = "wen-hsin hsu"
CREATE TABLE INST, Here is a database schema( table schema);
What date did Namigata play against Wen-Hsin Hsu in the finals?It is not neccessary to use all the tables.
SELECT Weekly Rank Sky1 FROM table WHERE # = 103
CREATE TABLE INST, Here is a database schema( table schema);
What is title numer 103's rank for weekly rank sky1?.It is not neccessary to use all the tables.
SELECT College FROM table WHERE Pick < 25 AND Overall > 159 AND Round < 10 AND Position = wr
CREATE TABLE INST, Here is a database schema( table schema);
Which college has a pick less than 25, an overall greater than 159, a round less than 10, and wr as the position?.It is not neccessary to use all the tables.
SELECT Rowers FROM table WHERE Time = 6:24.61
CREATE TABLE INST, Here is a database schema( table schema);
What is the names of the rowers that the time was 6:24.61?.It is not neccessary to use all the tables.
SELECT Week FROM table WHERE Date = december 8, 1974
CREATE TABLE INST, Here is a database schema( table schema);
Which week was the game played on December 8, 1974?.It is not neccessary to use all the tables.
SELECT MIN(appearances¹) FROM table_24565004_21 WHERE name = "Sammy Traoré"
CREATE TABLE INST, Here is a database schema( table schema);
List the minimum impressions for sammy traoréIt is not neccessary to use all the tables.
SELECT T1.id, T1.Name FROM medicine AS T1 JOIN medicine_enzyme_interaction AS T2 ON T2.medicine_id = T1.id GROUP BY T1.id HAVING COUNT(*) >= 2
CREATE TABLE INST, Here is a database schema( table schema);
What are the ids and names of the medicine that can interact with two or more enzymes?It is not neccessary to use all the tables.
SELECT distance FROM table_197286_4 WHERE direction = "North"
CREATE TABLE INST, Here is a database schema( table schema);
Name the distance from northIt is not neccessary to use all the tables.
SELECT AVG 2005 FROM table WHERE 2008 = 61,837,716 AND 2006 > 57,126,389
CREATE TABLE INST, Here is a database schema( table schema);
What was the average value in 2005 when 2008 is 61,837,716, and a 2006 is more than 57,126,389?.It is not neccessary to use all the tables.
SELECT Opponent FROM table WHERE Record = 17-11
CREATE TABLE INST, Here is a database schema( table schema);
Which opponent has a record of 17-11?.It is not neccessary to use all the tables.
SELECT MAX Year FROM table WHERE Aces = 20 AND Opponent = samantha stosur AND Sets > 2
CREATE TABLE INST, Here is a database schema( table schema);
what's the most recent year that samantha stosur was the opponent with 20 aces and having played more than 2 sets?.It is not neccessary to use all the tables.
SELECT COUNT(*) FROM company
CREATE TABLE INST, Here is a database schema( table schema);
How many gas companies are there?It is not neccessary to use all the tables.
SELECT Opponent in the final FROM table WHERE Tournament = rockford, illinois
CREATE TABLE INST, Here is a database schema( table schema);
What opponent in the final has rockford, Illinois as the tournament?.It is not neccessary to use all the tables.
SELECT player FROM table_name_63 WHERE date = "june 14, 1969"
CREATE TABLE INST, Here is a database schema( table schema);
Which player is associated with the date June 14 1969?It is not neccessary to use all the tables.
SELECT Opponents FROM table WHERE Partner = mashona washington AND Date = november 21, 2009
CREATE TABLE INST, Here is a database schema( table schema);
Tell me the opponents for mashona washington november 21, 2009.It is not neccessary to use all the tables.
SELECT Voting turnout FROM table WHERE General elections = 1985
CREATE TABLE INST, Here is a database schema( table schema);
Tell me the voting turnout for 1985 general elections.It is not neccessary to use all the tables.
SELECT COUNT Goal FROM table WHERE Date = 15 november 1989
CREATE TABLE INST, Here is a database schema( table schema);
How many total goals were made at the game on 15 November 1989?.It is not neccessary to use all the tables.
SELECT Numbers (Quantity Ordered) FROM table WHERE Make/ Model = eldorado national passport
CREATE TABLE INST, Here is a database schema( table schema);
Which Numbers (Quantity Ordered) have a Make/ Model of eldorado national passport?.It is not neccessary to use all the tables.
SELECT MAX(rank) FROM table_name_59 WHERE name = "karen pickering" AND time < 55.71
CREATE TABLE INST, Here is a database schema( table schema);
What is the highest Rank of Karen Pickering when she had a time of less than 55.71?It is not neccessary to use all the tables.
SELECT home_team AS score FROM table_name_96 WHERE venue = "junction oval"
CREATE TABLE INST, Here is a database schema( table schema);
What is the score for the home team when the venue is Junction Oval?It is not neccessary to use all the tables.
SELECT Country FROM table WHERE Rank < 5 AND Notes = fb
CREATE TABLE INST, Here is a database schema( table schema);
What country were the athletes where ranked smaller than 5 with notes listed as fb?.It is not neccessary to use all the tables.
SELECT COUNT High rebounds FROM table WHERE Date = December 8
CREATE TABLE INST, Here is a database schema( table schema);
How many high rebounds took place on December 8?.It is not neccessary to use all the tables.
SELECT MAX(played) FROM table_name_40 WHERE club = "atlético ceuta" AND losses < 11
CREATE TABLE INST, Here is a database schema( table schema);
Which Played has a Club of atlético ceuta and less than 11 Losses?It is not neccessary to use all the tables.
SELECT Winning score FROM table WHERE Runner(s)-up = brian kamm
CREATE TABLE INST, Here is a database schema( table schema);
What was the winning score of the event where Brian Kamm was the runner-up?.It is not neccessary to use all the tables.
SELECT COUNT(DISTINCT participant_id) FROM participants_in_Events
CREATE TABLE INST, Here is a database schema( table schema);
What are all the distinct participant ids who attended any events?It is not neccessary to use all the tables.
SELECT game FROM table_27713583_8 WHERE date = "January 14"
CREATE TABLE INST, Here is a database schema( table schema);
What game number was on January 14?It is not neccessary to use all the tables.
SELECT attendance FROM table_name_2 WHERE week = 1
CREATE TABLE INST, Here is a database schema( table schema);
What was the attendance during the week 1 match?It is not neccessary to use all the tables.