question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
what is the year when the position is 1/22 promoted and the leading scorer is james dean (27)?
CREATE TABLE table_name_81 (year VARCHAR, position VARCHAR, leading_scorer VARCHAR)
SELECT year FROM table_name_81 WHERE position = "1/22 promoted" AND leading_scorer = "james dean (27)"
Which Lost has Drawn larger than 12, and Goals Against of 54?
CREATE TABLE table_name_94 (lost INTEGER, drawn VARCHAR, goals_against VARCHAR)
SELECT MAX(lost) FROM table_name_94 WHERE drawn > 12 AND goals_against = 54
What is the home score with a crowd larger than 25,603?
CREATE TABLE table_name_44 (home_team VARCHAR, crowd INTEGER)
SELECT home_team AS score FROM table_name_44 WHERE crowd > 25 OFFSET 603
What is the lowest year listed?
CREATE TABLE table_1529260_2 (year INTEGER)
SELECT MIN(year) FROM table_1529260_2
Show the id and star rating of each hotel, ordered by its price from low to high.
CREATE TABLE HOTELS (hotel_id VARCHAR, star_rating_code VARCHAR, price_range VARCHAR)
SELECT hotel_id, star_rating_code FROM HOTELS ORDER BY price_range
When did the institution located in Lewiston, Maine join the conference?
CREATE TABLE table_261931_2 (joined VARCHAR, location VARCHAR)
SELECT joined FROM table_261931_2 WHERE location = "Lewiston, Maine"
what is the result when the opponent is blackburn rovers?
CREATE TABLE table_name_39 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_39 WHERE opponent = "blackburn rovers"
How many holes does Player Vijay Singh have?
CREATE TABLE table_name_79 (hole VARCHAR, player VARCHAR)
SELECT COUNT(hole) FROM table_name_79 WHERE player = "vijay singh"
What is the Opponent with a Round of q2, in the 2005–06 season?
CREATE TABLE table_name_75 (opponent VARCHAR, round VARCHAR, season VARCHAR)
SELECT opponent FROM table_name_75 WHERE round = "q2" AND season = "2005–06"
What date did the episode with a production code of 60072 originally air?
CREATE TABLE table_28140590_1 (original_air_date VARCHAR, production_code VARCHAR)
SELECT original_air_date FROM table_28140590_1 WHERE production_code = 60072
Where did arturo segovia compete?
CREATE TABLE table_name_24 (location VARCHAR, opponent VARCHAR)
SELECT location FROM table_name_24 WHERE opponent = "arturo segovia"
Name the IHSAA Class of 55 morgan and a School of mooresville?
CREATE TABLE table_name_8 (ihsaa_class VARCHAR, county VARCHAR, school VARCHAR)
SELECT ihsaa_class FROM table_name_8 WHERE county = "55 morgan" AND school = "mooresville"
What's the type of the school in New London, Connecticut?
CREATE TABLE table_1974782_1 (type VARCHAR, location VARCHAR)
SELECT type FROM table_1974782_1 WHERE location = "New London, Connecticut"
What is the average Heat Points, when Result is "Loss", when Game is greater than 72, and when Date is "April 21"?
CREATE TABLE table_name_83 (heat_points INTEGER, date VARCHAR, result VARCHAR, game VARCHAR)
SELECT AVG(heat_points) FROM table_name_83 WHERE result = "loss" AND game > 72 AND date = "april 21"
How many results are listed for the election where Noah M. Mason was elected?
CREATE TABLE table_1342013_12 (result VARCHAR, incumbent VARCHAR)
SELECT COUNT(result) FROM table_1342013_12 WHERE incumbent = "Noah M. Mason"
What is the lowest evening gown score a contestant with an average less than 8.23, an interview score of 8.11, and a swimsuit larger than 7.84 has?
CREATE TABLE table_name_17 (evening_gown INTEGER, swimsuit VARCHAR, average VARCHAR, interview VARCHAR)
SELECT MIN(evening_gown) FROM table_name_17 WHERE average < 8.23 AND interview = 8.11 AND swimsuit > 7.84
The hanja 尙州 is for what capital?
CREATE TABLE table_160510_1 (capital VARCHAR, hanja VARCHAR)
SELECT capital FROM table_160510_1 WHERE hanja = "尙州"
How many times is the vessel operator canadian coast guard?
CREATE TABLE table_26168687_3 (no_in_series VARCHAR, vessel_operator VARCHAR)
SELECT COUNT(no_in_series) FROM table_26168687_3 WHERE vessel_operator = "Canadian Coast Guard"
What is the total number of wins for Cobden club when there are more than 2 draws?
CREATE TABLE table_name_39 (wins INTEGER, club VARCHAR, draws VARCHAR)
SELECT SUM(wins) FROM table_name_39 WHERE club = "cobden" AND draws > 2
What was the finishing position for the car that started in grid 6?
CREATE TABLE table_name_21 (fin_pos VARCHAR, grid VARCHAR)
SELECT fin_pos FROM table_name_21 WHERE grid = "6"
Which defending forces has a population of 230?
CREATE TABLE table_name_62 (defending_forces VARCHAR, population VARCHAR)
SELECT defending_forces FROM table_name_62 WHERE population = "230"
What is the To par, when the Score is 68-71-69=208?
CREATE TABLE table_name_1 (to_par VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_1 WHERE score = 68 - 71 - 69 = 208
What is the time for qual 2 that has the best time of 59.266?
CREATE TABLE table_name_45 (qual_2 VARCHAR, best VARCHAR)
SELECT qual_2 FROM table_name_45 WHERE best = "59.266"
What is the description of the service type which offers both the photo product and the film product?
CREATE TABLE Ref_Service_Types (Service_Type_Description VARCHAR, Service_Type_Code VARCHAR); CREATE TABLE Services (Service_Type_Code VARCHAR, Product_Name VARCHAR)
SELECT T1.Service_Type_Description FROM Ref_Service_Types AS T1 JOIN Services AS T2 ON T1.Service_Type_Code = T2.Service_Type_Code WHERE T2.Product_Name = 'photo' INTERSECT SELECT T1.Service_Type_Description FROM Ref_Service_Types AS T1 JOIN Services AS T2 ON T1.Service_Type_Code = T2.Service_Type_Code WHERE T2.Product...
How many members have the black membership card?
CREATE TABLE member (Membership_card VARCHAR)
SELECT COUNT(*) FROM member WHERE Membership_card = 'Black'
Please show the themes of competitions with host cities having populations larger than 1000.
CREATE TABLE city (City_ID VARCHAR, Population INTEGER); CREATE TABLE farm_competition (Theme VARCHAR, Host_city_ID VARCHAR)
SELECT T2.Theme FROM city AS T1 JOIN farm_competition AS T2 ON T1.City_ID = T2.Host_city_ID WHERE T1.Population > 1000
What position is Charone Peake?
CREATE TABLE table_11677691_3 (position VARCHAR, player VARCHAR)
SELECT position FROM table_11677691_3 WHERE player = "Charone Peake"
Who were the candidates in the election where the incumbent is George M. Grant?
CREATE TABLE table_1341973_3 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341973_3 WHERE incumbent = "George M. Grant"
What series was called Egghead Rides Again?
CREATE TABLE table_name_38 (series VARCHAR, title VARCHAR)
SELECT series FROM table_name_38 WHERE title = "egghead rides again"
What is the id, forname and surname of the driver who had the first position in terms of laptime at least twice?
CREATE TABLE drivers (driverid VARCHAR, forename VARCHAR, surname VARCHAR); CREATE TABLE laptimes (driverid VARCHAR)
SELECT T1.driverid, T1.forename, T1.surname FROM drivers AS T1 JOIN laptimes AS T2 ON T1.driverid = T2.driverid WHERE POSITION = '1' GROUP BY T1.driverid HAVING COUNT(*) >= 2
What time was the match that had an attendance of 22,329?
CREATE TABLE table_name_99 (time VARCHAR, attendance VARCHAR)
SELECT time FROM table_name_99 WHERE attendance = "22,329"
Which Tournament has a 2007 of 19–4?
CREATE TABLE table_name_3 (tournament VARCHAR)
SELECT tournament FROM table_name_3 WHERE 2007 = "19–4"
At which location did 29753 fans show up to watch the game?
CREATE TABLE table_24481478_1 (game_site VARCHAR, attendance VARCHAR)
SELECT game_site FROM table_24481478_1 WHERE attendance = 29753
What score has 1/22 as the date?
CREATE TABLE table_name_11 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_11 WHERE date = "1/22"
Which pick's player was Marc Lewis (lhp)?
CREATE TABLE table_name_76 (pick VARCHAR, player VARCHAR)
SELECT pick FROM table_name_76 WHERE player = "marc lewis (lhp)"
Which Laps have a Manufacturer of aprilia, and a Rider of sergio gadea?
CREATE TABLE table_name_48 (laps VARCHAR, manufacturer VARCHAR, rider VARCHAR)
SELECT laps FROM table_name_48 WHERE manufacturer = "aprilia" AND rider = "sergio gadea"
What is Tiger Woods' to par?
CREATE TABLE table_name_5 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_5 WHERE player = "tiger woods"
What show has a time of 4:00pm–5:00am?
CREATE TABLE table_name_54 (show_name VARCHAR, time VARCHAR)
SELECT show_name FROM table_name_54 WHERE time = "4:00pm–5:00am"
Which 2012 tournament had 2r in 2010?
CREATE TABLE table_name_43 (Id VARCHAR)
SELECT 2012 FROM table_name_43 WHERE 2010 = "2r"
What was the winning score when Damien McGrane was runner-up?
CREATE TABLE table_name_39 (winning_score VARCHAR, runner_s__up VARCHAR)
SELECT winning_score FROM table_name_39 WHERE runner_s__up = "damien mcgrane"
Name the score for opponents of nathan healey igor kunitsyn
CREATE TABLE table_name_57 (score VARCHAR, opponents_in_the_final VARCHAR)
SELECT score FROM table_name_57 WHERE opponents_in_the_final = "nathan healey igor kunitsyn"
What is the Loser when the winner was los angeles lakers (10)?
CREATE TABLE table_name_18 (loser VARCHAR, winner VARCHAR)
SELECT loser FROM table_name_18 WHERE winner = "los angeles lakers (10)"
What is the lowest capacity that has stadion mladina as the stadium?
CREATE TABLE table_name_96 (capacity INTEGER, stadium VARCHAR)
SELECT MIN(capacity) FROM table_name_96 WHERE stadium = "stadion mladina"
How many saves did the player with a 92.3% save rate and 217 goals have?
CREATE TABLE table_name_10 (saves INTEGER, save__percentage VARCHAR, goals_against VARCHAR)
SELECT SUM(saves) FROM table_name_10 WHERE save__percentage = "92.3%" AND goals_against > 217
What chassis belongs with the Cosworth Engine driven by Scott Pruett on the Dick Simon Racing team?
CREATE TABLE table_name_82 (chassis VARCHAR, team VARCHAR, engine VARCHAR, drivers VARCHAR)
SELECT chassis FROM table_name_82 WHERE engine = "cosworth" AND drivers = "scott pruett" AND team = "dick simon racing"
Which Position has a Pick smaller than 152, and a Round smaller than 3?
CREATE TABLE table_name_92 (position VARCHAR, pick VARCHAR, round VARCHAR)
SELECT position FROM table_name_92 WHERE pick < 152 AND round < 3
Find the wineries that have at least four wines.
CREATE TABLE WINE (Winery VARCHAR)
SELECT Winery FROM WINE GROUP BY Winery HAVING COUNT(*) >= 4
What are the processors supported by a ddr2 memory and the nforce 550 model?
CREATE TABLE table_name_91 (processors_supported VARCHAR, memory VARCHAR, model VARCHAR)
SELECT processors_supported FROM table_name_91 WHERE memory = "ddr2" AND model = "nforce 550"
What is Weight, when Club is "Maadi"?
CREATE TABLE table_name_86 (weight VARCHAR, club VARCHAR)
SELECT weight FROM table_name_86 WHERE club = "maadi"
What is the amount of FA cups goals that were made when the total goals is greater than 16, and the league cup goals is 1 for the Norwich City club?
CREATE TABLE table_name_78 (fa_cup_goals VARCHAR, club VARCHAR, total VARCHAR, league_cup_goals VARCHAR)
SELECT fa_cup_goals FROM table_name_78 WHERE total > 16 AND league_cup_goals = "1" AND club = "norwich city"
What is the total attendance for the August 8 game?
CREATE TABLE table_name_48 (attendance INTEGER, date VARCHAR)
SELECT SUM(attendance) FROM table_name_48 WHERE date = "august 8"
If Coba is the song choice, what is the order number?
CREATE TABLE table_22736523_1 (order__number VARCHAR, song_choice VARCHAR)
SELECT order__number FROM table_22736523_1 WHERE song_choice = "Coba"
What is the time/retired when there are less than 22 laps and honda is the manufacturer?
CREATE TABLE table_name_67 (time_retired VARCHAR, laps VARCHAR, manufacturer VARCHAR)
SELECT time_retired FROM table_name_67 WHERE laps < 22 AND manufacturer = "honda"
What team played away at vfl park?
CREATE TABLE table_name_13 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_13 WHERE venue = "vfl park"
What is the cell phone number of the student whose address has the lowest monthly rental?
CREATE TABLE Students (cell_mobile_number VARCHAR, student_id VARCHAR); CREATE TABLE Student_Addresses (student_id VARCHAR, monthly_rental VARCHAR)
SELECT T2.cell_mobile_number FROM Student_Addresses AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id ORDER BY T1.monthly_rental LIMIT 1
How did the manager replaced by Wolfgang Frank depart?
CREATE TABLE table_name_93 (manner_of_departure VARCHAR, replaced_by VARCHAR)
SELECT manner_of_departure FROM table_name_93 WHERE replaced_by = "wolfgang frank"
What is the catalogue number for Brazil?
CREATE TABLE table_name_8 (catalogue__number VARCHAR, country VARCHAR)
SELECT catalogue__number FROM table_name_8 WHERE country = "brazil"
what is the title when the release date is 1938-12-17 and the production number is 8610?
CREATE TABLE table_name_86 (title VARCHAR, release_date VARCHAR, production_num VARCHAR)
SELECT title FROM table_name_86 WHERE release_date = "1938-12-17" AND production_num = "8610"
Who was the opponent at the game that had a loss of Shields (1–1)?
CREATE TABLE table_name_12 (opponent VARCHAR, loss VARCHAR)
SELECT opponent FROM table_name_12 WHERE loss = "shields (1–1)"
Show origins of all flights with destination Honolulu.
CREATE TABLE Flight (origin VARCHAR, destination VARCHAR)
SELECT origin FROM Flight WHERE destination = "Honolulu"
Which Away captain has a Date of 26,27,28,29 december 1998?
CREATE TABLE table_name_12 (away_captain VARCHAR, date VARCHAR)
SELECT away_captain FROM table_name_12 WHERE date = "26,27,28,29 december 1998"
What is the Date for the City/State of Sydney, New South Wales?
CREATE TABLE table_name_61 (date VARCHAR, city___state VARCHAR)
SELECT date FROM table_name_61 WHERE city___state = "sydney, new south wales"
What event had the opponent Ryan Bow?
CREATE TABLE table_name_89 (event VARCHAR, opponent VARCHAR)
SELECT event FROM table_name_89 WHERE opponent = "ryan bow"
What is the average PI GP of the player from round 5 with a pick # larger than 151?
CREATE TABLE table_name_19 (pl_gp INTEGER, rd__number VARCHAR, pick__number VARCHAR)
SELECT AVG(pl_gp) FROM table_name_19 WHERE rd__number = 5 AND pick__number > 151
Who is the Driver that has Car Model Commodore VS?
CREATE TABLE table_name_26 (driver VARCHAR, car_model VARCHAR)
SELECT driver FROM table_name_26 WHERE car_model = "commodore vs"
What was the date of the game where Geelong was the home team?
CREATE TABLE table_name_18 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_18 WHERE home_team = "geelong"
what is the lowest place when the language is croatian?
CREATE TABLE table_name_95 (place INTEGER, language VARCHAR)
SELECT MIN(place) FROM table_name_95 WHERE language = "croatian"
What was the playoff advancement during the year 1998?
CREATE TABLE table_1570003_2 (playoffs VARCHAR, year VARCHAR)
SELECT playoffs FROM table_1570003_2 WHERE year = 1998
Show names of actors and names of musicals they are in.
CREATE TABLE actor (Name VARCHAR, Musical_ID VARCHAR); CREATE TABLE musical (Name VARCHAR, Musical_ID VARCHAR)
SELECT T1.Name, T2.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID
What is the 2004 value with A in 2005, A in 2008, and lq in 2009?
CREATE TABLE table_name_55 (Id VARCHAR)
SELECT 2004 FROM table_name_55 WHERE 2005 = "a" AND 2008 = "a" AND 2009 = "lq"
What place did Bob May get when his score was 72-66=138?
CREATE TABLE table_name_84 (place VARCHAR, player VARCHAR, score VARCHAR)
SELECT place FROM table_name_84 WHERE score = 72 - 66 = 138 AND player = "bob may"
What was the resolution for the fight against enrique guzman?
CREATE TABLE table_name_67 (res VARCHAR, opponent VARCHAR)
SELECT res FROM table_name_67 WHERE opponent = "enrique guzman"
During what years are the percentage over total tax revenue is 0.65?
CREATE TABLE table_1618358_1 (year VARCHAR, over_total_tax_revenue__in__percentage_ VARCHAR)
SELECT year FROM table_1618358_1 WHERE over_total_tax_revenue__in__percentage_ = "0.65"
What's the railway number of a D(rebuild) class?
CREATE TABLE table_name_28 (railway_number_s_ VARCHAR, class VARCHAR)
SELECT railway_number_s_ FROM table_name_28 WHERE class = "d(rebuild)"
What year was the average speed 145.24
CREATE TABLE table_1963459_2 (year INTEGER, average_speed__mph_ VARCHAR)
SELECT MAX(year) FROM table_1963459_2 WHERE average_speed__mph_ = "145.24"
What event was Donald Ouimet involved?
CREATE TABLE table_name_41 (event VARCHAR, opponent VARCHAR)
SELECT event FROM table_name_41 WHERE opponent = "donald ouimet"
What is Mass, when Launch Date/Time ( GMT ) is 25 November 1976, 03:59?
CREATE TABLE table_name_29 (mass VARCHAR, launch_date_time___gmt__ VARCHAR)
SELECT mass FROM table_name_29 WHERE launch_date_time___gmt__ = "25 november 1976, 03:59"
What bonus points have 448 as the points against?
CREATE TABLE table_name_47 (bonus_points VARCHAR, points_against VARCHAR)
SELECT bonus_points FROM table_name_47 WHERE points_against = "448"
What is Classification, when Dennis Kucinich is "3%", and when % of All is "53%"?
CREATE TABLE table_name_82 (classification VARCHAR, dennis_kucinich VARCHAR, _percentage_of_all VARCHAR)
SELECT classification FROM table_name_82 WHERE dennis_kucinich = "3%" AND _percentage_of_all = "53%"
What was the lifespan of the Representative from the Republican Party during the years of 1953–1970?
CREATE TABLE table_name_31 (lifespan VARCHAR, party VARCHAR, years VARCHAR)
SELECT lifespan FROM table_name_31 WHERE party = "republican" AND years = "1953–1970"
I want the plaid cymru for Polling organisation/client of yougov/itv wales for 4 may 2011
CREATE TABLE table_name_77 (plaid_cymru VARCHAR, polling_organisation_client VARCHAR, date_s__conducted VARCHAR)
SELECT plaid_cymru FROM table_name_77 WHERE polling_organisation_client = "yougov/itv wales" AND date_s__conducted = "4 may 2011"
What is the sum of laps of the honda cbr1000rr bike, which has a time of +16.569?
CREATE TABLE table_name_33 (laps INTEGER, bike VARCHAR, time VARCHAR)
SELECT SUM(laps) FROM table_name_33 WHERE bike = "honda cbr1000rr" AND time = "+16.569"
What is Team when Qual 1 is 1:20.139?
CREATE TABLE table_name_57 (team VARCHAR, qual_1 VARCHAR)
SELECT team FROM table_name_57 WHERE qual_1 = "1:20.139"
Among the cars with more than lowest horsepower, which ones do not have more than 3 cylinders? List the car makeid and make name.
CREATE TABLE CARS_DATA (Id VARCHAR, Horsepower INTEGER, Cylinders VARCHAR); CREATE TABLE CAR_NAMES (MakeId VARCHAR, Make VARCHAR); CREATE TABLE CARS_DATA (Horsepower INTEGER)
SELECT T2.MakeId, T2.Make FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T1.Horsepower > (SELECT MIN(Horsepower) FROM CARS_DATA) AND T1.Cylinders <= 3
what is the tournament when the winning score is 2 and 1?
CREATE TABLE table_name_29 (tournament VARCHAR, winning_score VARCHAR)
SELECT tournament FROM table_name_29 WHERE winning_score = "2 and 1"
In the match where fitzroy was the away team, where was the venue?
CREATE TABLE table_name_47 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_47 WHERE away_team = "fitzroy"
What is the name of the episode performed by Essra Mohawk
CREATE TABLE table_191105_4 (episode_title VARCHAR, performed_by VARCHAR)
SELECT episode_title FROM table_191105_4 WHERE performed_by = "Essra Mohawk"
Which Award has a Group of césar awards, and a Result of nominated, and a Year larger than 2001, and a Film of 8 women (8 femmes)?
CREATE TABLE table_name_39 (award VARCHAR, film VARCHAR, year VARCHAR, group VARCHAR, result VARCHAR)
SELECT award FROM table_name_39 WHERE group = "césar awards" AND result = "nominated" AND year > 2001 AND film = "8 women (8 femmes)"
How many Lanes have a rank higher than 3 with a time of 2:08.11?
CREATE TABLE table_name_72 (lane VARCHAR, time VARCHAR, rank VARCHAR)
SELECT COUNT(lane) FROM table_name_72 WHERE time = "2:08.11" AND rank > 3
Which quantity has Axle arrangement (UIC)bauart of c n2t, and DRG number 99 093?
CREATE TABLE table_name_58 (quantity VARCHAR, axle_arrangement___uic___bauart VARCHAR, drg_number_s_ VARCHAR)
SELECT quantity FROM table_name_58 WHERE axle_arrangement___uic___bauart = "c n2t" AND drg_number_s_ = "99 093"
What is the average Goals, when Team is "Rah Ahan", and when Division is less than 1?
CREATE TABLE table_name_81 (goals INTEGER, team VARCHAR, division VARCHAR)
SELECT AVG(goals) FROM table_name_81 WHERE team = "rah ahan" AND division < 1
What is the name of the title winner in the ring light heavyweight (175) division?
CREATE TABLE table_12206918_2 (name VARCHAR, titles VARCHAR)
SELECT name FROM table_12206918_2 WHERE titles = "The Ring Light heavyweight (175)"
What is the date when the result was l 37-3?
CREATE TABLE table_name_77 (date VARCHAR, result VARCHAR)
SELECT date FROM table_name_77 WHERE result = "l 37-3"
How many laps did the driver with the yamaha manufacturer go on grid 3?
CREATE TABLE table_name_61 (laps VARCHAR, manufacturer VARCHAR, grid VARCHAR)
SELECT laps FROM table_name_61 WHERE manufacturer = "yamaha" AND grid = 3
Who was the rookie that played week 6?
CREATE TABLE table_name_59 (rookie VARCHAR, week VARCHAR)
SELECT rookie FROM table_name_59 WHERE week = 6
Which district has an IUCN of iii and was established in 1998?
CREATE TABLE table_name_44 (district VARCHAR, iucn VARCHAR, est VARCHAR)
SELECT district FROM table_name_44 WHERE iucn = "iii" AND est = 1998
What is the nationality of the guard for the chool/Club Team in Virginia?
CREATE TABLE table_name_34 (nationality VARCHAR, position VARCHAR, school_club_team VARCHAR)
SELECT nationality FROM table_name_34 WHERE position = "guard" AND school_club_team = "virginia"
What's the show that has 60 minutes as the news freq?
CREATE TABLE table_name_25 (show_name VARCHAR, news_freq VARCHAR)
SELECT show_name FROM table_name_25 WHERE news_freq = "60 minutes"
What is the L2 cache for the Mobile Pentium 333?
CREATE TABLE table_name_48 (l2_cache VARCHAR, model_number VARCHAR)
SELECT l2_cache FROM table_name_48 WHERE model_number = "mobile pentium 333"
How many silvers for japan (1 gold)?
CREATE TABLE table_name_30 (silver INTEGER, nation VARCHAR, gold VARCHAR)
SELECT SUM(silver) FROM table_name_30 WHERE nation = "japan" AND gold > 1