answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT COUNT(vocalist) FROM table_2144389_8 WHERE japanese_translation = "Which One ~ Is It?"
Name the number of vocalists for which one ~ is it?
CREATE TABLE table_2144389_8 (vocalist VARCHAR, japanese_translation VARCHAR)
SELECT value___usd__ FROM table_name_70 WHERE date = "unknown" AND business = "energy" AND country = "new zealand"
In New Zealand, what's the value that has an unknown date and is an energy business?
CREATE TABLE table_name_70 (value___usd__ VARCHAR, country VARCHAR, date VARCHAR, business VARCHAR)
SELECT COUNT(director) FROM table_24781886_3 WHERE viewers = "7.08"
When 7.08 is the amount of viewers how many directors are there?
CREATE TABLE table_24781886_3 (director VARCHAR, viewers VARCHAR)
SELECT offer_team FROM table_name_24 WHERE date = "july 29, 1994"
What Offer Team has a date of July 29, 1994?
CREATE TABLE table_name_24 (offer_team VARCHAR, date VARCHAR)
SELECT score FROM table_name_73 WHERE date = "15 june 1992"
On the Date of 15 June 1992 what is the Score that is listed?
CREATE TABLE table_name_73 (score VARCHAR, date VARCHAR)
SELECT SUM(goals_against) FROM table_name_41 WHERE goals_for > 52 AND losses < 10
How many goals against total did the team with more than 52 goals and fewer than 10 losses have?
CREATE TABLE table_name_41 (goals_against INTEGER, goals_for VARCHAR, losses VARCHAR)
SELECT candidates FROM table_1342233_11 WHERE incumbent = "Carl Vinson"
Which district is associated with the incumbent Carl Vinson?
CREATE TABLE table_1342233_11 (candidates VARCHAR, incumbent VARCHAR)
SELECT episode FROM table_name_45 WHERE air_date = "july 23, 2009" AND viewers > 3.31
What is the episode name that aired on July 23, 2009 with more than 3.31 viewers?
CREATE TABLE table_name_45 (episode VARCHAR, air_date VARCHAR, viewers VARCHAR)
SELECT hometown_school FROM table_name_18 WHERE team = "san diego padres" AND player = "bob geren"
What was the home town of Bob Geren, picked by the San Diego Padres?
CREATE TABLE table_name_18 (hometown_school VARCHAR, team VARCHAR, player VARCHAR)
SELECT home_team AS score FROM table_name_56 WHERE venue = "lake oval"
When the venue was lake oval what did the home team score?
CREATE TABLE table_name_56 (home_team VARCHAR, venue VARCHAR)
SELECT nickname FROM table_name_40 WHERE name = "university cricket club"
What's the Nickname listed for the Name of University Cricket Club?
CREATE TABLE table_name_40 (nickname VARCHAR, name VARCHAR)
SELECT solvent FROM table_name_55 WHERE boiling_point = "100–103 °c"
What solvent has a boiling point of 100–103 °c?
CREATE TABLE table_name_55 (solvent VARCHAR, boiling_point VARCHAR)
SELECT result FROM table_name_51 WHERE week = 10
what was the result in week 10?
CREATE TABLE table_name_51 (result VARCHAR, week VARCHAR)
SELECT notation FROM table_101336_1 WHERE crystal_structure = "Tetragonal" AND formula = "Bi 2 Sr 2 CaCu 2 O 8"
What is the notion when the crystal structure is tetragonal and the formula is bi 2 sr 2 cacu 2 o 8
CREATE TABLE table_101336_1 (notation VARCHAR, crystal_structure VARCHAR, formula VARCHAR)
SELECT T1.text_of_notes FROM Assessment_Notes AS T1 JOIN Teachers AS T2 ON T1.teacher_id = T2.teacher_id WHERE T2.last_name = "Schuster"
Find the texts of assessment notes for teachers with last name "Schuster".
CREATE TABLE Assessment_Notes (text_of_notes VARCHAR, teacher_id VARCHAR); CREATE TABLE Teachers (teacher_id VARCHAR, last_name VARCHAR)
SELECT game FROM table_name_83 WHERE team = "phoenix"
What is the game number when the game was against phoenix?
CREATE TABLE table_name_83 (game VARCHAR, team VARCHAR)
SELECT professional_jury FROM table_14977252_2 WHERE points = 10
Name the jury of 10 points
CREATE TABLE table_14977252_2 (professional_jury VARCHAR, points VARCHAR)
SELECT year FROM table_name_64 WHERE country = "united states" AND dates = "aug 3–5"
What Year was the United States the country for aug 3–5?
CREATE TABLE table_name_64 (year VARCHAR, country VARCHAR, dates VARCHAR)
SELECT home_team FROM table_name_25 WHERE away_team = "collingwood"
Which Home team has an Away team of collingwood?
CREATE TABLE table_name_25 (home_team VARCHAR, away_team VARCHAR)
SELECT superlative FROM table_name_23 WHERE record_set = "12 nominations"
What Superlative had a record set of 12 nominations?
CREATE TABLE table_name_23 (superlative VARCHAR, record_set VARCHAR)
SELECT attendance FROM table_name_71 WHERE opponent = "new york yankees" AND date = "may 12"
What was the Attendance on May 12, when the New York Yankees were the Opponent?
CREATE TABLE table_name_71 (attendance VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT MIN(year) FROM table_name_47 WHERE co_driver = "warren luff" AND position = "7th" AND laps < 161
What is the lowest Year, when Co-Driver is Warren Luff, when Position is 7th, and when Laps is less than 161?
CREATE TABLE table_name_47 (year INTEGER, laps VARCHAR, co_driver VARCHAR, position VARCHAR)
SELECT earpads FROM table_name_88 WHERE headphone_class = "reference" AND us_msrp = "$695"
What are the earpads for the headphones that are Reference class and have MSRP of $695?
CREATE TABLE table_name_88 (earpads VARCHAR, headphone_class VARCHAR, us_msrp VARCHAR)
SELECT COUNT(*) FROM team_franchise WHERE active = 'Y'
How many team franchises are active, with active value 'Y'?
CREATE TABLE team_franchise (active VARCHAR)
SELECT DISTINCT T1.customer_name FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status = "Packing"
List the name of all the distinct customers who have orders with status "Packing".
CREATE TABLE orders (customer_id VARCHAR, order_status VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)
SELECT player FROM table_name_55 WHERE team = "oakland athletics"
WHAT PLAYER HAS THE OAKLAND ATHLETICS?
CREATE TABLE table_name_55 (player VARCHAR, team VARCHAR)
SELECT actor FROM table_name_91 WHERE soap_opera = "goede tijden, slechte tijden" AND duration = "11 years" AND character = "rosa gonzalez"
What actor has goede tijden, slechte tijden, as the soap opera, 11 years as the duration, with rosa gonzalez as the character?
CREATE TABLE table_name_91 (actor VARCHAR, character VARCHAR, soap_opera VARCHAR, duration VARCHAR)
SELECT pct__percentage FROM table_1143966_1 WHERE won = 25
Name the percentage where the amount won was 25
CREATE TABLE table_1143966_1 (pct__percentage VARCHAR, won VARCHAR)
SELECT COUNT(ends) FROM table_name_80 WHERE transfer_fee = "dkk 14m"
What is the total number of ends when the transfer fee was dkk 14m?
CREATE TABLE table_name_80 (ends VARCHAR, transfer_fee VARCHAR)
SELECT MAX(elected) FROM table_name_39 WHERE party = "republican" AND district = "5th"
Party of republican, and a District of 5th is what highest elected?
CREATE TABLE table_name_39 (elected INTEGER, party VARCHAR, district VARCHAR)
SELECT team FROM table_name_52 WHERE shirt_sponsor = "carlsberg"
What team does Carlsberg sponsor?
CREATE TABLE table_name_52 (team VARCHAR, shirt_sponsor VARCHAR)
SELECT date FROM table_name_82 WHERE record = "6-6"
Which Date has a Record of 6-6?
CREATE TABLE table_name_82 (date VARCHAR, record VARCHAR)
SELECT poll_source FROM table_16751596_6 WHERE dates_administered = "July 10, 2008"
What poll source had an administered date on July 10, 2008?
CREATE TABLE table_16751596_6 (poll_source VARCHAR, dates_administered VARCHAR)
SELECT catalogue_number FROM table_27932399_1 WHERE release_title = "Waves In The Air"
What is the catalogue number for "Waves in the Air"?
CREATE TABLE table_27932399_1 (catalogue_number VARCHAR, release_title VARCHAR)
SELECT MIN(pick__number) FROM table_10812938_5 WHERE cfl_team = "Toronto Argonauts"
What's the pick number of the player from Toronto Argonauts?
CREATE TABLE table_10812938_5 (pick__number INTEGER, cfl_team VARCHAR)
SELECT other_local_sources FROM table_11608735_3 WHERE property_taxes = "11,631,227"
What is the local sources for property taxes of 11,631,227?
CREATE TABLE table_11608735_3 (other_local_sources VARCHAR, property_taxes VARCHAR)
SELECT COUNT(position) FROM table_name_28 WHERE team = "são paulo railway" AND against < 46
What is the number of Position when the team was são paulo railway and the against is less than 46?
CREATE TABLE table_name_28 (position VARCHAR, team VARCHAR, against VARCHAR)
SELECT SUM(events) FROM table_name_77 WHERE top_10 = 2 AND cuts_made > 5
How many events does the tournament with a top-10 of 2 and more than 5 cuts have?
CREATE TABLE table_name_77 (events INTEGER, top_10 VARCHAR, cuts_made VARCHAR)
SELECT MIN(lane) FROM table_name_68 WHERE mark = "8.09 pb"
What's the lowest lane found for a mark of 8.09 pb?
CREATE TABLE table_name_68 (lane INTEGER, mark VARCHAR)
SELECT MIN(goal_gain) FROM table_name_31 WHERE game < 18
What team with a Game smaller than 18 has the lowest Goal Gain?
CREATE TABLE table_name_31 (goal_gain INTEGER, game INTEGER)
SELECT name AS origin FROM table_16799784_2 WHERE longitude = "54.0E"
Name the name origin for 54.0e
CREATE TABLE table_16799784_2 (name VARCHAR, longitude VARCHAR)
SELECT school_club_team FROM table_name_40 WHERE player = "amal mccaskill"
What school/club team did Amal McCaskill play for?
CREATE TABLE table_name_40 (school_club_team VARCHAR, player VARCHAR)
SELECT district FROM shop WHERE Number_products < 3000 INTERSECT SELECT district FROM shop WHERE Number_products > 10000
Which district has both stores with less than 3000 products and stores with more than 10000 products?
CREATE TABLE shop (district VARCHAR, Number_products INTEGER)
SELECT municipality FROM table_name_84 WHERE code = 2401
Which municipality has the code 2401?
CREATE TABLE table_name_84 (municipality VARCHAR, code VARCHAR)
SELECT AVG(year) FROM table_name_41 WHERE result = "won" AND award = "inside soap awards"
What year did was the Inside Soap Awards won?
CREATE TABLE table_name_41 (year INTEGER, result VARCHAR, award VARCHAR)
SELECT music FROM table_name_57 WHERE results = "safe" AND choreographer_s_ = "jason gilkison"
Which music led to a safe result and was choreographed by Jason Gilkison?
CREATE TABLE table_name_57 (music VARCHAR, results VARCHAR, choreographer_s_ VARCHAR)
SELECT engine FROM table_name_80 WHERE year = 1965
During the Formula One World Championships, which engine was used in 1965?
CREATE TABLE table_name_80 (engine VARCHAR, year VARCHAR)
SELECT MIN(_number_of_episodes) FROM table_name_75 WHERE date_released = "15 december 2011"
What is the lowest # Of Episodes, when Date Released is "15 December 2011"?
CREATE TABLE table_name_75 (_number_of_episodes INTEGER, date_released VARCHAR)
SELECT japanese_name FROM table_name_8 WHERE korean_name_² = "경칩 (驚蟄) gyeongchip"
Which Japanese name has a Korean name ² of 경칩 (驚蟄) gyeongchip?
CREATE TABLE table_name_8 (japanese_name VARCHAR, korean_name_² VARCHAR)
SELECT MAX(pick) FROM table_name_25 WHERE round = "round 4" AND player = "rudy harris"
What was Rudy Harris' pick number in round 4?
CREATE TABLE table_name_25 (pick INTEGER, round VARCHAR, player VARCHAR)
SELECT COUNT(date) FROM table_22654073_6 WHERE score = "L 85–86 (OT)"
Name the total number of date for l 85–86 (ot)
CREATE TABLE table_22654073_6 (date VARCHAR, score VARCHAR)
SELECT name FROM table_name_84 WHERE position = "center"
What is the Name of the Center?
CREATE TABLE table_name_84 (name VARCHAR, position VARCHAR)
SELECT team FROM table_name_10 WHERE races = "4" AND points = "0"
What is the Team that has a Races of 4, and a Points of 0?
CREATE TABLE table_name_10 (team VARCHAR, races VARCHAR, points VARCHAR)
SELECT MIN(year) FROM table_name_50 WHERE event = "wimbledon" AND opponent = "zheng jie"
what's the earliest year that the wimbledon opponent was zheng jie?
CREATE TABLE table_name_50 (year INTEGER, event VARCHAR, opponent VARCHAR)
SELECT AVG(tries) FROM table_name_25 WHERE player = "israel folau"
What is the average number of tries of player israel folau?
CREATE TABLE table_name_25 (tries INTEGER, player VARCHAR)
SELECT edition_s_ FROM table_name_82 WHERE region = "germany"
What is the Edition of the release in Germany?
CREATE TABLE table_name_82 (edition_s_ VARCHAR, region VARCHAR)
SELECT eliminated_by FROM table_18598175_2 WHERE method_of_elimination = "Pedigree"
Who won the match when the winner used the Pedigree attack?
CREATE TABLE table_18598175_2 (eliminated_by VARCHAR, method_of_elimination VARCHAR)
SELECT SUM(attendance) FROM table_name_70 WHERE loss = "roloson (11–5)"
How much attendance has a Loss of roloson (11–5)?
CREATE TABLE table_name_70 (attendance INTEGER, loss VARCHAR)
SELECT date FROM table_name_40 WHERE result = "w 30–15"
On what Date was the Result of the game W 30–15?
CREATE TABLE table_name_40 (date VARCHAR, result VARCHAR)
SELECT race_name FROM table_name_90 WHERE round = 1
What is the name of the race from round 1?
CREATE TABLE table_name_90 (race_name VARCHAR, round VARCHAR)
SELECT current_map FROM table_name_72 WHERE name = "beethoven"
What is the current map designation for Beethoven?
CREATE TABLE table_name_72 (current_map VARCHAR, name VARCHAR)
SELECT distance FROM table_2581397_4 WHERE race = "Manikato Stakes"
What was the distance in the Manikato Stakes race?
CREATE TABLE table_2581397_4 (distance VARCHAR, race VARCHAR)
SELECT score FROM table_name_21 WHERE opponent = "ekaterina makarova"
What was the score in the tournament against Ekaterina Makarova?
CREATE TABLE table_name_21 (score VARCHAR, opponent VARCHAR)
SELECT MIN(total) FROM table_name_25 WHERE rank = "11" AND silver > 0
What is the smallest total number of medals for rank 11 and more than 0 silver medals?
CREATE TABLE table_name_25 (total INTEGER, rank VARCHAR, silver VARCHAR)
SELECT country FROM table_name_75 WHERE result = "nominated" AND award = "17th bangkok critics assembly awards" AND category = "best screenplay"
Which Country has a Result of nominated, an Award of 17th bangkok critics assembly awards, and a Category of best screenplay?
CREATE TABLE table_name_75 (country VARCHAR, category VARCHAR, result VARCHAR, award VARCHAR)
SELECT wed_1_june FROM table_29218221_3 WHERE thurs_2_june = "21' 05.87 107.300mph"
What's the Wednesday, June 1 practice time for the rider that did 21' 05.87 107.300mph on Thursday, June 2?
CREATE TABLE table_29218221_3 (wed_1_june VARCHAR, thurs_2_june VARCHAR)
SELECT intermediate_sprints_classification_red_jersey FROM table_name_34 WHERE mountains_classification_green_jersey = "murilo antonio fischer" AND points_classification_navy_blue_jersey = "jose joaquin rojas gil"
What is the Intermediate Sprints Classification Red Jersey that has a Green Jersey of Murilo Antonio Fischer, and Jose Joaquin Rojas Gil?
CREATE TABLE table_name_34 (intermediate_sprints_classification_red_jersey VARCHAR, mountains_classification_green_jersey VARCHAR, points_classification_navy_blue_jersey VARCHAR)
SELECT attendance FROM table_name_32 WHERE record = "16–29"
Record of 16–29 is how many attendance?
CREATE TABLE table_name_32 (attendance VARCHAR, record VARCHAR)
SELECT winning_score FROM table_name_15 WHERE runner_s__up = "jack nicklaus"
What is the Winning Score of the Tournament with Jack Nicklaus as Runner(s)-up?
CREATE TABLE table_name_15 (winning_score VARCHAR, runner_s__up VARCHAR)
SELECT MIN(tor_fløysvik) FROM table_28677723_10 WHERE couple = "Maria & Asmund"
What is listed under tor floysvik when couple is maria & asmund?
CREATE TABLE table_28677723_10 (tor_fløysvik INTEGER, couple VARCHAR)
SELECT rear_sight_type FROM table_19901_1 WHERE muzzle_device = "ACR muzzle brake"
What is the rear sight type on the model with the acr muzzle brake device?
CREATE TABLE table_19901_1 (rear_sight_type VARCHAR, muzzle_device VARCHAR)
SELECT engine FROM table_name_29 WHERE model = "1600" AND years = "1975-84"
What engine with the years of 1975-84 has a model of 1600?
CREATE TABLE table_name_29 (engine VARCHAR, model VARCHAR, years VARCHAR)
SELECT dominant_religion__2002_ FROM table_2562572_27 WHERE population__2011_ = "83"
What are the dominant religions in the place with a population of 83?
CREATE TABLE table_2562572_27 (dominant_religion__2002_ VARCHAR, population__2011_ VARCHAR)
SELECT total FROM table_name_72 WHERE rank_points = "olympic gold medalist"
That's the total for rank points of olympic gold medalist?
CREATE TABLE table_name_72 (total VARCHAR, rank_points VARCHAR)
SELECT T2.friend FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T2.name = 'Alice' AND T1.gender = 'male' AND T1.job = 'doctor'
Find the male friend of Alice whose job is a doctor?
CREATE TABLE PersonFriend (friend VARCHAR, name VARCHAR); CREATE TABLE Person (name VARCHAR, job VARCHAR, gender VARCHAR)
SELECT MIN(year) FROM table_name_6 WHERE position = "7th"
What was the earliest year that Târlea took 7th place?
CREATE TABLE table_name_6 (year INTEGER, position VARCHAR)
SELECT defensive FROM table_14132239_3 WHERE month = "February" AND rookie = "Rhys Duch"
Who was the defensive award winner in February when the rookie award was given to Rhys Duch?
CREATE TABLE table_14132239_3 (defensive VARCHAR, month VARCHAR, rookie VARCHAR)
SELECT MIN(year) FROM table_name_38 WHERE points > 0
What is the earliest year when the points were more than 0?
CREATE TABLE table_name_38 (year INTEGER, points INTEGER)
SELECT time FROM table_name_4 WHERE ground = "ghantoot racing and polo club"
What is the time of the Ghantoot Racing and Polo Club?
CREATE TABLE table_name_4 (time VARCHAR, ground VARCHAR)
SELECT date FROM table_name_45 WHERE competition = "1999 fifa confederations cup"
What is the Date of the 1999 fifa confederations cup?
CREATE TABLE table_name_45 (date VARCHAR, competition VARCHAR)
SELECT COUNT(total_attempted) FROM table_name_21 WHERE total_made = 16
what is the total attempted with a total made 16
CREATE TABLE table_name_21 (total_attempted VARCHAR, total_made VARCHAR)
SELECT Party, COUNT(*) FROM representative GROUP BY Party ORDER BY COUNT(*) DESC LIMIT 1
What is the party that has the largest number of representatives?
CREATE TABLE representative (Party VARCHAR)
SELECT to_par FROM table_19630743_2 WHERE winning_score = 69 - 66 - 68 = 203
How many to par has the winning score of 69-66-68=203.
CREATE TABLE table_19630743_2 (to_par VARCHAR, winning_score VARCHAR)
SELECT host_team FROM table_name_37 WHERE date = "september 11"
What team was the host on september 11?
CREATE TABLE table_name_37 (host_team VARCHAR, date VARCHAR)
SELECT change FROM table_name_71 WHERE share = "2.9%"
Name the change with share of 2.9%
CREATE TABLE table_name_71 (change VARCHAR, share VARCHAR)
SELECT t3.title FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid JOIN inst AS t4 ON t2.instid = t4.instid WHERE t4.country = "USA" AND t2.authorder = 2 AND t1.lname = "Turon"
Which paper is published in an institution in "USA" and have "Turon" as its second author?
CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR, instid VARCHAR, authorder VARCHAR); CREATE TABLE authors (authid VARCHAR, lname VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR); CREATE TABLE inst (instid VARCHAR, country VARCHAR)
SELECT the_wørd FROM table_25691838_2 WHERE original_airdate = "February 11"
What was the word for the episode that aired February 11?
CREATE TABLE table_25691838_2 (the_wørd VARCHAR, original_airdate VARCHAR)
SELECT poor_law_union FROM table_30121046_1 WHERE townland = "Kilmaloda"
What is the poor law union of the Kilmaloda townland?
CREATE TABLE table_30121046_1 (poor_law_union VARCHAR, townland VARCHAR)
SELECT ship_size FROM table_name_89 WHERE 2006 = "$46,000"
What ship size had a cargo value of $46,000 in 2006?
CREATE TABLE table_name_89 (ship_size VARCHAR)
SELECT first FROM table_name_39 WHERE country = "trinidad and tobago" AND last = "hutchinson" AND year < 2004
Name the first for countries of trinidad and tobago for hutchinson for years before 2004
CREATE TABLE table_name_39 (first VARCHAR, year VARCHAR, country VARCHAR, last VARCHAR)
SELECT race FROM table_name_4 WHERE notes = "world championship formula 1" AND venue = "hungaroring"
What was the race for the world championship formula 1 at a venue of hungaroring?
CREATE TABLE table_name_4 (race VARCHAR, notes VARCHAR, venue VARCHAR)
SELECT religious_affiliation FROM table_name_34 WHERE athletics_nickname = "lords/ladies"
What was the religious affiliation for the athletics nicknamed lords/ladies?
CREATE TABLE table_name_34 (religious_affiliation VARCHAR, athletics_nickname VARCHAR)
SELECT film FROM table_name_94 WHERE nominee = "raymond massey"
What is the film that Raymond Massey was nominated for?
CREATE TABLE table_name_94 (film VARCHAR, nominee VARCHAR)
SELECT score FROM table_name_68 WHERE opponent = "mardy fish"
What is the score where the opponent was Mardy Fish?
CREATE TABLE table_name_68 (score VARCHAR, opponent VARCHAR)
SELECT engine FROM table_name_99 WHERE chassis = "dallara" AND rank = "6th" AND points = 384
Which engine has a chassis of dallara, is ranked 6th, and has 384 points?
CREATE TABLE table_name_99 (engine VARCHAR, points VARCHAR, chassis VARCHAR, rank VARCHAR)
SELECT COUNT(kennedy_votes) FROM table_24115349_4 WHERE coakley_votes = 2139
How many votes did kennedy win when coaklely won 2139 votes?
CREATE TABLE table_24115349_4 (kennedy_votes VARCHAR, coakley_votes VARCHAR)
SELECT record FROM table_name_61 WHERE week < 13 AND date = "october 8, 2000"
What's the record for October 8, 2000 before week 13?
CREATE TABLE table_name_61 (record VARCHAR, week VARCHAR, date VARCHAR)
SELECT away_team AS score FROM table_16388478_4 WHERE crowd = 5391
What was the away team score for the game with a crowd of 5391?
CREATE TABLE table_16388478_4 (away_team VARCHAR, crowd VARCHAR)
SELECT location FROM table_19215259_1 WHERE power__kw_ = "5kW" AND frequency = "102.3MHz"
Where is the frequency 102.3mhz and 5kw power?
CREATE TABLE table_19215259_1 (location VARCHAR, power__kw_ VARCHAR, frequency VARCHAR)
SELECT player FROM table_name_29 WHERE hometown = "chula vista, ca"
What player is from Chula Vista, Ca?
CREATE TABLE table_name_29 (player VARCHAR, hometown VARCHAR)