Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
20,400
<question>: Name the production code for number in season being 21 <context>: CREATE TABLE table_22948559_1 (production_code VARCHAR, no_in_season VARCHAR)
SELECT production_code FROM table_22948559_1 WHERE no_in_season = "21"
20,401
<question>: Name the production code by paul lieberstein <context>: CREATE TABLE table_22948559_1 (production_code VARCHAR, written_by VARCHAR)
SELECT production_code FROM table_22948559_1 WHERE written_by = "Paul Lieberstein"
20,402
<question>: How many blockings occured in the game with 198 rebounds? <context>: CREATE TABLE table_22993636_5 (blocks INTEGER, rebounds VARCHAR)
SELECT MAX(blocks) FROM table_22993636_5 WHERE rebounds = 198
20,403
<question>: For how long did Jordan Coleman play? <context>: CREATE TABLE table_22993636_5 (minutes VARCHAR, player VARCHAR)
SELECT minutes FROM table_22993636_5 WHERE player = "Jordan Coleman"
20,404
<question>: How much time, in minutes, did Chanel Chisholm play? <context>: CREATE TABLE table_22993636_5 (minutes VARCHAR, player VARCHAR)
SELECT COUNT(minutes) FROM table_22993636_5 WHERE player = "Chanel Chisholm"
20,405
<question>: What is the lowest number of 3 pointers that occured in games with 52 steals? <context>: CREATE TABLE table_22993636_5 (three_pointers INTEGER, steals VARCHAR)
SELECT MIN(three_pointers) FROM table_22993636_5 WHERE steals = 52
20,406
<question>: What is the lowest number of games played by the player with 50 steals? <context>: CREATE TABLE table_22993636_5 (games_played INTEGER, steals VARCHAR)
SELECT MIN(games_played) FROM table_22993636_5 WHERE steals = 50
20,407
<question>: What countries does the Rock come from? <context>: CREATE TABLE table_2305948_1 (country VARCHAR, name VARCHAR)
SELECT COUNT(country) FROM table_2305948_1 WHERE name = "The Rock"
20,408
<question>: How many times has a wrestler whose federation was roh, wwe competed in this event? <context>: CREATE TABLE table_2305948_1 (other_placings VARCHAR, federation VARCHAR)
SELECT COUNT(other_placings) FROM table_2305948_1 WHERE federation = "ROH, WWE"
20,409
<question>: What are the rank/s of Eddie Guerrero? <context>: CREATE TABLE table_2305948_1 (_number VARCHAR, name VARCHAR)
SELECT _number FROM table_2305948_1 WHERE name = "Eddie Guerrero"
20,410
<question>: How many times has a wrestler from the country of England wrestled in this event? <context>: CREATE TABLE table_2305948_1 (country VARCHAR)
SELECT COUNT(2) FROM table_2305948_1 WHERE country = "England"
20,411
<question>: Name who wrote number 88 <context>: CREATE TABLE table_23235679_1 (written_by VARCHAR, no_in_series VARCHAR)
SELECT written_by FROM table_23235679_1 WHERE no_in_series = 88
20,412
<question>: Name who wrote 5ajn11 <context>: CREATE TABLE table_23235679_1 (written_by VARCHAR, production_code VARCHAR)
SELECT written_by FROM table_23235679_1 WHERE production_code = "5AJN11"
20,413
<question>: Name who wrote the episode directed by pam cooke & jansen yee <context>: CREATE TABLE table_23235679_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT written_by FROM table_23235679_1 WHERE directed_by = "Pam Cooke & Jansen Yee"
20,414
<question>: Name the number of year for 6–3, 6–2 hard surface <context>: CREATE TABLE table_23235767_4 (year VARCHAR, score_in_the_final VARCHAR, surface VARCHAR)
SELECT COUNT(year) FROM table_23235767_4 WHERE score_in_the_final = "6–3, 6–2" AND surface = "Hard"
20,415
<question>: Name the surface for philadelphia <context>: CREATE TABLE table_23235767_4 (surface VARCHAR, championship VARCHAR)
SELECT surface FROM table_23235767_4 WHERE championship = "Philadelphia"
20,416
<question>: Name the championship for clay and corrado barazzutti <context>: CREATE TABLE table_23235767_4 (championship VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)
SELECT championship FROM table_23235767_4 WHERE surface = "Clay" AND opponent_in_the_final = "Corrado Barazzutti"
20,417
<question>: Name the year for clay for boston and guillermo vilas <context>: CREATE TABLE table_23235767_4 (year VARCHAR, opponent_in_the_final VARCHAR, surface VARCHAR, championship VARCHAR)
SELECT year FROM table_23235767_4 WHERE surface = "Clay" AND championship = "Boston" AND opponent_in_the_final = "Guillermo Vilas"
20,418
<question>: Name the total number of opponent in the final for 6–2, 6–1, 6–3 <context>: CREATE TABLE table_23235767_4 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR)
SELECT COUNT(opponent_in_the_final) FROM table_23235767_4 WHERE score_in_the_final = "6–2, 6–1, 6–3"
20,419
<question>: What is every year where opponent in the final is John Mcenroe at Wimbledon? <context>: CREATE TABLE table_23235767_1 (year VARCHAR, opponent_in_the_final VARCHAR, championship VARCHAR)
SELECT year FROM table_23235767_1 WHERE opponent_in_the_final = "John McEnroe" AND championship = "Wimbledon"
20,420
<question>: What is every score in the final for opponent in final John Mcenroe at US Open? <context>: CREATE TABLE table_23235767_1 (score_in_the_final VARCHAR, opponent_in_the_final VARCHAR, championship VARCHAR)
SELECT score_in_the_final FROM table_23235767_1 WHERE opponent_in_the_final = "John McEnroe" AND championship = "US Open"
20,421
<question>: What is every surface with a score in the final of 6–4, 6–7 (1–7) , 6–7 (4–7) , 4–6? <context>: CREATE TABLE table_23235767_1 (surface VARCHAR, score_in_the_final VARCHAR)
SELECT surface FROM table_23235767_1 WHERE score_in_the_final = "6–4, 6–7 (1–7) , 6–7 (4–7) , 4–6"
20,422
<question>: What was the score in game 6? <context>: CREATE TABLE table_23248910_11 (score VARCHAR, game VARCHAR)
SELECT score FROM table_23248910_11 WHERE game = 6
20,423
<question>: What were the amount of rebounds in game 2? <context>: CREATE TABLE table_23248910_11 (high_rebounds VARCHAR, game VARCHAR)
SELECT high_rebounds FROM table_23248910_11 WHERE game = 2
20,424
<question>: On what date was the attendance at TD Garden 18,624? <context>: CREATE TABLE table_23274514_8 (date VARCHAR, location_attendance VARCHAR)
SELECT date FROM table_23274514_8 WHERE location_attendance = "TD Garden 18,624"
20,425
<question>: What day was the record 14-27? <context>: CREATE TABLE table_23274514_6 (date VARCHAR, record VARCHAR)
SELECT date FROM table_23274514_6 WHERE record = "14-27"
20,426
<question>: How many people got high points in game 35? <context>: CREATE TABLE table_23274514_6 (high_points VARCHAR, game VARCHAR)
SELECT COUNT(high_points) FROM table_23274514_6 WHERE game = 35
20,427
<question>: Who had the highest points on January 2? <context>: CREATE TABLE table_23274514_6 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_23274514_6 WHERE date = "January 2"
20,428
<question>: Who did the high rebounds in the game where Carl Landry (23) did the most high points? <context>: CREATE TABLE table_23281862_6 (high_rebounds VARCHAR, high_points VARCHAR)
SELECT high_rebounds FROM table_23281862_6 WHERE high_points = "Carl Landry (23)"
20,429
<question>: What's the end score of the game where Shane Battier (8) did the high rebounds? <context>: CREATE TABLE table_23281862_6 (score VARCHAR, high_rebounds VARCHAR)
SELECT score FROM table_23281862_6 WHERE high_rebounds = "Shane Battier (8)"
20,430
<question>: Where was the game in which Carl Landry (25) did the most high points played? <context>: CREATE TABLE table_23281862_6 (location_attendance VARCHAR, high_points VARCHAR)
SELECT location_attendance FROM table_23281862_6 WHERE high_points = "Carl Landry (25)"
20,431
<question>: Who had the most high assists with a record of 32-19? <context>: CREATE TABLE table_23284271_8 (high_assists VARCHAR, record VARCHAR)
SELECT high_assists FROM table_23284271_8 WHERE record = "32-19"
20,432
<question>: When did the Mavericks have a record of 32-19? <context>: CREATE TABLE table_23284271_8 (date VARCHAR, record VARCHAR)
SELECT date FROM table_23284271_8 WHERE record = "32-19"
20,433
<question>: List the stadium and number of people in attendance when the team record was 45-22. <context>: CREATE TABLE table_23284271_9 (location_attendance VARCHAR, record VARCHAR)
SELECT COUNT(location_attendance) FROM table_23284271_9 WHERE record = "45-22"
20,434
<question>: How many games had been played when the Mavericks had a 46-22 record? <context>: CREATE TABLE table_23284271_9 (game INTEGER, record VARCHAR)
SELECT MAX(game) FROM table_23284271_9 WHERE record = "46-22"
20,435
<question>: Name the date for score w 109–95 (ot) <context>: CREATE TABLE table_23285761_8 (date VARCHAR, score VARCHAR)
SELECT date FROM table_23285761_8 WHERE score = "W 109–95 (OT)"
20,436
<question>: Name the high points for pepsi center 19,155 <context>: CREATE TABLE table_23285761_8 (high_points VARCHAR, location_attendance VARCHAR)
SELECT high_points FROM table_23285761_8 WHERE location_attendance = "Pepsi Center 19,155"
20,437
<question>: If the record is 5-8, what is the team name? <context>: CREATE TABLE table_23285805_4 (team VARCHAR, record VARCHAR)
SELECT team FROM table_23285805_4 WHERE record = "5-8"
20,438
<question>: If the record is 5-5, what is the game maximum? <context>: CREATE TABLE table_23285805_4 (game INTEGER, record VARCHAR)
SELECT MAX(game) FROM table_23285805_4 WHERE record = "5-5"
20,439
<question>: If the record is 6-8, what was the score? <context>: CREATE TABLE table_23285805_4 (score VARCHAR, record VARCHAR)
SELECT score FROM table_23285805_4 WHERE record = "6-8"
20,440
<question>: When was the game number 3 played? <context>: CREATE TABLE table_23286112_6 (date VARCHAR, game VARCHAR)
SELECT date FROM table_23286112_6 WHERE game = 3
20,441
<question>: Where was the game in which Kevin Durant (25) did the most high points played? <context>: CREATE TABLE table_23286112_6 (location_attendance VARCHAR, high_points VARCHAR)
SELECT location_attendance FROM table_23286112_6 WHERE high_points = "Kevin Durant (25)"
20,442
<question>: What was the record in the game in which Jeff Green (14) did the most high rebounds? <context>: CREATE TABLE table_23286112_6 (record VARCHAR, high_rebounds VARCHAR)
SELECT record FROM table_23286112_6 WHERE high_rebounds = "Jeff Green (14)"
20,443
<question>: Name the team for january 4 <context>: CREATE TABLE table_23286112_8 (team VARCHAR, date VARCHAR)
SELECT team FROM table_23286112_8 WHERE date = "January 4"
20,444
<question>: Name the location attendance for january 18 <context>: CREATE TABLE table_23286112_8 (location_attendance VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_23286112_8 WHERE date = "January 18"
20,445
<question>: Name the least game for january 29 <context>: CREATE TABLE table_23286112_8 (game INTEGER, date VARCHAR)
SELECT MIN(game) FROM table_23286112_8 WHERE date = "January 29"
20,446
<question>: What location attendance has russell westbrook (5) as high assists and nenad krstic (8) as high rebounds? <context>: CREATE TABLE table_23286112_7 (location_attendance VARCHAR, high_assists VARCHAR, high_rebounds VARCHAR)
SELECT location_attendance FROM table_23286112_7 WHERE high_assists = "Russell Westbrook (5)" AND high_rebounds = "Nenad Krstic (8)"
20,447
<question>: Who has high points when toyota center 15,095 is location attendance? <context>: CREATE TABLE table_23286112_7 (high_points VARCHAR, location_attendance VARCHAR)
SELECT high_points FROM table_23286112_7 WHERE location_attendance = "Toyota Center 15,095"
20,448
<question>: Who has high points when verizon center 17,152 is location attendance? <context>: CREATE TABLE table_23286112_7 (high_points VARCHAR, location_attendance VARCHAR)
SELECT high_points FROM table_23286112_7 WHERE location_attendance = "Verizon Center 17,152"
20,449
<question>: What is the score for the date of December 7? <context>: CREATE TABLE table_23286112_7 (score VARCHAR, date VARCHAR)
SELECT score FROM table_23286112_7 WHERE date = "December 7"
20,450
<question>: What's the number of the game in which Carlos Boozer (8) did the high rebounds? <context>: CREATE TABLE table_23286223_5 (game VARCHAR, high_rebounds VARCHAR)
SELECT game FROM table_23286223_5 WHERE high_rebounds = "Carlos Boozer (8)"
20,451
<question>: When was the game in which Deron Williams (13) did the high assists played? <context>: CREATE TABLE table_23286223_5 (date VARCHAR, high_assists VARCHAR)
SELECT date FROM table_23286223_5 WHERE high_assists = "Deron Williams (13)"
20,452
<question>: How many different high rebound results are there for the game number 26? <context>: CREATE TABLE table_23286223_5 (high_rebounds VARCHAR, game VARCHAR)
SELECT COUNT(high_rebounds) FROM table_23286223_5 WHERE game = 26
20,453
<question>: How many different players did the most high assists on the March 4 game? <context>: CREATE TABLE table_23286223_8 (high_assists VARCHAR, date VARCHAR)
SELECT COUNT(high_assists) FROM table_23286223_8 WHERE date = "March 4"
20,454
<question>: What was the record at the game where Deron Williams (6) did the high assists? <context>: CREATE TABLE table_23286223_8 (record VARCHAR, high_assists VARCHAR)
SELECT record FROM table_23286223_8 WHERE high_assists = "Deron Williams (6)"
20,455
<question>: Where was the March 24 game played? <context>: CREATE TABLE table_23286223_8 (location_attendance VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_23286223_8 WHERE date = "March 24"
20,456
<question>: How many players did the most high points in the game with 39-22 record? <context>: CREATE TABLE table_23286223_8 (high_points VARCHAR, record VARCHAR)
SELECT COUNT(high_points) FROM table_23286223_8 WHERE record = "39-22"
20,457
<question>: What is the broadcast date where Jason's team is Rhod Gilbert and Shappi Khorsandi? <context>: CREATE TABLE table_23292220_8 (first_broadcast VARCHAR, jasons_team VARCHAR)
SELECT first_broadcast FROM table_23292220_8 WHERE jasons_team = "Rhod Gilbert and Shappi Khorsandi"
20,458
<question>: In how many episodes did Sean's team include Jeremy Clarkson and James McQuillan? <context>: CREATE TABLE table_23292220_8 (episode VARCHAR, seans_team VARCHAR)
SELECT COUNT(episode) FROM table_23292220_8 WHERE seans_team = "Jeremy Clarkson and James McQuillan"
20,459
<question>: Who was on Jason's team for the 12 June 2009 episode? <context>: CREATE TABLE table_23292220_8 (jasons_team VARCHAR, first_broadcast VARCHAR)
SELECT jasons_team FROM table_23292220_8 WHERE first_broadcast = "12 June 2009"
20,460
<question>: Who was on Jason's team in the episode where Sean's team was Reginald D. Hunter and Kelly Osbourne? <context>: CREATE TABLE table_23292220_8 (jasons_team VARCHAR, seans_team VARCHAR)
SELECT jasons_team FROM table_23292220_8 WHERE seans_team = "Reginald D. Hunter and Kelly Osbourne"
20,461
<question>: what is the record where the locaiton is tampa, fl and the opponent is louisville? <context>: CREATE TABLE table_23346303_3 (record VARCHAR, location VARCHAR, opponent VARCHAR)
SELECT record FROM table_23346303_3 WHERE location = "Tampa, FL" AND opponent = "Louisville"
20,462
<question>: what is the number of opponents where the location is syracuse, ny? <context>: CREATE TABLE table_23346303_3 (opponent VARCHAR, location VARCHAR)
SELECT COUNT(opponent) FROM table_23346303_3 WHERE location = "Syracuse, NY"
20,463
<question>: what is the record where the opponent is central connecticut? <context>: CREATE TABLE table_23346303_3 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_23346303_3 WHERE opponent = "Central Connecticut"
20,464
<question>: If the channels is wxyzrstuvpq, what is the horizontal order? <context>: CREATE TABLE table_233830_1 (horizontal_order VARCHAR, channels VARCHAR)
SELECT horizontal_order FROM table_233830_1 WHERE channels = "WXYZRSTUVPQ"
20,465
<question>: If the height order is 1 and the soundfield type is mixed-order, what are all the channels? <context>: CREATE TABLE table_233830_1 (channels VARCHAR, soundfield_type VARCHAR, height_order VARCHAR)
SELECT channels FROM table_233830_1 WHERE soundfield_type = "mixed-order" AND height_order = 1
20,466
<question>: If the channels is wxyzuv, what is the number of channels? <context>: CREATE TABLE table_233830_1 (number_of_channels VARCHAR, channels VARCHAR)
SELECT number_of_channels FROM table_233830_1 WHERE channels = "WXYZUV"
20,467
<question>: What are the titles of the episodes which had 1.10 million U.S. viewers? <context>: CREATE TABLE table_23399481_4 (title VARCHAR, us_viewers__in_millions_ VARCHAR)
SELECT title FROM table_23399481_4 WHERE us_viewers__in_millions_ = "1.10"
20,468
<question>: What is the name of the episodes which had 1.22 million U.S. viewers? <context>: CREATE TABLE table_23399481_4 (title VARCHAR, us_viewers__in_millions_ VARCHAR)
SELECT title FROM table_23399481_4 WHERE us_viewers__in_millions_ = "1.22"
20,469
<question>: How many millions of viewers did the episode written by Andrea Conway Kagey? <context>: CREATE TABLE table_23399481_4 (us_viewers__in_millions_ VARCHAR, written_by VARCHAR)
SELECT us_viewers__in_millions_ FROM table_23399481_4 WHERE written_by = "Andrea Conway Kagey"
20,470
<question>: What is the title of the episode/s written by Michael Gans & Richard Register? <context>: CREATE TABLE table_23399481_4 (title VARCHAR, written_by VARCHAR)
SELECT title FROM table_23399481_4 WHERE written_by = "Michael Gans & Richard Register"
20,471
<question>: What is the total score when 7 is the average ranking? <context>: CREATE TABLE table_23465011_5 (total_score INTEGER, average_ranking VARCHAR)
SELECT MAX(total_score) FROM table_23465011_5 WHERE average_ranking = 7
20,472
<question>: Which couple has 295 as a total score? <context>: CREATE TABLE table_23465011_5 (couple VARCHAR, total_score VARCHAR)
SELECT couple FROM table_23465011_5 WHERE total_score = 295
20,473
<question>: What is the average for the couple anh & luda? <context>: CREATE TABLE table_23465011_5 (average VARCHAR, couple VARCHAR)
SELECT average FROM table_23465011_5 WHERE couple = "Anh & Luda"
20,474
<question>: What was the largest attended game? <context>: CREATE TABLE table_23486853_5 (attendance INTEGER)
SELECT MAX(attendance) FROM table_23486853_5
20,475
<question>: What scores happened on February 9? <context>: CREATE TABLE table_23486853_7 (score VARCHAR, date VARCHAR)
SELECT score FROM table_23486853_7 WHERE date = "February 9"
20,476
<question>: What scores happened on February 11? <context>: CREATE TABLE table_23486853_7 (score VARCHAR, date VARCHAR)
SELECT score FROM table_23486853_7 WHERE date = "February 11"
20,477
<question>: How many directed by have 2.80 as u.s. viewers (in millions)? <context>: CREATE TABLE table_23499946_1 (directed_by VARCHAR, us_viewers__in_millions_ VARCHAR)
SELECT COUNT(directed_by) FROM table_23499946_1 WHERE us_viewers__in_millions_ = "2.80"
20,478
<question>: What is the title when 2.50 is u.s. viewers (in millions)? <context>: CREATE TABLE table_23499946_1 (title VARCHAR, us_viewers__in_millions_ VARCHAR)
SELECT title FROM table_23499946_1 WHERE us_viewers__in_millions_ = "2.50"
20,479
<question>: Name the number of points defending for 1075 <context>: CREATE TABLE table_23501776_16 (points VARCHAR, new_points VARCHAR)
SELECT COUNT(points) AS defending FROM table_23501776_16 WHERE new_points = 1075
20,480
<question>: Name the points won for 1230 <context>: CREATE TABLE table_23501776_16 (points VARCHAR)
SELECT points AS won FROM table_23501776_16 WHERE points = 1230
20,481
<question>: Name the status for points 3185 <context>: CREATE TABLE table_23501776_16 (status VARCHAR, points VARCHAR)
SELECT status FROM table_23501776_16 WHERE points = 3185
20,482
<question>: What are the numbers for the order number 713096-713119? <context>: CREATE TABLE table_2351952_1 (numbers VARCHAR, order_number VARCHAR)
SELECT numbers FROM table_2351952_1 WHERE order_number = "713096-713119"
20,483
<question>: The numbers 801-812 are in which country? <context>: CREATE TABLE table_2351952_1 (country VARCHAR, numbers VARCHAR)
SELECT country FROM table_2351952_1 WHERE numbers = "801-812"
20,484
<question>: What country has the order number 711871-711880? <context>: CREATE TABLE table_2351952_1 (country VARCHAR, order_number VARCHAR)
SELECT country FROM table_2351952_1 WHERE order_number = "711871-711880"
20,485
<question>: The serial numbers 713096-713119 are in which country? <context>: CREATE TABLE table_2351952_1 (country VARCHAR, serial_numbers VARCHAR)
SELECT country FROM table_2351952_1 WHERE serial_numbers = "713096-713119"
20,486
<question>: The order number 713726-713735 has what serial number? <context>: CREATE TABLE table_2351952_1 (serial_numbers VARCHAR, order_number VARCHAR)
SELECT serial_numbers FROM table_2351952_1 WHERE order_number = "713726-713735"
20,487
<question>: How many railroads have the numbers 864-873? <context>: CREATE TABLE table_2351952_1 (railroad VARCHAR, numbers VARCHAR)
SELECT COUNT(railroad) FROM table_2351952_1 WHERE numbers = "864-873"
20,488
<question>: What's the name of Linroy Bottoson's victim? <context>: CREATE TABLE table_23546266_1 (victim_s_ VARCHAR, executed_person VARCHAR)
SELECT victim_s_ FROM table_23546266_1 WHERE executed_person = "Linroy Bottoson"
20,489
<question>: What was the name of the couple if the number of dances is 6? <context>: CREATE TABLE table_23662272_4 (couple VARCHAR, number_of_dances VARCHAR)
SELECT couple FROM table_23662272_4 WHERE number_of_dances = 6
20,490
<question>: What is the name of the couple if the total points earned is 161? <context>: CREATE TABLE table_23662272_4 (couple VARCHAR, total_points_earned VARCHAR)
SELECT couple FROM table_23662272_4 WHERE total_points_earned = 161
20,491
<question>: What is the total points earned total number if the average is 21.3? <context>: CREATE TABLE table_23662272_4 (total_points_earned VARCHAR, average VARCHAR)
SELECT COUNT(total_points_earned) FROM table_23662272_4 WHERE average = "21.3"
20,492
<question>: What is the number of dances total number if the average is 22.3? <context>: CREATE TABLE table_23662272_4 (number_of_dances VARCHAR, average VARCHAR)
SELECT COUNT(number_of_dances) FROM table_23662272_4 WHERE average = "22.3"
20,493
<question>: Name the player that is 1.85 m <context>: CREATE TABLE table_23670057_6 (player VARCHAR, height__m_ VARCHAR)
SELECT player FROM table_23670057_6 WHERE height__m_ = "1.85"
20,494
<question>: Name the height of demond greene <context>: CREATE TABLE table_23670057_6 (height__f_ VARCHAR, player VARCHAR)
SELECT height__f_ FROM table_23670057_6 WHERE player = "Demond Greene"
20,495
<question>: Name the height for the player born 1989 and height 2.11 <context>: CREATE TABLE table_23670057_6 (height__f_ VARCHAR, year_born VARCHAR, height__m_ VARCHAR)
SELECT height__f_ FROM table_23670057_6 WHERE year_born = 1989 AND height__m_ = "2.11"
20,496
<question>: Name the height for the player born in 1981 <context>: CREATE TABLE table_23670057_6 (height__m_ VARCHAR, year_born VARCHAR)
SELECT height__m_ FROM table_23670057_6 WHERE year_born = 1981
20,497
<question>: Name the height for steffen hamann <context>: CREATE TABLE table_23670057_6 (height__f_ VARCHAR, player VARCHAR)
SELECT height__f_ FROM table_23670057_6 WHERE player = "Steffen Hamann"
20,498
<question>: Who wrote the episode whose director is Karen Gaviola? <context>: CREATE TABLE table_23799653_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT written_by FROM table_23799653_1 WHERE directed_by = "Karen Gaviola"
20,499
<question>: When did the episode viewed by 10.50 millions of people in the US run for the first time? <context>: CREATE TABLE table_23799653_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)
SELECT original_air_date FROM table_23799653_1 WHERE us_viewers__millions_ = "10.50"