answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT high_assists FROM table_22871239_8 WHERE location_attendance = "American Airlines Center 19,585"
Name the high assists for american airlines center 19,585
CREATE TABLE table_22871239_8 (high_assists VARCHAR, location_attendance VARCHAR)
SELECT date FROM table_name_14 WHERE home_team = "south melbourne"
What was the date when South Melbourne was the home team?
CREATE TABLE table_name_14 (date VARCHAR, home_team VARCHAR)
SELECT distance FROM table_name_18 WHERE year = 2006
What is the distance in 2006?
CREATE TABLE table_name_18 (distance VARCHAR, year VARCHAR)
SELECT country FROM table_name_93 WHERE rank = 2
Which country has a rank of 2?
CREATE TABLE table_name_93 (country VARCHAR, rank VARCHAR)
SELECT brand, name FROM camera_lens ORDER BY max_aperture DESC
Find the brand and name for each camera lens, and sort in descending order of maximum aperture.
CREATE TABLE camera_lens (brand VARCHAR, name VARCHAR, max_aperture VARCHAR)
SELECT 2007 AS _team FROM table_name_30 WHERE player = "deshaun foster"
What is the 2007 Team with player Deshaun Foster?
CREATE TABLE table_name_30 (player VARCHAR)
SELECT ppv_buyrate FROM table_name_77 WHERE date = "september 10" AND event = "strikeforce: heavyweight grand prix semifinals"
On September 10 during Strikeforce: Heavyweight Grand Prix Semifinals, what was the PPV buyrate?
CREATE TABLE table_name_77 (ppv_buyrate VARCHAR, date VARCHAR, event VARCHAR)
SELECT country FROM table_name_66 WHERE score = 69 - 74 = 143
Which Country has a Score of 69-74=143?
CREATE TABLE table_name_66 (country VARCHAR, score VARCHAR)
SELECT social_democratic FROM table_name_86 WHERE democratic_and_social_centre = "4.4% 4 seats"
What Social Democratic has the Democratic and Social Centre of 4.4% 4 seats?
CREATE TABLE table_name_86 (social_democratic VARCHAR, democratic_and_social_centre VARCHAR)
SELECT format FROM table_name_28 WHERE station = "klok"
Which format has a Station of klok?
CREATE TABLE table_name_28 (format VARCHAR, station VARCHAR)
SELECT result FROM table_name_14 WHERE event = "strikeforce" AND method = "ko (double roundhouse kick)"
Which Result has the Event, Strikeforce, and Method, Ko (double roundhouse kick)?
CREATE TABLE table_name_14 (result VARCHAR, event VARCHAR, method VARCHAR)
SELECT position FROM table_name_52 WHERE cfl_team = "montreal alouettes" AND pick__number < 15
Which position's cfl team was the Montreal Alouettes when the pick number was less than 15?
CREATE TABLE table_name_52 (position VARCHAR, cfl_team VARCHAR, pick__number VARCHAR)
SELECT DISTINCT T2.Model FROM CAR_NAMES AS T1 JOIN MODEL_LIST AS T2 ON T1.Model = T2.Model JOIN CAR_MAKERS AS T3 ON T2.Maker = T3.Id JOIN CARS_DATA AS T4 ON T1.MakeId = T4.Id WHERE T3.FullName = 'General Motors' OR T4.weight > 3500
Which distinctive models are produced by maker with the full name General Motors or weighing more than 3500?
CREATE TABLE MODEL_LIST (Model VARCHAR, Maker VARCHAR); CREATE TABLE CAR_MAKERS (Id VARCHAR, FullName VARCHAR); CREATE TABLE CAR_NAMES (Model VARCHAR, MakeId VARCHAR); CREATE TABLE CARS_DATA (Id VARCHAR, weight VARCHAR)
SELECT MIN(evening_gown) FROM table_name_63 WHERE interview > 9.164 AND swimsuit < 9.35 AND average < 9.233
Which is the smallest evening gown score when the interview score was more than 9.164, the swimsuit stat was less than 9.35, and the average is less than 9.233?
CREATE TABLE table_name_63 (evening_gown INTEGER, average VARCHAR, interview VARCHAR, swimsuit VARCHAR)
SELECT score FROM table_name_57 WHERE away = "deportes savio"
What is the score of the match with deportes savio as the away team?
CREATE TABLE table_name_57 (score VARCHAR, away VARCHAR)
SELECT leading_scorer FROM table_name_24 WHERE goals < 23 AND league = "football league division 3" AND year = "1997–98"
Leading Scorer that has a Goal smaller than 23, and a League of football league division 3, and a Year of 1997–98 is who?
CREATE TABLE table_name_24 (leading_scorer VARCHAR, year VARCHAR, goals VARCHAR, league VARCHAR)
SELECT COUNT(broadcast_date) FROM table_1429629_1 WHERE run_time = "24:43"
How many episodes had a broadcast date and run time of 24:43?
CREATE TABLE table_1429629_1 (broadcast_date VARCHAR, run_time VARCHAR)
SELECT MAX(total) FROM table_30007505_1 WHERE country_territory = "South Korea"
Name the most total for south korea
CREATE TABLE table_30007505_1 (total INTEGER, country_territory VARCHAR)
SELECT projected_2025_population FROM table_name_68 WHERE state__province = "in-mi"
What's the projected population of IN-MI?
CREATE TABLE table_name_68 (projected_2025_population VARCHAR, state__province VARCHAR)
SELECT MIN(total) FROM table_name_89 WHERE bronze = 5 AND gold < 8
What's the smallest total with a bronze count of 5 and a gold count less than 8?
CREATE TABLE table_name_89 (total INTEGER, bronze VARCHAR, gold VARCHAR)
SELECT MAX(opponents) FROM table_18847456_2 WHERE date = "Dec. 19"
How many points did the opposing team score on Dec. 19, 1982?
CREATE TABLE table_18847456_2 (opponents INTEGER, date VARCHAR)
SELECT athlete FROM table_26454128_7 WHERE rank = 7
Name the athlete for 7 rank
CREATE TABLE table_26454128_7 (athlete VARCHAR, rank VARCHAR)
SELECT venue FROM table_name_30 WHERE result = "2nd" AND extra = "4 x 100 m relay"
what is the venue when the result is 2nd and extra is 4 x 100 m relay?
CREATE TABLE table_name_30 (venue VARCHAR, result VARCHAR, extra VARCHAR)
SELECT hanja FROM table_name_56 WHERE mccune_reischauer = "chŏn"
What is the Hanja for McCune-Reischauer of chŏn?
CREATE TABLE table_name_56 (hanja VARCHAR, mccune_reischauer VARCHAR)
SELECT fastest_lap FROM table_name_39 WHERE constructor = "ferrari" AND location = "zolder"
Who ran the fastest lap in the team that competed in Zolder, in which Ferrari was the Constructor?
CREATE TABLE table_name_39 (fastest_lap VARCHAR, constructor VARCHAR, location VARCHAR)
SELECT copaxone FROM table_name_13 WHERE mitoxantrone = "no" AND betaseron__beta_1b_ = "no"
Name the copaxone with mitoxantrone of no and betaseron (beta-1b) of no
CREATE TABLE table_name_13 (copaxone VARCHAR, mitoxantrone VARCHAR, betaseron__beta_1b_ VARCHAR)
SELECT MIN(population__2011_) FROM table_name_89 WHERE density__inhabitants_km_2__ = 36.7
What is the lowest population for the area that has a density of 36.7?
CREATE TABLE table_name_89 (population__2011_ INTEGER, density__inhabitants_km_2__ VARCHAR)
SELECT AVG(access_count) FROM documents GROUP BY document_structure_code ORDER BY COUNT(*) LIMIT 1
Find the average access count of documents with the least popular structure.
CREATE TABLE documents (access_count INTEGER, document_structure_code VARCHAR)
SELECT name FROM city WHERE county_id IN (SELECT county_id FROM county_public_safety WHERE Crime_rate < 100)
Show the names of cities in counties that have a crime rate less than 100.
CREATE TABLE county_public_safety (name VARCHAR, county_id VARCHAR, Crime_rate INTEGER); CREATE TABLE city (name VARCHAR, county_id VARCHAR, Crime_rate INTEGER)
SELECT date FROM table_name_38 WHERE ownership = "historic scotland"
What is the Date of the castle with a Historic Scotland Ownership?
CREATE TABLE table_name_38 (date VARCHAR, ownership VARCHAR)
SELECT winning_score FROM table_name_28 WHERE year = 2002
What was the winning score in the year 2002?
CREATE TABLE table_name_28 (winning_score VARCHAR, year VARCHAR)
SELECT opponent_in_final FROM table_name_12 WHERE date = "13 january 1992"
What is Opponent in Final, when Date is "13 January 1992"?
CREATE TABLE table_name_12 (opponent_in_final VARCHAR, date VARCHAR)
SELECT name FROM table_24990183_5 WHERE country = "Georgia"
Who was the player from georgia?
CREATE TABLE table_24990183_5 (name VARCHAR, country VARCHAR)
SELECT SUM(spectators) FROM table_name_47 WHERE date = "17 june 2006" AND time__cet_ > 15
How many Spectators have a Date of 17 june 2006, and a Time (CET) larger than 15?
CREATE TABLE table_name_47 (spectators INTEGER, date VARCHAR, time__cet_ VARCHAR)
SELECT direction FROM table_100518_1 WHERE weapon = "Khaḍga (sword)"
What are the directions for the guardian whose weapon is khaḍga (sword)?
CREATE TABLE table_100518_1 (direction VARCHAR, weapon VARCHAR)
SELECT school_club_team FROM table_name_16 WHERE player = "jud buechler"
Which School/Club Team has a Player of jud buechler?
CREATE TABLE table_name_16 (school_club_team VARCHAR, player VARCHAR)
SELECT date FROM table_21091157_1 WHERE game = 8
Name the date for game 8
CREATE TABLE table_21091157_1 (date VARCHAR, game VARCHAR)
SELECT score FROM table_name_74 WHERE venue = "valley parade" AND date = "10/6/01"
What is the score at valley parade on 10/6/01?
CREATE TABLE table_name_74 (score VARCHAR, venue VARCHAR, date VARCHAR)
SELECT status FROM table_name_20 WHERE against > 22
What is the status of the game where there was more than 22 against?
CREATE TABLE table_name_20 (status VARCHAR, against INTEGER)
SELECT score_1 FROM table_name_46 WHERE tie_no = "6"
What is the Score 1 of Tie no 6?
CREATE TABLE table_name_46 (score_1 VARCHAR, tie_no VARCHAR)
SELECT country FROM table_name_21 WHERE film = "hi no tsugi ha rekishi"
What country is the film hi no tsugi ha rekishi from?
CREATE TABLE table_name_21 (country VARCHAR, film VARCHAR)
SELECT player FROM table_name_32 WHERE to_par = "+1" AND country = "united states" AND score = 71 - 70 = 141
What is Player, when To Par is "+1", when Country is "United States", and when Score is "71-70=141"?
CREATE TABLE table_name_32 (player VARCHAR, to_par VARCHAR, country VARCHAR, score VARCHAR)
SELECT MIN(car__number) FROM table_name_22 WHERE sponsor = "ups" AND season < 2001
What is the lowest car number sponsored by UPS before 2001?
CREATE TABLE table_name_22 (car__number INTEGER, sponsor VARCHAR, season VARCHAR)
SELECT date FROM table_name_15 WHERE surface = "clay" AND score = "6-3 2-6 6-4"
What is the date of the match on clay with score of 6-3 2-6 6-4?
CREATE TABLE table_name_15 (date VARCHAR, surface VARCHAR, score VARCHAR)
SELECT club FROM table_17625749_1 WHERE tries_for = "32"
Name the club for when tries for is 32
CREATE TABLE table_17625749_1 (club VARCHAR, tries_for VARCHAR)
SELECT name, email FROM user_profiles ORDER BY followers LIMIT 1
Find the name and email of the user followed by the least number of people.
CREATE TABLE user_profiles (name VARCHAR, email VARCHAR, followers VARCHAR)
SELECT away_team FROM table_name_95 WHERE home_team = "west ham united"
Which Away team did West Ham United play against?
CREATE TABLE table_name_95 (away_team VARCHAR, home_team VARCHAR)
SELECT mpeg_1 FROM table_name_77 WHERE realvideo = "no"
Tell me the MPEG-1 for real video of no
CREATE TABLE table_name_77 (mpeg_1 VARCHAR, realvideo VARCHAR)
SELECT SUM(games) FROM table_name_94 WHERE years_at_club = "1971–1974" AND debut_year > 1971
How many Games have Years at club of 1971–1974, and a Debut year larger than 1971?
CREATE TABLE table_name_94 (games INTEGER, years_at_club VARCHAR, debut_year VARCHAR)
SELECT MAX(assists) FROM table_name_63 WHERE percentage < 0.34900000000000003 AND solo_blocks > 13 AND total_attempts < 4713
When the percentage is 0.34900000000000003 with more than 13 solo blocks and less than 4713 total attempts, what is the greatest assists?
CREATE TABLE table_name_63 (assists INTEGER, total_attempts VARCHAR, percentage VARCHAR, solo_blocks VARCHAR)
SELECT pff_nmcc FROM table_name_50 WHERE afc_pc = "dnq"
Which PFF NMCC has a AFC PC of dnq?
CREATE TABLE table_name_50 (pff_nmcc VARCHAR, afc_pc VARCHAR)
SELECT gdp_adjusted__$_billions_ FROM table_1610496_3 WHERE population__millions_ = "5.141"
What is the adjusted GDP when the population is 5.141 million?
CREATE TABLE table_1610496_3 (gdp_adjusted__$_billions_ VARCHAR, population__millions_ VARCHAR)
SELECT champion FROM table_name_96 WHERE purse = "¥200,000,000"
Who is the champion with a ¥200,000,000 purse?
CREATE TABLE table_name_96 (champion VARCHAR, purse VARCHAR)
SELECT venue FROM table_name_78 WHERE result = "88–87"
What is the Venue when the result was 88–87?
CREATE TABLE table_name_78 (venue VARCHAR, result VARCHAR)
SELECT event FROM table_name_1 WHERE time = "2:08"
What is the event with a 2:08 time?
CREATE TABLE table_name_1 (event VARCHAR, time VARCHAR)
SELECT AVG(year) FROM table_name_32 WHERE result = "nominated"
What is the average year with nominated result?
CREATE TABLE table_name_32 (year INTEGER, result VARCHAR)
SELECT scorers FROM table_name_83 WHERE round = "round 3"
Who were the scorers in round 3?
CREATE TABLE table_name_83 (scorers VARCHAR, round VARCHAR)
SELECT event FROM table_name_49 WHERE viewers = "2.4 million" AND rating = "1.4"
What is Event, when Viewers is 2.4 Million, and when Rating is 1.4?
CREATE TABLE table_name_49 (event VARCHAR, viewers VARCHAR, rating VARCHAR)
SELECT tie_no FROM table_name_61 WHERE away_team = "blackburn rovers"
What is the Tie no of the Blackburn Rovers Away game?
CREATE TABLE table_name_61 (tie_no VARCHAR, away_team VARCHAR)
SELECT county AS town FROM table_name_34 WHERE irish_name = "an dún (contae an dúin)"
Irish name of an dún (contae an dúin) has what county town?
CREATE TABLE table_name_34 (county VARCHAR, irish_name VARCHAR)
SELECT AVG(bronze) FROM table_name_51 WHERE silver < 1 AND gold > 0
What is the number of bronze that silver is smaller than 1 and gold bigger than 0?
CREATE TABLE table_name_51 (bronze INTEGER, silver VARCHAR, gold VARCHAR)
SELECT country FROM table_name_30 WHERE director = "roland verhavert"
Which country is the director Roland Verhavert from?
CREATE TABLE table_name_30 (country VARCHAR, director VARCHAR)
SELECT second_runner_up FROM table_1825751_4 WHERE binibining_pilipinas_world = "Janina San Miguel"
Who was second runner up when Janina San Miguel won Binibining Pilipinas-World?
CREATE TABLE table_1825751_4 (second_runner_up VARCHAR, binibining_pilipinas_world VARCHAR)
SELECT date_from, date_to FROM Project_Staff WHERE project_id IN (SELECT project_id FROM Project_Staff GROUP BY project_id ORDER BY COUNT(*) DESC LIMIT 1) UNION SELECT date_from, date_to FROM Project_Staff WHERE role_code = 'leader'
List from which date and to which date these staff work: project staff of the project which hires the most staffs
CREATE TABLE Project_Staff (date_from VARCHAR, date_to VARCHAR, project_id VARCHAR, role_code VARCHAR)
SELECT moldovans FROM table_name_81 WHERE ukrainians = "14,200"
what is the Moldovans number when there are 14,200 Ukrainians?
CREATE TABLE table_name_81 (moldovans VARCHAR, ukrainians VARCHAR)
SELECT attendance FROM table_name_8 WHERE week = "12"
What was the attendance on week 12?
CREATE TABLE table_name_8 (attendance VARCHAR, week VARCHAR)
SELECT city FROM table_name_43 WHERE past_season = "n/a"
what city has a past season of n/a?
CREATE TABLE table_name_43 (city VARCHAR, past_season VARCHAR)
SELECT bello FROM table_11447995_2 WHERE ben_tahir = "296"
What is the Bello when Ben-Tahir is 296?
CREATE TABLE table_11447995_2 (bello VARCHAR, ben_tahir VARCHAR)
SELECT AVG(year) FROM table_name_41 WHERE group = "césar awards" AND result = "nominated" AND award = "best actress" AND film = "8 women (8 femmes)"
Which Year has a Group of césar awards, and a Result of nominated, and an Award of the best actress, and a Film of 8 women (8 femmes)?
CREATE TABLE table_name_41 (year INTEGER, film VARCHAR, award VARCHAR, group VARCHAR, result VARCHAR)
SELECT date FROM table_name_76 WHERE city = "towson"
What date was the game held in Towson?
CREATE TABLE table_name_76 (date VARCHAR, city VARCHAR)
SELECT MIN(fifa_club_world_championship) FROM table_name_56 WHERE uefa_champions_league = 0 AND total < 3 AND name = "geremi"
Which FIFA Club World Championship has a UEFA Champions League of 0, and a Total smaller than 3, and a Name of geremi?
CREATE TABLE table_name_56 (fifa_club_world_championship INTEGER, name VARCHAR, uefa_champions_league VARCHAR, total VARCHAR)
SELECT birthdate FROM table_name_23 WHERE height__cm_ < 191 AND weight__kg_ = 84
What is the Birthdate for the person with a height less than 191, and weight of 84 kg?
CREATE TABLE table_name_23 (birthdate VARCHAR, height__cm_ VARCHAR, weight__kg_ VARCHAR)
SELECT player FROM table_1473672_7 WHERE nhl_team = "Los Angeles Kings"
The los angeles kings drafted what player in the 7th round
CREATE TABLE table_1473672_7 (player VARCHAR, nhl_team VARCHAR)
SELECT outgoing_manager FROM table_name_66 WHERE replaced_by = "sandy clark"
Who is the Outgoing Manager replaced by Sandy Clark?
CREATE TABLE table_name_66 (outgoing_manager VARCHAR, replaced_by VARCHAR)
SELECT MAX(start) FROM table_name_83 WHERE finish > 3 AND manufacturer = "ford" AND year > 1969
WHAT IS THE START THAT HAS A FINISH BIGGER THAN 3, FROM FORD, AFTER 1969?
CREATE TABLE table_name_83 (start INTEGER, year VARCHAR, finish VARCHAR, manufacturer VARCHAR)
SELECT team__league_ FROM table_name_12 WHERE reg_gp > 62
Which team has a Reg GP over 62?
CREATE TABLE table_name_12 (team__league_ VARCHAR, reg_gp INTEGER)
SELECT MIN(attendance) FROM table_name_59 WHERE result = "2-0"
What is the lowest attendance of a game that has the result of 2-0?
CREATE TABLE table_name_59 (attendance INTEGER, result VARCHAR)
SELECT attendance FROM table_name_42 WHERE result = "l 20-17"
How many were in attendance when the result was l 20-17?
CREATE TABLE table_name_42 (attendance VARCHAR, result VARCHAR)
SELECT date FROM table_name_48 WHERE novick = "26%"
Which Date has a Novick of 26%?
CREATE TABLE table_name_48 (date VARCHAR, novick VARCHAR)
SELECT team FROM table_name_65 WHERE circuit = "amaroo park"
Which team raced at Amaroo Park?
CREATE TABLE table_name_65 (team VARCHAR, circuit VARCHAR)
SELECT nhl_team FROM table_name_51 WHERE college_junior_club_team = "estevan bruins (wchl)"
The Estevan Bruins (WCHL) are affiliated with what NHL team?
CREATE TABLE table_name_51 (nhl_team VARCHAR, college_junior_club_team VARCHAR)
SELECT kickoff FROM table_name_93 WHERE week = "sb xxxvi"
When was the kickoff time of the SB XXXVI?
CREATE TABLE table_name_93 (kickoff VARCHAR, week VARCHAR)
SELECT author FROM table_name_18 WHERE company = "buzz productions theater"
Who was the author for company Buzz Productions Theater?
CREATE TABLE table_name_18 (author VARCHAR, company VARCHAR)
SELECT governor FROM table_name_4 WHERE name = "hugh thomas miller"
What is the party of the governor under Hugh Thomas Miller.
CREATE TABLE table_name_4 (governor VARCHAR, name VARCHAR)
SELECT T1.name, COUNT(*) FROM user_profiles AS T1 JOIN tweets AS T2 ON T1.uid = T2.uid GROUP BY T2.uid HAVING COUNT(*) > 1
Find the name of the user who tweeted more than once, and number of tweets tweeted by them.
CREATE TABLE tweets (uid VARCHAR); CREATE TABLE user_profiles (name VARCHAR, uid VARCHAR)
SELECT MIN(pick) FROM table_name_33 WHERE overall = 244
What is the smallest Pick with Overall of 244?
CREATE TABLE table_name_33 (pick INTEGER, overall VARCHAR)
SELECT score FROM table_name_60 WHERE partner = "arnaud clément"
What was the score when the partner was arnaud clément?
CREATE TABLE table_name_60 (score VARCHAR, partner VARCHAR)
SELECT COUNT(code) FROM table_name_99 WHERE type = "v" AND population > 7 OFFSET 747
When populatioin is greater than 7,747 and the type is V, what is the sum of code?
CREATE TABLE table_name_99 (code VARCHAR, type VARCHAR, population VARCHAR)
SELECT position FROM table WHERE player = Chivu
Name the position for chivu
CREATE TABLE table (position VARCHAR, player VARCHAR, Chivu VARCHAR)
SELECT AVG(attendance) FROM table_name_35 WHERE date = "october 10, 1971" AND week > 4
What was the Attendance after Week 4 on October 10, 1971?
CREATE TABLE table_name_35 (attendance INTEGER, date VARCHAR, week VARCHAR)
SELECT height_in_ft FROM table_name_15 WHERE school_club_team_country = "mississippi"
How tall is the player from Mississippi
CREATE TABLE table_name_15 (height_in_ft VARCHAR, school_club_team_country VARCHAR)
SELECT club FROM table_name_64 WHERE tries_for = "tries for"
What club has tries for in the category tries for?
CREATE TABLE table_name_64 (club VARCHAR, tries_for VARCHAR)
SELECT SUM(pick__number) FROM table_name_36 WHERE position = "guard" AND round > 2
What is the sum of Pick #, when Position is Guard, and when Round is greater than 2?
CREATE TABLE table_name_36 (pick__number INTEGER, position VARCHAR, round VARCHAR)
SELECT MIN(result) FROM table_name_66 WHERE reaction_time > 0.185 AND name = "christian malcolm" AND lane > 3
What is the lowest result for Christian Malcolm with a reaction time greater than 0.185 and a lane higher than 3?
CREATE TABLE table_name_66 (result INTEGER, lane VARCHAR, reaction_time VARCHAR, name VARCHAR)
SELECT COUNT(gold) FROM table_name_61 WHERE total = 1 AND bronze < 1 AND nation = "west germany"
What is the total number of golds having a total of 1, bronzes of 0, and from West Germany?
CREATE TABLE table_name_61 (gold VARCHAR, nation VARCHAR, total VARCHAR, bronze VARCHAR)
SELECT date FROM table_name_81 WHERE record = "4–0–0"
On what date was the record 4–0–0?
CREATE TABLE table_name_81 (date VARCHAR, record VARCHAR)
SELECT date_s__of_original_removal FROM table_19114172_11 WHERE original_channel = "BBC Two"
When bbc two is the original channel what is the date of original removal?
CREATE TABLE table_19114172_11 (date_s__of_original_removal VARCHAR, original_channel VARCHAR)
SELECT date FROM table_name_56 WHERE attendance = "37,500"
What day had 37,500 attending?
CREATE TABLE table_name_56 (date VARCHAR, attendance VARCHAR)
SELECT MIN(points) FROM table_name_85 WHERE game < 70 AND score = "4–8"
Which Points have a Game smaller than 70, and a Score of 4–8?
CREATE TABLE table_name_85 (points INTEGER, game VARCHAR, score VARCHAR)
SELECT MIN(rank) FROM table_name_40 WHERE nationality = "great britain" AND time = "2:10.33"
What is the lowest rank from Great Britain with a time of 2:10.33?
CREATE TABLE table_name_40 (rank INTEGER, nationality VARCHAR, time VARCHAR)