Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
20,000
<question>: What is the dates where Hillcrest Reserve is the home grounds? <context>: CREATE TABLE table_18752986_1 (first_season VARCHAR, home_ground_s_ VARCHAR)
SELECT first_season FROM table_18752986_1 WHERE home_ground_s_ = "Hillcrest Reserve"
20,001
<question>: For location Caversham, what is the name of the captain? <context>: CREATE TABLE table_18752986_1 (captain VARCHAR, location VARCHAR)
SELECT captain FROM table_18752986_1 WHERE location = "Caversham"
20,002
<question>: With the nickname the swans, what is the home ground? <context>: CREATE TABLE table_18752986_1 (home_ground_s_ VARCHAR, nickname VARCHAR)
SELECT home_ground_s_ FROM table_18752986_1 WHERE nickname = "Swans"
20,003
<question>: What is the record when the opponent is washington redskins? <context>: CREATE TABLE table_18847692_2 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_18847692_2 WHERE opponent = "Washington Redskins"
20,004
<question>: What is the minimum number of opponents? <context>: CREATE TABLE table_18847692_2 (opponents INTEGER)
SELECT MIN(opponents) FROM table_18847692_2
20,005
<question>: when area (km²) is 1605.35, how many provinces are there? <context>: CREATE TABLE table_1888051_1 (province VARCHAR, area__km²_ VARCHAR)
SELECT COUNT(province) FROM table_1888051_1 WHERE area__km²_ = "1605.35"
20,006
<question>: when province is monseñor nouel, what is the area (km²)? <context>: CREATE TABLE table_1888051_1 (area__km²_ VARCHAR, province VARCHAR)
SELECT area__km²_ FROM table_1888051_1 WHERE province = "Monseñor Nouel"
20,007
<question>: How many capitals are there when area (km²) is 1111.14? <context>: CREATE TABLE table_1888051_1 (capital VARCHAR, area__km²_ VARCHAR)
SELECT COUNT(capital) FROM table_1888051_1 WHERE area__km²_ = "1111.14"
20,008
<question>: Nagua has the area (km²) of? <context>: CREATE TABLE table_1888051_1 (area__km²_ VARCHAR, capital VARCHAR)
SELECT area__km²_ FROM table_1888051_1 WHERE capital = "Nagua"
20,009
<question>: During what period were parliament 11th? <context>: CREATE TABLE table_1889233_2 (period_in_office VARCHAR, parliament VARCHAR)
SELECT period_in_office FROM table_1889233_2 WHERE parliament = "11th"
20,010
<question>: what parliament's name is lina loh woon lee? <context>: CREATE TABLE table_1889233_2 (parliament VARCHAR, name VARCHAR)
SELECT parliament FROM table_1889233_2 WHERE name = "Lina Loh Woon Lee"
20,011
<question>: What number parliament held it's election in 1997? <context>: CREATE TABLE table_1889233_2 (parliament VARCHAR, general_election_contested VARCHAR)
SELECT parliament FROM table_1889233_2 WHERE general_election_contested = 1997
20,012
<question>: What period were conscituency contested is aljunied grc? <context>: CREATE TABLE table_1889233_2 (period_in_office VARCHAR, constituency_contested VARCHAR)
SELECT period_in_office FROM table_1889233_2 WHERE constituency_contested = "Aljunied GRC"
20,013
<question>: Which parliament is sylvia lim swee lian? <context>: CREATE TABLE table_1889233_2 (parliament VARCHAR, name VARCHAR)
SELECT parliament FROM table_1889233_2 WHERE name = "Sylvia Lim Swee Lian"
20,014
<question>: When jim is eliminated what is the finish? <context>: CREATE TABLE table_1893276_2 (finish VARCHAR, eliminated VARCHAR)
SELECT finish FROM table_1893276_2 WHERE eliminated = "Jim"
20,015
<question>: How many rewards are there for air date October 6, 2005? <context>: CREATE TABLE table_1893276_2 (reward VARCHAR, air_date VARCHAR)
SELECT reward FROM table_1893276_2 WHERE air_date = "October 6, 2005"
20,016
<question>: What was eliminated on the air date of November 3, 2005? <context>: CREATE TABLE table_1893276_2 (eliminated VARCHAR, air_date VARCHAR)
SELECT eliminated FROM table_1893276_2 WHERE air_date = "November 3, 2005"
20,017
<question>: How many air dates were there when Morgan was eliminated? <context>: CREATE TABLE table_1893276_2 (air_date VARCHAR, eliminated VARCHAR)
SELECT COUNT(air_date) FROM table_1893276_2 WHERE eliminated = "Morgan"
20,018
<question>: When same target; linebacker ii offensive is the same target what is the unit? <context>: CREATE TABLE table_18933037_3 (unit VARCHAR, mission_target VARCHAR)
SELECT unit FROM table_18933037_3 WHERE mission_target = "Same target; Linebacker II Offensive"
20,019
<question>: When hit by sam at 38,500 feet just after bomb release was the cause of loss what is the mission/target? <context>: CREATE TABLE table_18933037_3 (mission_target VARCHAR, cause_of_loss VARCHAR)
SELECT mission_target FROM table_18933037_3 WHERE cause_of_loss = "Hit by SAM at 38,500 feet just after bomb release"
20,020
<question>: When 7th bw attached to 43rd sw is the unit what is the b-52 model? <context>: CREATE TABLE table_18933037_3 (b_52_model VARCHAR, unit VARCHAR)
SELECT b_52_model FROM table_18933037_3 WHERE unit = "7th BW attached to 43rd SW"
20,021
<question>: When 441st bs, 7th bw is the unit what is the b-52 model? <context>: CREATE TABLE table_18933037_3 (b_52_model VARCHAR, unit VARCHAR)
SELECT b_52_model FROM table_18933037_3 WHERE unit = "441st BS, 7th BW"
20,022
<question>: When 27 gp h-e bombs the capacity of the bomb what is the cause of loss? <context>: CREATE TABLE table_18933037_3 (cause_of_loss VARCHAR, bomb_capacity VARCHAR)
SELECT cause_of_loss FROM table_18933037_3 WHERE bomb_capacity = "27 GP H-E bombs"
20,023
<question>: Name the least clubs involved for leagues being none for semi finals <context>: CREATE TABLE table_19089486_1 (clubs_involved INTEGER, leagues_entering_this_round VARCHAR, round VARCHAR)
SELECT MIN(clubs_involved) FROM table_19089486_1 WHERE leagues_entering_this_round = "none" AND round = "Semi finals"
20,024
<question>: Name the new entries this round for third round <context>: CREATE TABLE table_19089486_1 (new_entries_this_round VARCHAR, round VARCHAR)
SELECT new_entries_this_round FROM table_19089486_1 WHERE round = "Third round"
20,025
<question>: Name the leagues entering this round for 4 <context>: CREATE TABLE table_19089486_1 (leagues_entering_this_round VARCHAR, clubs_involved VARCHAR)
SELECT leagues_entering_this_round FROM table_19089486_1 WHERE clubs_involved = 4
20,026
<question>: Name the least clubs remaining <context>: CREATE TABLE table_19089486_1 (clubs_remaining INTEGER)
SELECT MIN(clubs_remaining) FROM table_19089486_1
20,027
<question>: When conjunction junction is the episode title and the music is by bob dorough who is the performer? <context>: CREATE TABLE table_191105_2 (performed_by VARCHAR, music_by VARCHAR, episode_title VARCHAR)
SELECT performed_by FROM table_191105_2 WHERE music_by = "Bob Dorough" AND episode_title = "Conjunction Junction"
20,028
<question>: When interjection is the subject how many performers are there? <context>: CREATE TABLE table_191105_2 (performed_by VARCHAR, subject VARCHAR)
SELECT COUNT(performed_by) FROM table_191105_2 WHERE subject = "interjection"
20,029
<question>: When pronoun is the subject what is the episode title? <context>: CREATE TABLE table_191105_2 (episode_title VARCHAR, subject VARCHAR)
SELECT episode_title FROM table_191105_2 WHERE subject = "pronoun"
20,030
<question>: When interjection is the subject who are the lyrics by? <context>: CREATE TABLE table_191105_2 (lyrics_by VARCHAR, subject VARCHAR)
SELECT lyrics_by FROM table_191105_2 WHERE subject = "interjection"
20,031
<question>: When zachary sanders is the performer how many first aired are there? <context>: CREATE TABLE table_191105_2 (first_aired VARCHAR, performed_by VARCHAR)
SELECT COUNT(first_aired) FROM table_191105_2 WHERE performed_by = "Zachary Sanders"
20,032
<question>: When zachary sanders is the performer how many people is the music by? <context>: CREATE TABLE table_191105_2 (music_by VARCHAR, performed_by VARCHAR)
SELECT COUNT(music_by) FROM table_191105_2 WHERE performed_by = "Zachary Sanders"
20,033
<question>: Name the world rank for market value 17.2 <context>: CREATE TABLE table_19112_3 (world_rank VARCHAR, market_value__billion_$_ VARCHAR)
SELECT world_rank FROM table_19112_3 WHERE market_value__billion_$_ = "17.2"
20,034
<question>: Name the market value for rhb capital <context>: CREATE TABLE table_19112_3 (market_value__billion_$_ VARCHAR, company VARCHAR)
SELECT market_value__billion_$_ FROM table_19112_3 WHERE company = "RHB Capital"
20,035
<question>: Name the profits for market value of 11.8 <context>: CREATE TABLE table_19112_3 (profits__billion_$_ VARCHAR, market_value__billion_$_ VARCHAR)
SELECT profits__billion_$_ FROM table_19112_3 WHERE market_value__billion_$_ = "11.8"
20,036
<question>: Name the industry for revenue being 2.1 <context>: CREATE TABLE table_19112_3 (industry VARCHAR, revenue__billion_$_ VARCHAR)
SELECT industry FROM table_19112_3 WHERE revenue__billion_$_ = "2.1"
20,037
<question>: Name the total number of industry for maxis <context>: CREATE TABLE table_19112_3 (industry VARCHAR, company VARCHAR)
SELECT COUNT(industry) FROM table_19112_3 WHERE company = "Maxis"
20,038
<question>: how many games with high rebounds where in february 26 <context>: CREATE TABLE table_19169116_6 (high_rebounds VARCHAR, date VARCHAR)
SELECT COUNT(high_rebounds) FROM table_19169116_6 WHERE date = "February 26"
20,039
<question>: which institutes gave the democratic renewal 18.0% – 22.0% on a poll from October 6, 1985? <context>: CREATE TABLE table_1919538_1 (institute VARCHAR, democratic_renewal VARCHAR)
SELECT institute FROM table_1919538_1 WHERE democratic_renewal = "18.0% – 22.0%"
20,040
<question>: Name the number of seats to be won being % of popular vote at 6.88% <context>: CREATE TABLE table_19283982_4 (_number_of_seats_to_be_won VARCHAR, _percentage_of_popular_vote VARCHAR)
SELECT _number_of_seats_to_be_won FROM table_19283982_4 WHERE _percentage_of_popular_vote = "6.88%"
20,041
<question>: Name the number of total votes for # of seats won being 30 <context>: CREATE TABLE table_19283982_4 (_number_of_total_votes VARCHAR, _number_of_seats_won VARCHAR)
SELECT _number_of_total_votes FROM table_19283982_4 WHERE _number_of_seats_won = 30
20,042
<question>: Name the number of candidates for # of seats won being 43 <context>: CREATE TABLE table_19283982_4 (_number_of_candidates VARCHAR, _number_of_seats_won VARCHAR)
SELECT _number_of_candidates FROM table_19283982_4 WHERE _number_of_seats_won = 43
20,043
<question>: Name the number of leaders for % of popular vote being 11.05% <context>: CREATE TABLE table_19283982_4 (leader VARCHAR, _percentage_of_popular_vote VARCHAR)
SELECT COUNT(leader) FROM table_19283982_4 WHERE _percentage_of_popular_vote = "11.05%"
20,044
<question>: What is the location that has the 12th district? <context>: CREATE TABLE table_19283806_4 (location VARCHAR, district VARCHAR)
SELECT location FROM table_19283806_4 WHERE district = "12th"
20,045
<question>: How many election results in 2012 had a Cook PVI of D+16? <context>: CREATE TABLE table_19283806_4 (cook_pvi VARCHAR)
SELECT COUNT(2012 AS _election_results) FROM table_19283806_4 WHERE cook_pvi = "D+16"
20,046
<question>: What is the Cook PVI for the location that has a representative of Mike Thompson? <context>: CREATE TABLE table_19283806_4 (cook_pvi VARCHAR, representative VARCHAR)
SELECT cook_pvi FROM table_19283806_4 WHERE representative = "Mike Thompson"
20,047
<question>: How many locations have a median household income in 2011 of $71,479? <context>: CREATE TABLE table_19283806_4 (location VARCHAR, median_household_income__2011_ VARCHAR)
SELECT COUNT(location) FROM table_19283806_4 WHERE median_household_income__2011_ = "$71,479"
20,048
<question>: What is the 2012 election results for locations whose representative is Barbara Lee? <context>: CREATE TABLE table_19283806_4 (representative VARCHAR)
SELECT 2012 AS _election_results FROM table_19283806_4 WHERE representative = "Barbara Lee"
20,049
<question>: What is the latest season number for a show with a production code of 816? <context>: CREATE TABLE table_19422702_1 (no_in_season INTEGER, production_code VARCHAR)
SELECT MAX(no_in_season) FROM table_19422702_1 WHERE production_code = 816
20,050
<question>: How many U.S. air dates were from an episode in Season 4? <context>: CREATE TABLE table_19422702_1 (us_airdate VARCHAR, no_in_season VARCHAR)
SELECT COUNT(us_airdate) FROM table_19422702_1 WHERE no_in_season = 4
20,051
<question>: How many different C_{high} values are there for the good category? <context>: CREATE TABLE table_1942366_9 (high VARCHAR, category VARCHAR)
SELECT STRUCT(high) FROM table_1942366_9 WHERE category = "Good"
20,052
<question>: What's the C_{high} when the C_{low} value is 250.5? <context>: CREATE TABLE table_1942366_9 (high VARCHAR, low VARCHAR)
SELECT STRUCT(high) FROM table_1942366_9 WHERE STRUCT(low) = "250.5"
20,053
<question>: What's the C_{low} value when C_{high} is 12.0? <context>: CREATE TABLE table_1942366_9 (low VARCHAR, high VARCHAR)
SELECT STRUCT(low) FROM table_1942366_9 WHERE STRUCT(high) = "12.0"
20,054
<question>: In how many different categories is the value of C_{low} 35.5? <context>: CREATE TABLE table_1942366_9 (category VARCHAR, low VARCHAR)
SELECT COUNT(category) FROM table_1942366_9 WHERE STRUCT(low) = "35.5"
20,055
<question>: How many members were in the group that sold 65 million albums and singles? <context>: CREATE TABLE table_19439814_1 (members VARCHAR, sold__albums_and_singles_ VARCHAR)
SELECT members FROM table_19439814_1 WHERE sold__albums_and_singles_ = "65 million"
20,056
<question>: What group had 29 studio albums? <context>: CREATE TABLE table_19439814_1 (girl_group VARCHAR, studio_albums VARCHAR)
SELECT girl_group FROM table_19439814_1 WHERE studio_albums = 29
20,057
<question>: When bergen is 88, what is the alesund? <context>: CREATE TABLE table_19439864_2 (ålesund INTEGER, bergen VARCHAR)
SELECT MIN(ålesund) FROM table_19439864_2 WHERE bergen = 88
20,058
<question>: How many elverum are tehre for et sted i scandinavia? <context>: CREATE TABLE table_19439864_2 (elverum VARCHAR, song VARCHAR)
SELECT COUNT(elverum) FROM table_19439864_2 WHERE song = "Et sted i Scandinavia"
20,059
<question>: What was the total for radio luxembourg? <context>: CREATE TABLE table_19439864_2 (total VARCHAR, song VARCHAR)
SELECT total FROM table_19439864_2 WHERE song = "Radio Luxembourg"
20,060
<question>: When oslo is 48, what is stavanger? <context>: CREATE TABLE table_19439864_2 (stavanger INTEGER, oslo VARCHAR)
SELECT MIN(stavanger) FROM table_19439864_2 WHERE oslo = 48
20,061
<question>: What is the lowest total? <context>: CREATE TABLE table_19439864_2 (total INTEGER)
SELECT MIN(total) FROM table_19439864_2
20,062
<question>: When the total score is 740, what is tromso? <context>: CREATE TABLE table_19439864_2 (tromsø INTEGER, total VARCHAR)
SELECT MIN(tromsø) FROM table_19439864_2 WHERE total = 740
20,063
<question>: Who played in group 8 when Persinab Nabire played in Group 12? <context>: CREATE TABLE table_19523142_5 (group_8 VARCHAR, group_12 VARCHAR)
SELECT group_8 FROM table_19523142_5 WHERE group_12 = "Persinab Nabire"
20,064
<question>: Who played in group 11 when Persipal Palu played in group 12? <context>: CREATE TABLE table_19523142_5 (group_11 VARCHAR, group_12 VARCHAR)
SELECT group_11 FROM table_19523142_5 WHERE group_12 = "Persipal Palu"
20,065
<question>: Who played in group 12 when persikutim east kutai played in group 10? <context>: CREATE TABLE table_19523142_5 (group_12 VARCHAR, group_10 VARCHAR)
SELECT group_12 FROM table_19523142_5 WHERE group_10 = "Persikutim East Kutai"
20,066
<question>: When persikos sorong city played in group 11, who played in group 7? <context>: CREATE TABLE table_19523142_5 (group_7 VARCHAR, group_11 VARCHAR)
SELECT group_7 FROM table_19523142_5 WHERE group_11 = "Persikos Sorong City"
20,067
<question>: Nusa Ina only played once while group 7 played. <context>: CREATE TABLE table_19523142_5 (group_7 VARCHAR, group_12 VARCHAR)
SELECT COUNT(group_7) FROM table_19523142_5 WHERE group_12 = "Nusa Ina"
20,068
<question>: Who played in group 12 when Group 9 played psid jombang? <context>: CREATE TABLE table_19523142_5 (group_12 VARCHAR, group_9 VARCHAR)
SELECT group_12 FROM table_19523142_5 WHERE group_9 = "PSID Jombang"
20,069
<question>: What is the longest number of weeks any 1 song was at number #1? <context>: CREATE TABLE table_19542477_9 (whole_weeks INTEGER)
SELECT MAX(whole_weeks) FROM table_19542477_9
20,070
<question>: What is the title of every song, and how many weeks was each song at #1 for One Direction? <context>: CREATE TABLE table_19542477_9 (song_s__—_weeks VARCHAR, artist_s_ VARCHAR)
SELECT song_s__—_weeks FROM table_19542477_9 WHERE artist_s_ = "One Direction"
20,071
<question>: What is the title of every song, and how many weeks was each song at #1 for Rihanna in 2012? <context>: CREATE TABLE table_19542477_9 (song_s__—_weeks VARCHAR, issue_years VARCHAR, artist_s_ VARCHAR)
SELECT song_s__—_weeks FROM table_19542477_9 WHERE issue_years = 2012 AND artist_s_ = "Rihanna"
20,072
<question>: What NHL team was the player from Calgary Centennials (WCHL) drafted for? <context>: CREATE TABLE table_1965650_11 (nhl_team VARCHAR, college_junior_club_team VARCHAR)
SELECT nhl_team FROM table_1965650_11 WHERE college_junior_club_team = "Calgary Centennials (WCHL)"
20,073
<question>: Who came from the University of Michigan (NCAA) team? <context>: CREATE TABLE table_1965650_11 (player VARCHAR, college_junior_club_team VARCHAR)
SELECT player FROM table_1965650_11 WHERE college_junior_club_team = "University of Michigan (NCAA)"
20,074
<question>: How many players have the pick number 166? <context>: CREATE TABLE table_1965650_11 (player VARCHAR, pick__number VARCHAR)
SELECT COUNT(player) FROM table_1965650_11 WHERE pick__number = 166
20,075
<question>: What is the nationality of the player from the University of Michigan (NCAA)? <context>: CREATE TABLE table_1965650_11 (nationality VARCHAR, college_junior_club_team VARCHAR)
SELECT nationality FROM table_1965650_11 WHERE college_junior_club_team = "University of Michigan (NCAA)"
20,076
<question>: What team did Russ Wiechnik, on the centre position, come from? <context>: CREATE TABLE table_1965650_11 (college_junior_club_team VARCHAR, position VARCHAR, player VARCHAR)
SELECT college_junior_club_team FROM table_1965650_11 WHERE position = "Centre" AND player = "Russ Wiechnik"
20,077
<question>: What place would you be in if your rank by average is less than 2.0? <context>: CREATE TABLE table_19744915_14 (place VARCHAR, rank_by_average INTEGER)
SELECT place FROM table_19744915_14 WHERE rank_by_average < 2.0
20,078
<question>: What is the couples name where the average is 15.9? <context>: CREATE TABLE table_19744915_14 (couple VARCHAR, average VARCHAR)
SELECT couple FROM table_19744915_14 WHERE average = "15.9"
20,079
<question>: If the total points is 50.5, what is the total number of dances? <context>: CREATE TABLE table_19744915_14 (number_of_dances VARCHAR, total_points VARCHAR)
SELECT COUNT(number_of_dances) FROM table_19744915_14 WHERE total_points = "50.5"
20,080
<question>: If your rank by average is 9, what is the name of the couple? <context>: CREATE TABLE table_19744915_14 (couple VARCHAR, rank_by_average VARCHAR)
SELECT couple FROM table_19744915_14 WHERE rank_by_average = 9
20,081
<question>: Name the number of party for richard l. hanna (r) 53.1% mike arcuri (d) 46.9% <context>: CREATE TABLE table_19753079_35 (party VARCHAR, candidates VARCHAR)
SELECT COUNT(party) FROM table_19753079_35 WHERE candidates = "Richard L. Hanna (R) 53.1% Mike Arcuri (D) 46.9%"
20,082
<question>: Name the party for new york 4 <context>: CREATE TABLE table_19753079_35 (party VARCHAR, district VARCHAR)
SELECT party FROM table_19753079_35 WHERE district = "New York 4"
20,083
<question>: Name the first elected for re-elected and brian higgins <context>: CREATE TABLE table_19753079_35 (first_elected VARCHAR, result VARCHAR, incumbent VARCHAR)
SELECT first_elected FROM table_19753079_35 WHERE result = "Re-elected" AND incumbent = "Brian Higgins"
20,084
<question>: Name the party for yvette clarke (d) 90.6% hugh carr (r) 9.4% <context>: CREATE TABLE table_19753079_35 (party VARCHAR, candidates VARCHAR)
SELECT party FROM table_19753079_35 WHERE candidates = "Yvette Clarke (D) 90.6% Hugh Carr (R) 9.4%"
20,085
<question>: Name the result for new york 8 <context>: CREATE TABLE table_19753079_35 (result VARCHAR, district VARCHAR)
SELECT result FROM table_19753079_35 WHERE district = "New York 8"
20,086
<question>: Name the incumbent for lost renomination republican hold <context>: CREATE TABLE table_19753079_4 (incumbent VARCHAR, result VARCHAR)
SELECT incumbent FROM table_19753079_4 WHERE result = "Lost renomination Republican hold"
20,087
<question>: Name the result for first elected being 1992 <context>: CREATE TABLE table_19753079_4 (result VARCHAR, first_elected VARCHAR)
SELECT result FROM table_19753079_4 WHERE first_elected = 1992
20,088
<question>: Name the incumbent for alabama 6 <context>: CREATE TABLE table_19753079_4 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_19753079_4 WHERE district = "Alabama 6"
20,089
<question>: Name the number of song for julia bermejo <context>: CREATE TABLE table_19763199_5 (song VARCHAR, artist VARCHAR)
SELECT COUNT(song) FROM table_19763199_5 WHERE artist = "Julia Bermejo"
20,090
<question>: Name the number of song for solydo <context>: CREATE TABLE table_19763199_5 (song VARCHAR, artist VARCHAR)
SELECT COUNT(song) FROM table_19763199_5 WHERE artist = "Solydo"
20,091
<question>: What tournament is in katowice? <context>: CREATE TABLE table_19765685_2 (tournament VARCHAR, city VARCHAR)
SELECT tournament FROM table_19765685_2 WHERE city = "Katowice"
20,092
<question>: How many tournaments are also currently known as the hp open? <context>: CREATE TABLE table_19765685_2 (country VARCHAR, also_currently_known_as VARCHAR)
SELECT COUNT(country) FROM table_19765685_2 WHERE also_currently_known_as = "HP Open"
20,093
<question>: How many defending champs from thailand? <context>: CREATE TABLE table_19765685_2 (defending_champion VARCHAR, country VARCHAR)
SELECT COUNT(defending_champion) FROM table_19765685_2 WHERE country = "Thailand"
20,094
<question>: Name the opponent for june 12 <context>: CREATE TABLE table_19789597_5 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_19789597_5 WHERE date = "June 12"
20,095
<question>: Name the total number of date for l 63-77 <context>: CREATE TABLE table_19789597_5 (date VARCHAR, score VARCHAR)
SELECT COUNT(date) FROM table_19789597_5 WHERE score = "L 63-77"
20,096
<question>: Name the most number for viewers being 6.95 <context>: CREATE TABLE table_19834691_4 (_number INTEGER, viewers__millions_ VARCHAR)
SELECT MAX(_number) FROM table_19834691_4 WHERE viewers__millions_ = "6.95"
20,097
<question>: Name the total number of viewers for audience share in timeslot for 10.2% <context>: CREATE TABLE table_19834691_4 (viewers__millions_ VARCHAR, audience_share_in_timeslot VARCHAR)
SELECT COUNT(viewers__millions_) FROM table_19834691_4 WHERE audience_share_in_timeslot = "10.2%"
20,098
<question>: Name the timeslot for 6.51 viewers <context>: CREATE TABLE table_19834691_4 (timeslot VARCHAR, viewers__millions_ VARCHAR)
SELECT timeslot FROM table_19834691_4 WHERE viewers__millions_ = "6.51"
20,099
<question>: Name the uk air date for audience share in timeslot in 7.3% <context>: CREATE TABLE table_19834691_4 (uk_air_date VARCHAR, audience_share_in_timeslot VARCHAR)
SELECT uk_air_date FROM table_19834691_4 WHERE audience_share_in_timeslot = "7.3%"