answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT rank FROM table_name_66 WHERE chassis = "reynard 94i" AND year = "1996"
What rank did the chassis reynard 94i have in 1996?
CREATE TABLE table_name_66 (rank VARCHAR, chassis VARCHAR, year VARCHAR)
SELECT us_viewers__millions_ FROM table_24018430_3 WHERE no_in_season = 12
what number is us viewers in season 12?
CREATE TABLE table_24018430_3 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR)
SELECT runner_up FROM table_11214772_1 WHERE year = "2004" AND champion = "North Carolina State"
who is the runner-up where year is 2004 and champion is north carolina state
CREATE TABLE table_11214772_1 (runner_up VARCHAR, year VARCHAR, champion VARCHAR)
SELECT away_team AS score FROM table_name_34 WHERE crowd > 28 OFFSET 536
What team played in front of 28,536 at an away stadium?
CREATE TABLE table_name_34 (away_team VARCHAR, crowd INTEGER)
SELECT result FROM table_1341472_20 WHERE incumbent = "Richard Baker"
List all results in elections with Richard Baker as the incumbent.
CREATE TABLE table_1341472_20 (result VARCHAR, incumbent VARCHAR)
SELECT name FROM table_name_39 WHERE current_age > 45 AND years_on_death_row < 22
Who is the prisoner that is older than 45 and has served less than 22 years on death row?
CREATE TABLE table_name_39 (name VARCHAR, current_age VARCHAR, years_on_death_row VARCHAR)
SELECT release_date FROM table_name_43 WHERE voltage = "1.65–1.7 v" AND mult = "4.5×" AND socket = "slot 1"
When was the microprocessor with 1.65–1.7 v, a mult of 4.5×, and a slot 1 socket released?
CREATE TABLE table_name_43 (release_date VARCHAR, socket VARCHAR, voltage VARCHAR, mult VARCHAR)
SELECT high_assists FROM table_name_40 WHERE team = "houston"
What are the High assists for Team houston?
CREATE TABLE table_name_40 (high_assists VARCHAR, team VARCHAR)
SELECT COUNT(population) FROM table_name_62 WHERE county = "stockholm county" AND municipality = "danderyd municipality" AND code < 162
What is the population of Danderyd municipality in Stockholm County with a code lower than 162?
CREATE TABLE table_name_62 (population VARCHAR, code VARCHAR, county VARCHAR, municipality VARCHAR)
SELECT affiliation FROM table_name_63 WHERE nickname = "dukes"
Who is affiliated with the Dukes?
CREATE TABLE table_name_63 (affiliation VARCHAR, nickname VARCHAR)
SELECT location_attendance FROM table_27733258_6 WHERE score = "L 105–123 (OT)"
Name the location attendance for l 105–123 (ot)
CREATE TABLE table_27733258_6 (location_attendance VARCHAR, score VARCHAR)
SELECT home_ground FROM table_name_68 WHERE coach = "andrej lemanis"
What is home ground for coach Andrej Lemanis?
CREATE TABLE table_name_68 (home_ground VARCHAR, coach VARCHAR)
SELECT COUNT(valves) FROM table_25695027_1 WHERE years_built = "1902-05"
How many types of valves were used on this engine that was built on 1902-05?
CREATE TABLE table_25695027_1 (valves VARCHAR, years_built VARCHAR)
SELECT MIN(year) FROM table_name_27 WHERE position = "rb" AND college = "louisiana state"
Which lowest year has a Position of rb, and a College of louisiana state?
CREATE TABLE table_name_27 (year INTEGER, position VARCHAR, college VARCHAR)
SELECT party FROM table_22753245_1 WHERE constituency = "10. Tindivanam"
What is the party where the constituency is 10. Tindivanam?
CREATE TABLE table_22753245_1 (party VARCHAR, constituency VARCHAR)
SELECT three_mora_word FROM table_name_18 WHERE NOT accented_mora = "low tone" AND one_mora = "2"
What is the three-mora word with a low tone accented mora and a one mora of 2?
CREATE TABLE table_name_18 (three_mora_word VARCHAR, one_mora VARCHAR, accented_mora VARCHAR)
SELECT rider FROM table_23465864_5 WHERE tues_25_aug = "20' 32.11 110.241mph"
What is every rider on Tuesday August 25 at 20' 32.11 110.241mph?
CREATE TABLE table_23465864_5 (rider VARCHAR, tues_25_aug VARCHAR)
SELECT MIN(episode_number) FROM table_12995531_3 WHERE total_viewers = 614000
what is the episode number where the total viewers is 614000?
CREATE TABLE table_12995531_3 (episode_number INTEGER, total_viewers VARCHAR)
SELECT reading FROM table_2534578_1 WHERE science = "96.13"
What was the reading score in the year the science score was 96.13?
CREATE TABLE table_2534578_1 (reading VARCHAR, science VARCHAR)
SELECT name FROM student WHERE NOT id IN (SELECT T1.id FROM takes AS T1 JOIN course AS T2 ON T1.course_id = T2.course_id WHERE T2.dept_name = 'Biology')
Find the name of students who didn't take any course from Biology department.
CREATE TABLE student (name VARCHAR, id VARCHAR); CREATE TABLE course (course_id VARCHAR, dept_name VARCHAR); CREATE TABLE takes (id VARCHAR, course_id VARCHAR)
SELECT away_team AS score FROM table_name_70 WHERE venue = "brunswick street oval"
What was the away score when the game was at Brunswick Street Oval?
CREATE TABLE table_name_70 (away_team VARCHAR, venue VARCHAR)
SELECT network FROM table_name_19 WHERE year = 2014
What network is working in 2014?
CREATE TABLE table_name_19 (network VARCHAR, year VARCHAR)
SELECT grid FROM table_name_50 WHERE bike = "kawasaki zx-10r" AND rider = "régis laconi"
What is the Grid of Régis Laconi's bike that is a Kawasaki zx-10r?
CREATE TABLE table_name_50 (grid VARCHAR, bike VARCHAR, rider VARCHAR)
SELECT MAX(sio_2) FROM table_name_50 WHERE k_2_o > 0.16 AND fe_2_o_3 > 0.16 AND na_2_o < 7.53
What is the highest SiO 2, when K 2 O is greater than 0.16, when Fe 2 O 3 is greater than 0.16, and when Na 2 O is less than 7.53?
CREATE TABLE table_name_50 (sio_2 INTEGER, na_2_o VARCHAR, k_2_o VARCHAR, fe_2_o_3 VARCHAR)
SELECT no_5 FROM table_name_28 WHERE no_6 = "ethan" AND no_4 = "william" AND no_9 = "john"
Name the No. 5 which has a No. 6 of ethan, and a No. 4 of william, and a No. 9 of john?
CREATE TABLE table_name_28 (no_5 VARCHAR, no_9 VARCHAR, no_6 VARCHAR, no_4 VARCHAR)
SELECT school_club_team_country FROM table_11734041_2 WHERE no_s_ = "10" AND position = "Forward"
What school did the forward whose number is 10 belong to?
CREATE TABLE table_11734041_2 (school_club_team_country VARCHAR, no_s_ VARCHAR, position VARCHAR)
SELECT MAX(game) FROM table_27756314_10 WHERE score = "L 96–103 (OT)"
What is the highest game with the score l 96–103 (ot)?
CREATE TABLE table_27756314_10 (game INTEGER, score VARCHAR)
SELECT Name FROM wrestler ORDER BY Days_held DESC
List the names of wrestlers in descending order of days held.
CREATE TABLE wrestler (Name VARCHAR, Days_held VARCHAR)
SELECT series FROM table_name_2 WHERE game > 4
What was the series standing for games over 4?
CREATE TABLE table_name_2 (series VARCHAR, game INTEGER)
SELECT score FROM table_name_55 WHERE december = 10
Can you tell me the Score that has the December of 10?
CREATE TABLE table_name_55 (score VARCHAR, december VARCHAR)
SELECT catalog FROM table_name_5 WHERE date = "january 25, 1987"
What is the catalog number for the January 25, 1987 release?
CREATE TABLE table_name_5 (catalog VARCHAR, date VARCHAR)
SELECT release FROM table_name_70 WHERE title = "gala"
When was Gala released?
CREATE TABLE table_name_70 (release VARCHAR, title VARCHAR)
SELECT district FROM table_1341568_24 WHERE incumbent = "Vin Weber"
What location is Vin Weber from?
CREATE TABLE table_1341568_24 (district VARCHAR, incumbent VARCHAR)
SELECT AVG(round) FROM table_name_54 WHERE opponent = "clay guida"
What is the average number of rounds when fighting against Clay Guida?
CREATE TABLE table_name_54 (round INTEGER, opponent VARCHAR)
SELECT party FROM table_1341522_24 WHERE district = "Massachusetts4"
What parties are represented in Massachusetts4 district?
CREATE TABLE table_1341522_24 (party VARCHAR, district VARCHAR)
SELECT attendance FROM table_name_11 WHERE home_team = "arsenal"
What was the attendance for Arsenal?
CREATE TABLE table_name_11 (attendance VARCHAR, home_team VARCHAR)
SELECT moving_to FROM table_name_39 WHERE year > 2005 AND rank > 5 AND name = "ismaël bangoura"
Ismaël Bangoura with a rank larger than 5 after the year 2005 was moving to what football club?
CREATE TABLE table_name_39 (moving_to VARCHAR, name VARCHAR, year VARCHAR, rank VARCHAR)
SELECT place FROM table_name_53 WHERE to_par = "–2" AND player = "bernhard langer"
WHich Place has a To par of –2, and a Player of bernhard langer?
CREATE TABLE table_name_53 (place VARCHAR, to_par VARCHAR, player VARCHAR)
SELECT sales_breakdown FROM table_21458142_1 WHERE publisher = "Nintendo" AND release_date = "May 15, 2006"
What's the sales breakdown of the Nintendo game released on May 15, 2006?
CREATE TABLE table_21458142_1 (sales_breakdown VARCHAR, publisher VARCHAR, release_date VARCHAR)
SELECT score FROM table_17325580_5 WHERE team = "Milwaukee"
what was the final score of the game versus Milwaukee?
CREATE TABLE table_17325580_5 (score VARCHAR, team VARCHAR)
SELECT Pilot_name FROM pilot WHERE Team = "Bradley" OR Team = "Fordham"
Show the names of pilots from team "Bradley" or "Fordham".
CREATE TABLE pilot (Pilot_name VARCHAR, Team VARCHAR)
SELECT area_km_2 FROM table_name_49 WHERE census_ranking = "2,290 of 5,008"
what is the area when the census ranking is 2,290 of 5,008?
CREATE TABLE table_name_49 (area_km_2 VARCHAR, census_ranking VARCHAR)
SELECT class FROM table_14342367_13 WHERE position = "Right tackle"
What was the class of the player who played right tackle?
CREATE TABLE table_14342367_13 (class VARCHAR, position VARCHAR)
SELECT venue FROM table_24919137_2 WHERE score = "14.16 (100)-12.12 (84)"
Where was the game played when the score was 14.16 (100)-12.12 (84)?
CREATE TABLE table_24919137_2 (venue VARCHAR, score VARCHAR)
SELECT AVG(match) FROM table_name_55 WHERE lost > 0 AND points > 6 AND team = "legia warszawa" AND draw < 0
Which average match has a lost greater than 0, points greater than 6, legia warszawa as the team, and a draw less than 0?
CREATE TABLE table_name_55 (match INTEGER, draw VARCHAR, team VARCHAR, lost VARCHAR, points VARCHAR)
SELECT mission_name FROM table_1558077_8 WHERE lunar_blastoff_date = "21 November 1969"
Name the mission name for 21 november 1969
CREATE TABLE table_1558077_8 (mission_name VARCHAR, lunar_blastoff_date VARCHAR)
SELECT home_team FROM table_name_49 WHERE tie_no = "4"
What is Home Team, when Tie No is 4?
CREATE TABLE table_name_49 (home_team VARCHAR, tie_no VARCHAR)
SELECT AVG(staterooms) FROM table_name_28 WHERE guests > 210
What is the number of staterooms when guests was larger than 210?
CREATE TABLE table_name_28 (staterooms INTEGER, guests INTEGER)
SELECT AVG(wickets) FROM table_name_24 WHERE overs > 44 AND player = "danish kaneria" AND average > 13.8
What is the average wickets that have overs greater than 44, danish kaneria as the player, with an average greater than 13.8?
CREATE TABLE table_name_24 (wickets INTEGER, average VARCHAR, overs VARCHAR, player VARCHAR)
SELECT MIN(total) FROM table_name_99 WHERE country = "united states" AND to_par = "+12"
Which Total is the lowest one that has a Country of united states, and a To par of +12?
CREATE TABLE table_name_99 (total INTEGER, country VARCHAR, to_par VARCHAR)
SELECT AVG(car__number) FROM table_name_12 WHERE points = "109"
What is the average car number of all the drivers with 109 points?
CREATE TABLE table_name_12 (car__number INTEGER, points VARCHAR)
SELECT COUNT(last_5_meetings) FROM table_16201038_3 WHERE missouri_vs = "Texas Tech"
Name the total number of last 5 meetings for texas tech
CREATE TABLE table_16201038_3 (last_5_meetings VARCHAR, missouri_vs VARCHAR)
SELECT owner FROM table_name_58 WHERE frequency = "0 101.1 fm"
Who is the owner with a frequency of 0 101.1 fm?
CREATE TABLE table_name_58 (owner VARCHAR, frequency VARCHAR)
SELECT COUNT(opponent) FROM table_23346303_3 WHERE location = "Syracuse, NY"
what is the number of opponents where the location is syracuse, ny?
CREATE TABLE table_23346303_3 (opponent VARCHAR, location VARCHAR)
SELECT engine FROM table_name_40 WHERE chassis = "mclaren mp4-20"
What engine did the mclaren mp4-20 use?
CREATE TABLE table_name_40 (engine VARCHAR, chassis VARCHAR)
SELECT opponent FROM table_name_62 WHERE location = "london, england" AND round < 2
Who was the opponent in London, England in a round less than 2?
CREATE TABLE table_name_62 (opponent VARCHAR, location VARCHAR, round VARCHAR)
SELECT hometown FROM table_name_22 WHERE legislatures = "twenty-sixth"
What is the hometown of the representative that served the twenty-sixth legislature?
CREATE TABLE table_name_22 (hometown VARCHAR, legislatures VARCHAR)
SELECT constructor FROM table_name_22 WHERE race_name = "vii kanonloppet"
Name the constructor for vii kanonloppet
CREATE TABLE table_name_22 (constructor VARCHAR, race_name VARCHAR)
SELECT class_a FROM table_14747043_1 WHERE class_aA = Marion
Which is the class A when Marion was the class AA
CREATE TABLE table_14747043_1 (class_a VARCHAR, class_aA VARCHAR, Marion VARCHAR)
SELECT displacement FROM table_name_87 WHERE engine = "iveco f1ce3481e"
What is the Displacement of the Iveco F1CE3481E Engine?
CREATE TABLE table_name_87 (displacement VARCHAR, engine VARCHAR)
SELECT COUNT(DISTINCT name) FROM products WHERE NOT name IN (SELECT T1.name FROM products AS T1 JOIN manufacturers AS T2 ON T1.Manufacturer = T2.code WHERE T2.name = 'Sony')
Find number of products which Sony does not make.
CREATE TABLE manufacturers (code VARCHAR, name VARCHAR); CREATE TABLE products (name VARCHAR); CREATE TABLE products (name VARCHAR, Manufacturer VARCHAR)
SELECT AVG(gold) FROM table_name_53 WHERE silver > 1 AND bronze < 2
What's the average amount of Gold medals won when there were more than 1 silver medal won and less than 2 bronze medals won.
CREATE TABLE table_name_53 (gold INTEGER, silver VARCHAR, bronze VARCHAR)
SELECT COUNT(land_area__2010_) FROM table_249512_2 WHERE place_name = "Ballplay"
What is the number of land areas that have a place name of Ballplay?
CREATE TABLE table_249512_2 (land_area__2010_ VARCHAR, place_name VARCHAR)
SELECT new_channel_s_ FROM table_name_19 WHERE programme = "gladiators"
What channel is Gladiators on?
CREATE TABLE table_name_19 (new_channel_s_ VARCHAR, programme VARCHAR)
SELECT MAX(finishes) FROM table_23385853_20
What is the finishes maximum number?
CREATE TABLE table_23385853_20 (finishes INTEGER)
SELECT MIN(year) FROM table_name_28 WHERE rank > 85
What is the lowest Year, when Rank is greater than 85?
CREATE TABLE table_name_28 (year INTEGER, rank INTEGER)
SELECT COUNT(against) FROM table_name_88 WHERE date = "16/03/1996"
What is the total number of Against, when Date is "16/03/1996"?
CREATE TABLE table_name_88 (against VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_1 WHERE surface = "grass"
Which opponent used a grass surface?
CREATE TABLE table_name_1 (opponent VARCHAR, surface VARCHAR)
SELECT away_team FROM table_name_28 WHERE venue = "western oval"
Who was the away team at western oval?
CREATE TABLE table_name_28 (away_team VARCHAR, venue VARCHAR)
SELECT province FROM table_name_82 WHERE wamalwa = "4,431"
What is listed for the Province with a Wamalwa of 4,431?
CREATE TABLE table_name_82 (province VARCHAR, wamalwa VARCHAR)
SELECT condition FROM table_name_14 WHERE partial_thromboplastin_time = "prolonged or unaffected"
Name the condition with partial thromboplastin time of prolonged or unaffected
CREATE TABLE table_name_14 (condition VARCHAR, partial_thromboplastin_time VARCHAR)
SELECT COUNT(rank) FROM table_name_61 WHERE silver = 1 AND total > 3 AND gold > 2
What rank has 1 silver, more than 2 gold, and a total larger than 3?
CREATE TABLE table_name_61 (rank VARCHAR, gold VARCHAR, silver VARCHAR, total VARCHAR)
SELECT MIN(round_1) FROM table_name_15 WHERE place = "t15" AND year < 1998
What is the lowest round with a place of t15 in a year earlier than 1998?
CREATE TABLE table_name_15 (round_1 INTEGER, place VARCHAR, year VARCHAR)
SELECT copa_libertadores_1997 FROM table_14310205_1 WHERE supercopa_1996 = "QF"
what is th copa libertadores 1997 is qf?
CREATE TABLE table_14310205_1 (copa_libertadores_1997 VARCHAR, supercopa_1996 VARCHAR)
SELECT COUNT(party) FROM table_1341690_20 WHERE incumbent = "Robert Bauman"
How many instances are there of party in the situation where Robert Bauman is the incumbent politician?
CREATE TABLE table_1341690_20 (party VARCHAR, incumbent VARCHAR)
SELECT COUNT(english_name) FROM table_1104312_5 WHERE area_in_km² = "17.72"
How many districts have an area of 17.72 KM2?
CREATE TABLE table_1104312_5 (english_name VARCHAR, area_in_km² VARCHAR)
SELECT air_date FROM table_name_48 WHERE demo = "1.6/5"
When is the air date that demo-ed at 1.6/5?
CREATE TABLE table_name_48 (air_date VARCHAR, demo VARCHAR)
SELECT model_number FROM table_name_2 WHERE release_price___usd__ = "$303" AND sspec_number = "sr14q(c0)"
What is the model number with a release price of $303, and a sSpec number of sr14q(c0)?
CREATE TABLE table_name_2 (model_number VARCHAR, release_price___usd__ VARCHAR, sspec_number VARCHAR)
SELECT album FROM table_name_21 WHERE label = "reunion" AND year = 2006
What album had the reunion label in 2006?
CREATE TABLE table_name_21 (album VARCHAR, label VARCHAR, year VARCHAR)
SELECT assists_per_game FROM table_2387461_1 WHERE tournament = "2010 FIBA World Championship"
How many assists per game in the tournament 2010 fiba world championship?
CREATE TABLE table_2387461_1 (assists_per_game VARCHAR, tournament VARCHAR)
SELECT part_4 FROM table_name_65 WHERE part_3 = "*hleupun"
What was part 4 when part 3 was *hleupun?
CREATE TABLE table_name_65 (part_4 VARCHAR, part_3 VARCHAR)
SELECT AVG(rank) FROM table_name_34 WHERE name = "viktors dobrecovs" AND matches < 325
What is the Rank for Viktors Dobrecovs with less than 325 Matches?
CREATE TABLE table_name_34 (rank INTEGER, name VARCHAR, matches VARCHAR)
SELECT date FROM table_name_46 WHERE election = "1953"
When was the Election of 1953?
CREATE TABLE table_name_46 (date VARCHAR, election VARCHAR)
SELECT type FROM table_name_24 WHERE course = "misurina to bassano del grappa"
What type is the misurina to bassano del grappa course?
CREATE TABLE table_name_24 (type VARCHAR, course VARCHAR)
SELECT opponent FROM table_name_95 WHERE yards < 197 AND average < 32 AND year = 1966
Which Opponent has Yards smaller than 197, and an Average smaller than 32, and a Year of 1966?
CREATE TABLE table_name_95 (opponent VARCHAR, year VARCHAR, yards VARCHAR, average VARCHAR)
SELECT COUNT(macedonian) FROM table_25008327_8 WHERE slovianski = "veliki"
How many values for Macedonian correspond to Slovianski value of Veliki?
CREATE TABLE table_25008327_8 (macedonian VARCHAR, slovianski VARCHAR)
SELECT score FROM table_name_33 WHERE third_place = "stefan edberg"
What is the score with third place of stefan edberg?
CREATE TABLE table_name_33 (score VARCHAR, third_place VARCHAR)
SELECT effic FROM table_name_54 WHERE avg_g = 2.7
Avg/G of 2.7 is what effic?
CREATE TABLE table_name_54 (effic VARCHAR, avg_g VARCHAR)
SELECT stage FROM table_name_93 WHERE mountains_classification = "mariano piccoli" AND points_classification = "mario cipollini" AND winner = "laudelino cubino"
Which stage has a mountains classification of Mariano Piccoli, a points classification of Mario Cipollini and was won by Laudelino Cubino?
CREATE TABLE table_name_93 (stage VARCHAR, winner VARCHAR, mountains_classification VARCHAR, points_classification VARCHAR)
SELECT dainty_june FROM table_name_5 WHERE louise = "tammy blanchard"
Who was Dainty June when Tammy Blanchard was Louise?
CREATE TABLE table_name_5 (dainty_june VARCHAR, louise VARCHAR)
SELECT first_performance FROM table_name_74 WHERE status = "past" AND style = "ballet, tap"
What is the First Performance when the status is past and the style was ballet, tap?
CREATE TABLE table_name_74 (first_performance VARCHAR, status VARCHAR, style VARCHAR)
SELECT SUM(week) FROM table_name_54 WHERE date = "november 20, 1977"
What was the Week number on November 20, 1977?
CREATE TABLE table_name_54 (week INTEGER, date VARCHAR)
SELECT tries_for FROM table_17625749_3 WHERE won = "11"
How many tries for are there when 11 were won?
CREATE TABLE table_17625749_3 (tries_for VARCHAR, won VARCHAR)
SELECT nominee FROM table_name_18 WHERE category = "best theatre choreographer"
Who was nominated for Best Theatre Choreographer?
CREATE TABLE table_name_18 (nominee VARCHAR, category VARCHAR)
SELECT name FROM table_name_70 WHERE app_gs_sub_ = "14 (8/6)"
Tell what has the App(GS/Sub) of 14 (8/6)
CREATE TABLE table_name_70 (name VARCHAR, app_gs_sub_ VARCHAR)
SELECT dominant_religion__2002_ FROM table_2562572_54 WHERE population__2011_ = 2337
What is the dominant religion in 2002 for the population of 2337 in 2011?
CREATE TABLE table_2562572_54 (dominant_religion__2002_ VARCHAR, population__2011_ VARCHAR)
SELECT finish FROM table_name_24 WHERE rank = "33" AND laps = 200
Which finish has 33 as a rank and 200 for laps?
CREATE TABLE table_name_24 (finish VARCHAR, rank VARCHAR, laps VARCHAR)
SELECT result FROM table_name_15 WHERE year > 2001
What was the result for the years after 2001?
CREATE TABLE table_name_15 (result VARCHAR, year INTEGER)
SELECT T2.bname FROM loan AS T1 JOIN bank AS T2 ON T1.branch_id = T2.branch_id JOIN customer AS T3 ON T1.cust_id = T3.cust_id WHERE T3.credit_score < 100
Find the names of bank branches that have provided a loan to any customer whose credit score is below 100.
CREATE TABLE bank (bname VARCHAR, branch_id VARCHAR); CREATE TABLE customer (cust_id VARCHAR, credit_score INTEGER); CREATE TABLE loan (branch_id VARCHAR, cust_id VARCHAR)
SELECT COUNT(_number) FROM table_27862483_3 WHERE date = "April 23"
How many different numbers are there for the game played on April 23?
CREATE TABLE table_27862483_3 (_number VARCHAR, date VARCHAR)