question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
Which Rider finished with a speed of 80.18mph?
CREATE TABLE table_name_61 (rider VARCHAR, speed VARCHAR)
SELECT rider FROM table_name_61 WHERE speed = "80.18mph"
Which Year has a College of nebraska, and a Pick of 2?
CREATE TABLE table_name_96 (year VARCHAR, college VARCHAR, pick VARCHAR)
SELECT year FROM table_name_96 WHERE college = "nebraska" AND pick = "2"
Show the authors of submissions and the acceptance results of their submissions.
CREATE TABLE acceptance (Result VARCHAR, Submission_ID VARCHAR); CREATE TABLE submission (Author VARCHAR, Submission_ID VARCHAR)
SELECT T2.Author, T1.Result FROM acceptance AS T1 JOIN submission AS T2 ON T1.Submission_ID = T2.Submission_ID
What is the sum of the Pick # Anthony Maddox?
CREATE TABLE table_name_27 (pick__number INTEGER, name VARCHAR)
SELECT SUM(pick__number) FROM table_name_27 WHERE name = "anthony maddox"
What final round had a weight of 245?
CREATE TABLE table_name_61 (final_round VARCHAR, weight VARCHAR)
SELECT final_round FROM table_name_61 WHERE weight = 245
What is the highest number of Silver medals with a Total greater than 14 and more than 15 Bronze medals?
CREATE TABLE table_name_38 (silver INTEGER, total VARCHAR, bronze VARCHAR)
SELECT MAX(silver) FROM table_name_38 WHERE total > 14 AND bronze > 15
What is the highest Laps, when Bike is "Yamaha YZF-R1", when Rider is "David Checa", and when Grid is greater than 18?
CREATE TABLE table_name_78 (laps INTEGER, grid VARCHAR, bike VARCHAR, rider VARCHAR)
SELECT MAX(laps) FROM table_name_78 WHERE bike = "yamaha yzf-r1" AND rider = "david checa" AND grid > 18
Which Result has a Date of 4 april 1993?
CREATE TABLE table_name_78 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_78 WHERE date = "4 april 1993"
What was Phil Mickelson's score to par?
CREATE TABLE table_name_20 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_20 WHERE player = "phil mickelson"
Which Quarterfinal has a Rank larger than 9?
CREATE TABLE table_name_28 (quarterfinal VARCHAR, rank INTEGER)
SELECT quarterfinal FROM table_name_28 WHERE rank > 9
What is the venue of the game where hibernian won and the rangers were the runner-up?
CREATE TABLE table_name_15 (venue VARCHAR, runner_up VARCHAR, winner VARCHAR)
SELECT venue FROM table_name_15 WHERE runner_up = "rangers" AND winner = "hibernian"
What is the Location for the route 66 raceway?
CREATE TABLE table_name_70 (location VARCHAR, name VARCHAR)
SELECT location FROM table_name_70 WHERE name = "route 66 raceway"
Which Population is the highest one that has an Altitude (mslm) smaller than 229, and an Area (km 2) larger than 32.7?
CREATE TABLE table_name_19 (population INTEGER, altitude__mslm_ VARCHAR, area__km_2__ VARCHAR)
SELECT MAX(population) FROM table_name_19 WHERE altitude__mslm_ < 229 AND area__km_2__ > 32.7
What is the total number of Goals For, when Points 1 is "41"?
CREATE TABLE table_name_68 (goals_for VARCHAR, points_1 VARCHAR)
SELECT COUNT(goals_for) FROM table_name_68 WHERE points_1 = "41"
What is the name of the guard from Cary, NC?
CREATE TABLE table_name_44 (name VARCHAR, position VARCHAR, home_town VARCHAR)
SELECT name FROM table_name_44 WHERE position = "guard" AND home_town = "cary, nc"
Which team has the record of 11-6?
CREATE TABLE table_name_8 (loss VARCHAR, record VARCHAR)
SELECT loss FROM table_name_8 WHERE record = "11-6"
Which player went to college at Tennessee-Chattanooga?
CREATE TABLE table_name_7 (player VARCHAR, college VARCHAR)
SELECT player FROM table_name_7 WHERE college = "tennessee-chattanooga"
What date was the U21 pennant laid down?
CREATE TABLE table_name_26 (laid_down VARCHAR, pennant VARCHAR)
SELECT laid_down FROM table_name_26 WHERE pennant = "u21"
What Venue had Carlton has the Away team?
CREATE TABLE table_name_29 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_29 WHERE away_team = "carlton"
How many schools had the win loss ratio of 0.667?
CREATE TABLE table_16225511_2 (school VARCHAR, percent VARCHAR)
SELECT COUNT(school) FROM table_16225511_2 WHERE percent = "0.667"
What is United States total in the year(s) won of 2000 , 2005 , 2006?
CREATE TABLE table_name_1 (total INTEGER, country VARCHAR, year_s__won VARCHAR)
SELECT MIN(total) FROM table_name_1 WHERE country = "united states" AND year_s__won = "2000 , 2005 , 2006"
The film titled Bosko's fox hunt had what as the smallest production number?
CREATE TABLE table_name_56 (production_num INTEGER, title VARCHAR)
SELECT MIN(production_num) FROM table_name_56 WHERE title = "bosko's fox hunt"
What are the names of artists who are Male and are from UK?
CREATE TABLE artist (artist_name VARCHAR, country VARCHAR, gender VARCHAR)
SELECT artist_name FROM artist WHERE country = "UK" AND gender = "Male"
What is the segment for Netflix episode S08E04?
CREATE TABLE table_name_94 (segment_a VARCHAR, netflix VARCHAR)
SELECT segment_a FROM table_name_94 WHERE netflix = "s08e04"
For a short scale of one quadrillion a thousand trillion, what is the Long scale?
CREATE TABLE table_name_94 (long_scale VARCHAR, short_scale VARCHAR)
SELECT long_scale FROM table_name_94 WHERE short_scale = "one quadrillion a thousand trillion"
Which mid-hill zone has a slightly warm temperature?
CREATE TABLE table_name_87 (high_hill_zone VARCHAR, mid_hill_zone VARCHAR)
SELECT high_hill_zone FROM table_name_87 WHERE mid_hill_zone = "slightly warm temperature"
Who is in class during 1995-96?
CREATE TABLE table_15315103_1 (class_aAAAA VARCHAR, school_year VARCHAR)
SELECT class_aAAAA FROM table_15315103_1 WHERE school_year = "1995-96"
What is the greatest total score received by aylar & egor when karianne Gulliksen gave an 8?
CREATE TABLE table_28677723_16 (total INTEGER, couple VARCHAR, karianne_gulliksen VARCHAR)
SELECT MAX(total) FROM table_28677723_16 WHERE couple = "Aylar & Egor" AND karianne_gulliksen = 8
Which start has 1956 as the year?
CREATE TABLE table_name_96 (start VARCHAR, year VARCHAR)
SELECT start FROM table_name_96 WHERE year = "1956"
Where are the london borough with the black caribbean population of 17974?
CREATE TABLE table_19149550_7 (london_borough VARCHAR, black_caribbean_population VARCHAR)
SELECT london_borough FROM table_19149550_7 WHERE black_caribbean_population = 17974
What is the Total when the Set 3 is 22–25, and a Set 2 is 25–20?
CREATE TABLE table_name_58 (total VARCHAR, set_3 VARCHAR, set_2 VARCHAR)
SELECT total FROM table_name_58 WHERE set_3 = "22–25" AND set_2 = "25–20"
Who is the head coach for the club from Estoril?
CREATE TABLE table_name_17 (head_coach VARCHAR, city VARCHAR)
SELECT head_coach FROM table_name_17 WHERE city = "estoril"
During the game at Candlestick Park, who was the visiting team?
CREATE TABLE table_name_99 (visiting_team VARCHAR, stadium VARCHAR)
SELECT visiting_team FROM table_name_99 WHERE stadium = "candlestick park"
What is the item "Moving to", when the Transfer fee is £300,000?
CREATE TABLE table_name_56 (moving_to VARCHAR, transfer_fee VARCHAR)
SELECT moving_to FROM table_name_56 WHERE transfer_fee = "£300,000"
Who wrote episode with production code 1.01?
CREATE TABLE table_28089666_1 (written_by VARCHAR, production_code VARCHAR)
SELECT written_by FROM table_28089666_1 WHERE production_code = "1.01"
What are the name and os of web client accelerators that do not work with only a 'Broadband' type connection?
CREATE TABLE web_client_accelerator (name VARCHAR, operating_system VARCHAR, CONNECTION VARCHAR)
SELECT name, operating_system FROM web_client_accelerator WHERE CONNECTION <> 'Broadband'
What are the results of those elections for which Marcy Kaptur is the incumbent?
CREATE TABLE table_1805191_36 (results VARCHAR, incumbent VARCHAR)
SELECT results FROM table_1805191_36 WHERE incumbent = "Marcy Kaptur"
What NFL team did the Tight End position belong to?
CREATE TABLE table_name_62 (nfl_team VARCHAR, position VARCHAR)
SELECT nfl_team FROM table_name_62 WHERE position = "tight end"
What is the region for the date November 18, 2002?
CREATE TABLE table_name_76 (region VARCHAR, date VARCHAR)
SELECT region FROM table_name_76 WHERE date = "november 18, 2002"
How many stages did Team Sky lead the teams classification?
CREATE TABLE table_26010857_13 (stage INTEGER, teams_classification VARCHAR)
SELECT MAX(stage) FROM table_26010857_13 WHERE teams_classification = "Team Sky"
Name the stolen ends for germany
CREATE TABLE table_25107064_2 (stolen_ends INTEGER, country VARCHAR, Germany VARCHAR)
SELECT MIN(stolen_ends) FROM table_25107064_2 WHERE country = Germany
What year was the score 269?
CREATE TABLE table_name_34 (year VARCHAR, score VARCHAR)
SELECT COUNT(year) FROM table_name_34 WHERE score = 269
Tell me the title for japan august 23, 2012
CREATE TABLE table_name_57 (title VARCHAR, japan VARCHAR)
SELECT title FROM table_name_57 WHERE japan = "august 23, 2012"
What is the highest week for a game that was located at the Molson Stadium?
CREATE TABLE table_name_66 (week INTEGER, location VARCHAR)
SELECT MAX(week) FROM table_name_66 WHERE location = "molson stadium"
For each product which has problems, what are the number of problems and the product id?
CREATE TABLE problems (product_id VARCHAR); CREATE TABLE product (product_id VARCHAR)
SELECT COUNT(*), T2.product_id FROM problems AS T1 JOIN product AS T2 ON T1.product_id = T2.product_id GROUP BY T2.product_id
WHAT ARE THE HIGHEST POINTS WITH GOALS LARGER THAN 48, WINS LESS THAN 19, GOALS AGAINST SMALLER THAN 44, DRAWS LARGER THAN 5?
CREATE TABLE table_name_1 (points INTEGER, draws VARCHAR, goals_against VARCHAR, goals_for VARCHAR, wins VARCHAR)
SELECT MAX(points) FROM table_name_1 WHERE goals_for > 48 AND wins < 19 AND goals_against < 44 AND draws > 5
What is the sum of Land, when React is greater than 0.217, and when Name is Yoel Hernández?
CREATE TABLE table_name_75 (lane INTEGER, react VARCHAR, name VARCHAR)
SELECT SUM(lane) FROM table_name_75 WHERE react > 0.217 AND name = "yoel hernández"
How many people went to the game that had 17-13?
CREATE TABLE table_name_39 (attendance INTEGER, score VARCHAR)
SELECT SUM(attendance) FROM table_name_39 WHERE score = "17-13"
What year had less than 36 laps?
CREATE TABLE table_name_17 (year VARCHAR, laps INTEGER)
SELECT year FROM table_name_17 WHERE laps < 36
Give me a list of the names of all songs ordered by their resolution.
CREATE TABLE song (song_name VARCHAR, resolution VARCHAR)
SELECT song_name FROM song ORDER BY resolution
What was the opponents score when Carlton played at home?
CREATE TABLE table_name_55 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_55 WHERE home_team = "carlton"
Which publisher has release year of 2000 and an original dreamcast platform?
CREATE TABLE table_name_60 (publisher VARCHAR, year_of_release VARCHAR, original_platforms VARCHAR)
SELECT publisher FROM table_name_60 WHERE year_of_release = "2000" AND original_platforms = "dreamcast"
Which champion was from the location of Morrisville, NC, and whose SemiFinalist #2 of Clemson?
CREATE TABLE table_name_47 (champion VARCHAR, location VARCHAR, semi_finalist__number2 VARCHAR)
SELECT champion FROM table_name_47 WHERE location = "morrisville, nc" AND semi_finalist__number2 = "clemson"
Where the games are smaller than 5 and the points are 6, what is the average lost?
CREATE TABLE table_name_92 (lost INTEGER, points VARCHAR, games VARCHAR)
SELECT AVG(lost) FROM table_name_92 WHERE points = 6 AND games < 5
What is the November 3 result when June 10-11 is 147?
CREATE TABLE table_25284864_3 (november_3 VARCHAR, june_10_11 VARCHAR)
SELECT november_3 FROM table_25284864_3 WHERE june_10_11 = "147"
Find the id of the pet owned by student whose last name is ‘Smith’.
CREATE TABLE has_pet (petid VARCHAR, stuid VARCHAR); CREATE TABLE student (stuid VARCHAR, Lname VARCHAR)
SELECT T2.petid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid WHERE T1.Lname = 'Smith'
Which team did they play on March 11?
CREATE TABLE table_name_7 (team VARCHAR, date VARCHAR)
SELECT team FROM table_name_7 WHERE date = "march 11"
What are the points for ktm-vmc equipment?
CREATE TABLE table_16729457_18 (points VARCHAR, equipment VARCHAR)
SELECT points FROM table_16729457_18 WHERE equipment = "KTM-VMC"
Can you tell me the Money (£) that has the Country of england, and the Player of malcolm mackenzie?
CREATE TABLE table_name_59 (money___£__ VARCHAR, country VARCHAR, player VARCHAR)
SELECT money___£__ FROM table_name_59 WHERE country = "england" AND player = "malcolm mackenzie"
What was the date for the pole position of alain prost?
CREATE TABLE table_1140067_2 (date VARCHAR, pole_position VARCHAR)
SELECT date FROM table_1140067_2 WHERE pole_position = "Alain Prost"
List phone number and email address of customer with more than 2000 outstanding balance.
CREATE TABLE Customers (phone_number VARCHAR, email_address VARCHAR, amount_outstanding INTEGER)
SELECT phone_number, email_address FROM Customers WHERE amount_outstanding > 2000
What is the Country when the IATA was osl?
CREATE TABLE table_name_94 (country VARCHAR, iata VARCHAR)
SELECT country FROM table_name_94 WHERE iata = "osl"
What is the sum of the stages for category 1 races after the year 2003?
CREATE TABLE table_name_73 (stage INTEGER, category VARCHAR, year VARCHAR)
SELECT SUM(stage) FROM table_name_73 WHERE category = "1" AND year > 2003
what is the minimum rockhampton
CREATE TABLE table_12570207_1 (rockhampton INTEGER)
SELECT MIN(rockhampton) FROM table_12570207_1
What was the label in the region of Canada?
CREATE TABLE table_name_57 (label VARCHAR, region VARCHAR)
SELECT label FROM table_name_57 WHERE region = "canada"
Show the height of the mountain climbed by the climber with the maximum points.
CREATE TABLE climber (Mountain_ID VARCHAR, Points VARCHAR); CREATE TABLE mountain (Height VARCHAR, Mountain_ID VARCHAR)
SELECT T2.Height FROM climber AS T1 JOIN mountain AS T2 ON T1.Mountain_ID = T2.Mountain_ID ORDER BY T1.Points DESC LIMIT 1
Which home team plays at VFL Park?
CREATE TABLE table_name_36 (home_team VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_36 WHERE venue = "vfl park"
Which tournament was held on 9 Jun 2002?
CREATE TABLE table_name_57 (tournament VARCHAR, date VARCHAR)
SELECT tournament FROM table_name_57 WHERE date = "9 jun 2002"
What year did a school from Jennings County join?
CREATE TABLE table_name_5 (year_joined VARCHAR, school VARCHAR)
SELECT year_joined FROM table_name_5 WHERE school = "jennings county"
Which nominating festival did United Kingdom enter?
CREATE TABLE table_name_72 (nominating_festival VARCHAR, country VARCHAR)
SELECT nominating_festival FROM table_name_72 WHERE country = "united kingdom"
What was the Bills first downs on Oct. 29 with more the 23 Bills points?
CREATE TABLE table_name_47 (bills_first_downs INTEGER, date VARCHAR, bills_points VARCHAR)
SELECT MIN(bills_first_downs) FROM table_name_47 WHERE date = "oct. 29" AND bills_points > 23
What was the title of the episode having exactly 9.64 million US viewers?
CREATE TABLE table_24910742_1 (title VARCHAR, us_viewers__millions_ VARCHAR)
SELECT title FROM table_24910742_1 WHERE us_viewers__millions_ = "9.64"
How many distinct locations have the things with service detail 'Unsatisfied' been located in?
CREATE TABLE Timed_Locations_of_Things (Location_Code VARCHAR, thing_id VARCHAR); CREATE TABLE Things (thing_id VARCHAR, service_details VARCHAR)
SELECT COUNT(DISTINCT T2.Location_Code) FROM Things AS T1 JOIN Timed_Locations_of_Things AS T2 ON T1.thing_id = T2.thing_id WHERE T1.service_details = 'Unsatisfied'
Who was the away team at mcg?
CREATE TABLE table_name_25 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_25 WHERE venue = "mcg"
What is the smallest goal during the 2006 fifa world cup qualification competition?
CREATE TABLE table_name_45 (goal INTEGER, competition VARCHAR)
SELECT MIN(goal) FROM table_name_45 WHERE competition = "2006 fifa world cup qualification"
How many courses do the student whose id is 171 attend?
CREATE TABLE courses (course_id VARCHAR); CREATE TABLE student_course_attendance (course_id VARCHAR, student_id VARCHAR)
SELECT COUNT(*) FROM courses AS T1 JOIN student_course_attendance AS T2 ON T1.course_id = T2.course_id WHERE T2.student_id = 171
Who drove in races in 1949?
CREATE TABLE table_name_21 (drivers VARCHAR, year VARCHAR)
SELECT drivers FROM table_name_21 WHERE year = 1949
How many forced fumbles for jim laney with under 2 solo tackles?
CREATE TABLE table_name_20 (fumble_force VARCHAR, solo VARCHAR, player VARCHAR)
SELECT COUNT(fumble_force) FROM table_name_20 WHERE solo < 2 AND player = "jim laney"
Who was the opponent for the game taht was before week 5 on October 10, 1954?
CREATE TABLE table_name_87 (opponent VARCHAR, week VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_87 WHERE week < 5 AND date = "october 10, 1954"
What is the GameRankings Released of 2011 with a Metacritic of 83/100?
CREATE TABLE table_name_40 (gamerankings VARCHAR, metacritic VARCHAR, year_released VARCHAR)
SELECT gamerankings FROM table_name_40 WHERE metacritic = "83/100" AND year_released = 2011
Tell me the MPEG-2 of yes and MPEG-1 of yes
CREATE TABLE table_name_86 (realvideo VARCHAR, mpeg_2 VARCHAR, mpeg_1 VARCHAR)
SELECT realvideo FROM table_name_86 WHERE mpeg_2 = "yes" AND mpeg_1 = "yes"
Which Score has a Home team of aston villa?
CREATE TABLE table_name_20 (score VARCHAR, home_team VARCHAR)
SELECT score FROM table_name_20 WHERE home_team = "aston villa"
When nominee is the result who is the director?
CREATE TABLE table_26555737_1 (director VARCHAR, result VARCHAR)
SELECT director FROM table_26555737_1 WHERE result = "Nominee"
Who is the driver when the tyre is p and the entrant is officine alfieri maserati?
CREATE TABLE table_name_10 (driver VARCHAR, tyre VARCHAR, entrant VARCHAR)
SELECT driver FROM table_name_10 WHERE tyre = "p" AND entrant = "officine alfieri maserati"
How many gold values have totals over 30, bronzes over 35, and are in Swimming?
CREATE TABLE table_name_75 (gold VARCHAR, bronze VARCHAR, total VARCHAR, sport VARCHAR)
SELECT COUNT(gold) FROM table_name_75 WHERE total > 30 AND sport = "swimming" AND bronze > 35
What is the smallest crowd when collingwood is home team?
CREATE TABLE table_name_91 (crowd INTEGER, home_team VARCHAR)
SELECT MIN(crowd) FROM table_name_91 WHERE home_team = "collingwood"
Who replaced the previous manager of Altay?
CREATE TABLE table_27091128_2 (replaced_by VARCHAR, team VARCHAR)
SELECT replaced_by FROM table_27091128_2 WHERE team = "Altay"
Which Table diameter has a Crown height of 14.45%?
CREATE TABLE table_name_35 (table_diameter VARCHAR, crown_height VARCHAR)
SELECT table_diameter FROM table_name_35 WHERE crown_height = "14.45%"
What is the average long that has 1581 as a gain, with a loss less than 308?
CREATE TABLE table_name_72 (long INTEGER, gain VARCHAR, loss VARCHAR)
SELECT AVG(long) FROM table_name_72 WHERE gain = 1581 AND loss < 308
What is the total number of weeks that the Giants played against the Dallas Cowboys?
CREATE TABLE table_name_25 (week VARCHAR, opponent VARCHAR)
SELECT COUNT(week) FROM table_name_25 WHERE opponent = "dallas cowboys"
What were the total career titles of the player who led for 5 years?
CREATE TABLE table_23408094_14 (total_career_titles VARCHAR, span_of_years_led VARCHAR)
SELECT COUNT(total_career_titles) FROM table_23408094_14 WHERE span_of_years_led = 5
How much Drawn has a Name of erc lechbruck, and Points smaller than 17?
CREATE TABLE table_name_13 (drawn VARCHAR, name VARCHAR, points VARCHAR)
SELECT COUNT(drawn) FROM table_name_13 WHERE name = "erc lechbruck" AND points < 17
Who is the oldest person whose job is student?
CREATE TABLE person (name VARCHAR, job VARCHAR, age INTEGER); CREATE TABLE Person (name VARCHAR, job VARCHAR, age INTEGER)
SELECT name FROM Person WHERE job = 'student' AND age = (SELECT MAX(age) FROM person WHERE job = 'student')
Who was the Away team at Arden Street Oval?
CREATE TABLE table_name_98 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_98 WHERE venue = "arden street oval"
What was Lew Worsham's score?
CREATE TABLE table_name_53 (score VARCHAR, player VARCHAR)
SELECT score FROM table_name_53 WHERE player = "lew worsham"
Find the last names of the members of the club "Bootup Baltimore".
CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE student (lname VARCHAR, stuid VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR)
SELECT t3.lname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = "Bootup Baltimore"
When are the birthdays of customer who are classified as 'Good Customer' status?
CREATE TABLE Customers (date_of_birth VARCHAR, customer_status_code VARCHAR)
SELECT date_of_birth FROM Customers WHERE customer_status_code = 'Good Customer'
What was the round when the home team was chornomorets odessa?
CREATE TABLE table_name_55 (round VARCHAR, home_team VARCHAR)
SELECT round FROM table_name_55 WHERE home_team = "chornomorets odessa"
What is the stage of Gerolsteiner?
CREATE TABLE table_name_29 (stage VARCHAR, team_classification VARCHAR)
SELECT stage FROM table_name_29 WHERE team_classification = "gerolsteiner"
What is the number of Inaug., when the Type is Public, when the Name is Mei Lam Estate, and when the No Units is larger than 4,156?
CREATE TABLE table_name_96 (inaug VARCHAR, no_units VARCHAR, type VARCHAR, name VARCHAR)
SELECT COUNT(inaug) FROM table_name_96 WHERE type = "public" AND name = "mei lam estate" AND no_units > 4 OFFSET 156