answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT AVG(mean) FROM table_name_98 WHERE drug = "alcohol" AND psychological_dependence > 1.9
What is the average Mean, when Drug is "Alcohol", and when Psychological Dependence is greater than 1.9?
CREATE TABLE table_name_98 (mean INTEGER, drug VARCHAR, psychological_dependence VARCHAR)
SELECT november_3 FROM table_25286976_2 WHERE june_10_11 = "127"
When 127 is on June 10th to 11th what is November 3rd?
CREATE TABLE table_25286976_2 (november_3 VARCHAR, june_10_11 VARCHAR)
SELECT SUM(weeks_on_top) FROM table_name_94 WHERE issue_date_s_ = "20 november"
Which Weeks on Top have an Issue Date(s) of 20 november?
CREATE TABLE table_name_94 (weeks_on_top INTEGER, issue_date_s_ VARCHAR)
SELECT DISTINCT name FROM races ORDER BY name DESC
List the names of all distinct races in reversed lexicographic order?
CREATE TABLE races (name VARCHAR)
SELECT pick FROM table_name_55 WHERE college = "baylor"
What pick number was the player that went to baylor college?
CREATE TABLE table_name_55 (pick VARCHAR, college VARCHAR)
SELECT AVG(Attendance) FROM performance
What is the average number of attendees for performances?
CREATE TABLE performance (Attendance INTEGER)
SELECT round FROM table_name_92 WHERE grand_slam = "davis cup"
What is the round when Grand Slam was the Davis Cup?
CREATE TABLE table_name_92 (round VARCHAR, grand_slam VARCHAR)
SELECT SUM(apparent_magnitude) FROM table_name_45 WHERE ngc_number > 3293
What is the total of Apparent magnitudes for an NGC number larger than 3293?
CREATE TABLE table_name_45 (apparent_magnitude INTEGER, ngc_number INTEGER)
SELECT start FROM table_name_76 WHERE engine = "offy" AND year = 1972
What is the start of Offy engine and in 1972?
CREATE TABLE table_name_76 (start VARCHAR, engine VARCHAR, year VARCHAR)
SELECT l2_cache FROM table_name_92 WHERE sspec_number = "slbmm(c2)slbsr(k0)"
What is the L2 cache with ec number of slbmm(c2)slbsr(k0)?
CREATE TABLE table_name_92 (l2_cache VARCHAR, sspec_number VARCHAR)
SELECT reg_season FROM table_name_12 WHERE year = 1997
What was the Rampage's regular season in 1997?
CREATE TABLE table_name_12 (reg_season VARCHAR, year VARCHAR)
SELECT car_no FROM table_name_13 WHERE points = "24"
What car number had 24 points?
CREATE TABLE table_name_13 (car_no VARCHAR, points VARCHAR)
SELECT SUM(episode) FROM table_name_96 WHERE performer_4 = "chip esten" AND performer_1 = "jim meskimen"
What is the sum of the episodes where chip esten was the 4th performer and jim meskimen was the 1st performer?
CREATE TABLE table_name_96 (episode INTEGER, performer_4 VARCHAR, performer_1 VARCHAR)
SELECT SUM(losses) FROM table_name_6 WHERE conceded = 25 AND wins > 6
How many loses does the team have that conceded 25 and won more than 6 games?
CREATE TABLE table_name_6 (losses INTEGER, conceded VARCHAR, wins VARCHAR)
SELECT total_fat FROM table_name_33 WHERE smoke_point = "°c ()" AND polyunsaturated_fat = "37g"
What is the total fat with a smoke point of °c () and 37g of polyunsaturated fat?
CREATE TABLE table_name_33 (total_fat VARCHAR, smoke_point VARCHAR, polyunsaturated_fat VARCHAR)
SELECT score FROM table_name_7 WHERE tournament = "auckland, new zealand"
What was the Score at the Auckland, New Zealand Tournament?
CREATE TABLE table_name_7 (score VARCHAR, tournament VARCHAR)
SELECT MIN(europa_league) FROM table
Name the least europa league
CREATE TABLE table (europa_league INTEGER)
SELECT karen FROM table_19744915_4 WHERE nicky = "2.5"
Name the karen when nicky is 2.5
CREATE TABLE table_19744915_4 (karen VARCHAR, nicky VARCHAR)
SELECT language FROM table_name_69 WHERE number = "14"
Name the language that has number of 14
CREATE TABLE table_name_69 (language VARCHAR, number VARCHAR)
SELECT stage__winner_ FROM table_name_69 WHERE team_classification = "quick step" AND young_rider_classification = "trent lowe"
What stage (winner) has quick step as the team classification, and trent lowe as the young rider classification?
CREATE TABLE table_name_69 (stage__winner_ VARCHAR, team_classification VARCHAR, young_rider_classification VARCHAR)
SELECT high_rebounds FROM table_name_53 WHERE date = "february 6"
What was the highest number of rebounds on February 6?
CREATE TABLE table_name_53 (high_rebounds VARCHAR, date VARCHAR)
SELECT place FROM table_name_33 WHERE player = "brad faxon"
What place is player Brad Faxon from?
CREATE TABLE table_name_33 (place VARCHAR, player VARCHAR)
SELECT division FROM table_name_23 WHERE team_season = "1987"
Which division were the Brewers a part of in the 1987 season?
CREATE TABLE table_name_23 (division VARCHAR, team_season VARCHAR)
SELECT host_team FROM table_name_75 WHERE stadium = "tampa stadium"
What team hosted at Tampa Stadium?
CREATE TABLE table_name_75 (host_team VARCHAR, stadium VARCHAR)
SELECT score FROM table_13619053_4 WHERE team = "San Antonio"
What was the score against san antonio?
CREATE TABLE table_13619053_4 (score VARCHAR, team VARCHAR)
SELECT SUM(played) FROM table_name_22 WHERE goals_for > 60 AND lost = 8 AND position < 1
What is the total of Played where the Goals For is higher than 60, the Lost is 8, and the Position is less than 1?
CREATE TABLE table_name_22 (played INTEGER, position VARCHAR, goals_for VARCHAR, lost VARCHAR)
SELECT country FROM table_name_29 WHERE rank > 5
What country is ranked higher than 5?
CREATE TABLE table_name_29 (country VARCHAR, rank INTEGER)
SELECT T2.Birth_Date, T2.Birth_Place FROM body_builder AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID ORDER BY T1.Total DESC LIMIT 1
What are the birth date and birth place of the body builder with the highest total points?
CREATE TABLE body_builder (People_ID VARCHAR, Total VARCHAR); CREATE TABLE people (Birth_Date VARCHAR, Birth_Place VARCHAR, People_ID VARCHAR)
SELECT date FROM table_name_96 WHERE week = 13
What was the date of the week 13 game?
CREATE TABLE table_name_96 (date VARCHAR, week VARCHAR)
SELECT SUM(ends) FROM table_name_58 WHERE name = "abidal" AND since > 2007
What is the sum of Ends with a Name of abidal, and has a Since larger than 2007?
CREATE TABLE table_name_58 (ends INTEGER, name VARCHAR, since VARCHAR)
SELECT MIN(apps) FROM table_name_79 WHERE country = "honduras" AND goals < 2 AND team = "club deportivo victoria" AND division > 1
What is the smallest apps in Honduras with less than 2 goals for Club Deportivo Victoria in a division over 1?
CREATE TABLE table_name_79 (apps INTEGER, division VARCHAR, team VARCHAR, country VARCHAR, goals VARCHAR)
SELECT SUM(loss) FROM table_name_18 WHERE avg_g = 89.9
WHAT IS THE LOSS WITH AN AVERAGE OF 89.9?
CREATE TABLE table_name_18 (loss INTEGER, avg_g VARCHAR)
SELECT COUNT(national_titles) FROM table_name_2 WHERE mascot = "doane tigers"
What is the total number of national titles for the team with doane tigers as the mascot?
CREATE TABLE table_name_2 (national_titles VARCHAR, mascot VARCHAR)
SELECT 2012 FROM table_name_9 WHERE tournament = "win %"
what is 2012 when the tournament is win %?
CREATE TABLE table_name_9 (tournament VARCHAR)
SELECT college_junior_club_team FROM table_2850912_8 WHERE player = "Glenn Greenough"
where did glenn greenough come from
CREATE TABLE table_2850912_8 (college_junior_club_team VARCHAR, player VARCHAR)
SELECT MAX(week) FROM table_name_60 WHERE date = "november 12, 1967" AND attendance < 34 OFFSET 761
What was the latest week with a date of November 12, 1967 and less than 34,761 in attendance?
CREATE TABLE table_name_60 (week INTEGER, date VARCHAR, attendance VARCHAR)
SELECT knots_knots AS :_pseudoknot_prediction, _ FROM table_name_65 WHERE name = "tfold"
What is the pseudoknot prediction of the software named tfold?
CREATE TABLE table_name_65 (_ VARCHAR, knots_knots VARCHAR, name VARCHAR)
SELECT MAX(mccain_number) FROM table_20350118_1 WHERE obama_percentage = "50.7%"
How many votes did McCain get in the county where Obama got 50.7% of the votes?
CREATE TABLE table_20350118_1 (mccain_number INTEGER, obama_percentage VARCHAR)
SELECT us_rap FROM table_name_98 WHERE album = "west coast bad boyz, vol. 3: poppin' collars"
What is the U.S. Rap chart number of the album west coast bad boyz, vol. 3: poppin' collars?
CREATE TABLE table_name_98 (us_rap VARCHAR, album VARCHAR)
SELECT authority FROM table_name_41 WHERE name = "tamatea high school"
Which authority has a Name of tamatea high school?
CREATE TABLE table_name_41 (authority VARCHAR, name VARCHAR)
SELECT team_1 FROM table_name_19 WHERE team_2 = "hankook verdes"
Which team 1 had a Team 2 of hankook verdes?
CREATE TABLE table_name_19 (team_1 VARCHAR, team_2 VARCHAR)
SELECT frequency FROM table_name_95 WHERE name = "104.3 business radio"
What is the frequency of 104.3 business radio?
CREATE TABLE table_name_95 (frequency VARCHAR, name VARCHAR)
SELECT SUM(episodes) FROM table_name_29 WHERE romaji_title = "slow dance"
How many Episodes have a Romaji Title of slow dance?
CREATE TABLE table_name_29 (episodes INTEGER, romaji_title VARCHAR)
SELECT COUNT(stroke_count) FROM table_name_57 WHERE radical__variants_ = "生" AND frequency < 22
WHAT IS THE STROKE COUNT WITH RADICAL OF 生, FRQUENCY SMALLER THAN 22?
CREATE TABLE table_name_57 (stroke_count VARCHAR, radical__variants_ VARCHAR, frequency VARCHAR)
SELECT location___state FROM table_name_82 WHERE team = "castrol perkins motorsport" AND winner = "russell ingall"
Castrol Perkins Motorsport and the winner Russell Ingall was in what location/state?
CREATE TABLE table_name_82 (location___state VARCHAR, team VARCHAR, winner VARCHAR)
SELECT date FROM table_name_32 WHERE result = "bye"
When was there a bye result?
CREATE TABLE table_name_32 (date VARCHAR, result VARCHAR)
SELECT COUNT(first_broadcast) FROM table_23575917_7 WHERE lees_team = "Clare Balding and Miranda Hart"
If the lees team is Clare Balding and Miranda Hart, what is the first broadcast total number?
CREATE TABLE table_23575917_7 (first_broadcast VARCHAR, lees_team VARCHAR)
SELECT wind_power__wp_ FROM table_11347578_1 WHERE country = "China"
What is the symbol for Windpower in China?
CREATE TABLE table_11347578_1 (wind_power__wp_ VARCHAR, country VARCHAR)
SELECT part_4 FROM table_name_95 WHERE verb_meaning = "to steal"
what is the part 4 when the verb meaning is to steal?
CREATE TABLE table_name_95 (part_4 VARCHAR, verb_meaning VARCHAR)
SELECT player FROM table_name_12 WHERE score = 73 - 69 - 74 - 71 = 287
Name the player with score of 73-69-74-71=287
CREATE TABLE table_name_12 (player VARCHAR, score VARCHAR)
SELECT team_1 FROM table_name_92 WHERE team_2 = "tikveš"
What is the team 1 with tikveš as team 2?
CREATE TABLE table_name_92 (team_1 VARCHAR, team_2 VARCHAR)
SELECT disaster FROM table_name_39 WHERE location = "ontario" AND deaths = "223"
What is the disaster that was located in Ontario with 223 deaths?
CREATE TABLE table_name_39 (disaster VARCHAR, location VARCHAR, deaths VARCHAR)
SELECT AVG(crowd) FROM table_name_43 WHERE venue = "glenferrie oval"
What was the average crowd size of games held at Glenferrie Oval?
CREATE TABLE table_name_43 (crowd INTEGER, venue VARCHAR)
SELECT ground FROM table_14312471_4 WHERE crowd = 19929
What are the ground where the crowd totals 19929?
CREATE TABLE table_14312471_4 (ground VARCHAR, crowd VARCHAR)
SELECT result FROM table_1342331_11 WHERE first_elected = 1914
What was the result of the election held in 1914?
CREATE TABLE table_1342331_11 (result VARCHAR, first_elected VARCHAR)
SELECT date FROM table_17323092_7 WHERE team = "Minnesota"
On what date did the Team Minnesota play?
CREATE TABLE table_17323092_7 (date VARCHAR, team VARCHAR)
SELECT COUNT(goals_conceded) FROM table_name_75 WHERE points = 32 AND lost > 2 AND goals_scored > 22
How many goals were conceded by teams with 32 points, more than 2 losses and more than 22 goals scored?
CREATE TABLE table_name_75 (goals_conceded VARCHAR, goals_scored VARCHAR, points VARCHAR, lost VARCHAR)
SELECT home_team FROM table_name_38 WHERE away_team = "sheffield united"
Who is the home team when Sheffield United is the away team?
CREATE TABLE table_name_38 (home_team VARCHAR, away_team VARCHAR)
SELECT location__population_ FROM table_262534_2 WHERE institution = "Bluefield College"
What is the location and population of the institution called Bluefield College?
CREATE TABLE table_262534_2 (location__population_ VARCHAR, institution VARCHAR)
SELECT AVG(year) FROM table_name_3 WHERE film = "rango"
What year did the movie Rango come out?
CREATE TABLE table_name_3 (year INTEGER, film VARCHAR)
SELECT production_code FROM table_2226817_9 WHERE written_by = "Stacie Lipp"
What is the production code of the episode directed by Stacie Lipp?
CREATE TABLE table_2226817_9 (production_code VARCHAR, written_by VARCHAR)
SELECT MIN(clubs_remaining) FROM table_29566686_1 WHERE leagues_entering_at_this_round = "Allsvenskan"
What is the maximum number of clubs remaining when the league entering at this round was allsvenskan?
CREATE TABLE table_29566686_1 (clubs_remaining INTEGER, leagues_entering_at_this_round VARCHAR)
SELECT multiplier_1 FROM table_name_25 WHERE frequency = "1800mhz"
What is the multiplier 1 for chips with a frequency of 1800MHz?
CREATE TABLE table_name_25 (multiplier_1 VARCHAR, frequency VARCHAR)
SELECT price_range FROM HOTELS WHERE star_rating_code = "5"
Show the price ranges of hotels with 5 star ratings.
CREATE TABLE HOTELS (price_range VARCHAR, star_rating_code VARCHAR)
SELECT reserved_instruments FROM table_name_19 WHERE conduct_of_litigation = "yes" AND probate_activities = "yes"
What is Reserved Instruments, when Conduct of Litigation is Yes, and when Probate Activities is Yes?
CREATE TABLE table_name_19 (reserved_instruments VARCHAR, conduct_of_litigation VARCHAR, probate_activities VARCHAR)
SELECT MIN(top_5) FROM table_name_66 WHERE wins > 0 AND driver = "frank kimmel" AND top_10 < 14
What is Frank Kimmel's lowest top 5 with more than 0 wins and fewer than 14 top 10s?
CREATE TABLE table_name_66 (top_5 INTEGER, top_10 VARCHAR, wins VARCHAR, driver VARCHAR)
SELECT played FROM table_1676073_12 WHERE points_against = "686"
How many games played for the team with 686 points against?
CREATE TABLE table_1676073_12 (played VARCHAR, points_against VARCHAR)
SELECT record FROM table_name_1 WHERE attendance = "18,084"
What is the record of the game with 18,084 in attendance?
CREATE TABLE table_name_1 (record VARCHAR, attendance VARCHAR)
SELECT to_par FROM table_name_29 WHERE year_s__won = "2001"
For the year won of 2001, what is the To Par?
CREATE TABLE table_name_29 (to_par VARCHAR, year_s__won VARCHAR)
SELECT name FROM table_name_90 WHERE total = 34
Who had a total of 34?
CREATE TABLE table_name_90 (name VARCHAR, total VARCHAR)
SELECT sport FROM table_name_44 WHERE country = "puerto rico" AND year = 2000
Name the sport for puerto rico and year of 2000
CREATE TABLE table_name_44 (sport VARCHAR, country VARCHAR, year VARCHAR)
SELECT semi_finalist__number2 FROM table_name_59 WHERE year = "2007"
Who was the Semi-Finalist #2 in 2007?
CREATE TABLE table_name_59 (semi_finalist__number2 VARCHAR, year VARCHAR)
SELECT SUM(population) FROM table_name_32 WHERE census_ranking = "579 of 5,008"
What is the population of the parish with a census ranking of 579 of 5,008?
CREATE TABLE table_name_32 (population INTEGER, census_ranking VARCHAR)
SELECT gold FROM table_name_48 WHERE silver = "bertil ahlin sweden"
Who won the gold when Bertil Ahlin Sweden won the silver?
CREATE TABLE table_name_48 (gold VARCHAR, silver VARCHAR)
SELECT location FROM table_name_70 WHERE name = "route 66 raceway"
What is the Location for the route 66 raceway?
CREATE TABLE table_name_70 (location VARCHAR, name VARCHAR)
SELECT servedby FROM table_name_1 WHERE local_authority_[a_] = "thurrock" AND station = "ockendon"
Which Servedby has a Local authority [a ] of thurrock, and a Station of ockendon?
CREATE TABLE table_name_1 (servedby VARCHAR, station VARCHAR, local_authority_ VARCHAR, a_ VARCHAR)
SELECT MIN(heat) FROM table_name_51 WHERE nationality = "germany" AND rank < 9 AND name = "mike fenner" AND time < 13.52
What was the lowest heat for Germany with a rank smaller than 9 for Mike Fenner and a time smaller than 13.52?
CREATE TABLE table_name_51 (heat INTEGER, time VARCHAR, name VARCHAR, nationality VARCHAR, rank VARCHAR)
SELECT tdp FROM table_16729930_18 WHERE release_price___usd__ = "$72"
For a release price of $72, what is the TDP of the microprocessor?
CREATE TABLE table_16729930_18 (tdp VARCHAR, release_price___usd__ VARCHAR)
SELECT MIN(lane) FROM table_name_21 WHERE mark = "7.66"
What is the lowest Lane, when Mark is 7.66?
CREATE TABLE table_name_21 (lane INTEGER, mark VARCHAR)
SELECT DISTINCT T2.name FROM undergoes AS T1 JOIN nurse AS T2 ON T1.AssistingNurse = T2.EmployeeID
Find the names of nurses who are nursing an undergoing treatment.
CREATE TABLE undergoes (AssistingNurse VARCHAR); CREATE TABLE nurse (name VARCHAR, EmployeeID VARCHAR)
SELECT nationality FROM table_name_88 WHERE player = "steven anthony"
What nationality is Steven Anthony?
CREATE TABLE table_name_88 (nationality VARCHAR, player VARCHAR)
SELECT score FROM table_name_78 WHERE song = "我等的人会是谁"
What is the Score of 我等的人会是谁?
CREATE TABLE table_name_78 (score VARCHAR, song VARCHAR)
SELECT MIN(losses) FROM table_name_15 WHERE benalla_dfl = "goorambat" AND wins < 13
When Benall DFL is Goorambat with less than 13 wins, what is the least amount of losses?
CREATE TABLE table_name_15 (losses INTEGER, benalla_dfl VARCHAR, wins VARCHAR)
SELECT skip FROM table_name_13 WHERE lead = "angela tuvaeva"
What skip has angela tuvaeva as the lead?
CREATE TABLE table_name_13 (skip VARCHAR, lead VARCHAR)
SELECT result FROM table_name_53 WHERE attendance = "55,353"
What is the Result of the game with an Attendance of 55,353?
CREATE TABLE table_name_53 (result VARCHAR, attendance VARCHAR)
SELECT crew_chief FROM table_name_81 WHERE car_s_ = "chevrolet monte carlo" AND team = "joe gibbs racing" AND primary_sponsor_s_ = "fedex"
Who is the crew chief of team Joe Gibbs Racing, which has a Chevrolet Monte Carlo and Fedex as the primary sponsor?
CREATE TABLE table_name_81 (crew_chief VARCHAR, primary_sponsor_s_ VARCHAR, car_s_ VARCHAR, team VARCHAR)
SELECT country FROM table_name_23 WHERE builder = "karljohansverns verft" AND ship = "brage"
What country was Brage, built by karljohansverns verft, from?
CREATE TABLE table_name_23 (country VARCHAR, builder VARCHAR, ship VARCHAR)
SELECT party FROM table_name_99 WHERE class = 1 AND state = "wisconsin"
What party is class 1 in wisconsin?
CREATE TABLE table_name_99 (party VARCHAR, class VARCHAR, state VARCHAR)
SELECT MAX(rank) FROM table_name_65 WHERE player = "ben crenshaw" AND wins > 14
What is the highest rank for ben crenshaw after winning more than 14 times?
CREATE TABLE table_name_65 (rank INTEGER, player VARCHAR, wins VARCHAR)
SELECT T3.amenity_name FROM dorm AS T1 JOIN has_amenity AS T2 ON T1.dormid = T2.dormid JOIN dorm_amenity AS T3 ON T2.amenid = T3.amenid JOIN lives_in AS T4 ON T4.dormid = T1.dormid JOIN student AS T5 ON T5.stuid = T4.stuid WHERE T5.lname = 'Smith'
Find the name of amenities of the dorm where the student with last name Smith is living in.
CREATE TABLE student (stuid VARCHAR, lname VARCHAR); CREATE TABLE dorm (dormid VARCHAR); CREATE TABLE lives_in (dormid VARCHAR, stuid VARCHAR); CREATE TABLE has_amenity (dormid VARCHAR, amenid VARCHAR); CREATE TABLE dorm_amenity (amenity_name VARCHAR, amenid VARCHAR)
SELECT record FROM table_name_66 WHERE team = "philadelphia"
Which Record has a Team of philadelphia?
CREATE TABLE table_name_66 (record VARCHAR, team VARCHAR)
SELECT T3.Fname, T3.LName, T2.gradepoint FROM ENROLLED_IN AS T1 JOIN GRADECONVERSION AS T2 JOIN STUDENT AS T3 ON T1.Grade = T2.lettergrade AND T1.StuID = T3.StuID
Find the student first and last names and grade points of all enrollments.
CREATE TABLE ENROLLED_IN (Grade VARCHAR, StuID VARCHAR); CREATE TABLE STUDENT (Fname VARCHAR, LName VARCHAR, StuID VARCHAR); CREATE TABLE GRADECONVERSION (gradepoint VARCHAR, lettergrade VARCHAR)
SELECT score FROM table_name_97 WHERE venue = "amblecote"
What score has amblecote as the venue?
CREATE TABLE table_name_97 (score VARCHAR, venue VARCHAR)
SELECT tournament FROM table_name_39 WHERE outcome = "winner" AND opponents = "kerry-anne guse corina morariu"
what is the tournament when the outcome is winner and the opponents is kerry-anne guse corina morariu?
CREATE TABLE table_name_39 (tournament VARCHAR, outcome VARCHAR, opponents VARCHAR)
SELECT COUNT(games) FROM table_name_43 WHERE lost = 42 AND goalsfor > 195
Lost of 42, and a Goalsfor larger than 195 contains how many number of games?
CREATE TABLE table_name_43 (games VARCHAR, lost VARCHAR, goalsfor VARCHAR)
SELECT COUNT(nationality) FROM table_1013129_8 WHERE pick = 193
How many nationalities are the pick 193?
CREATE TABLE table_1013129_8 (nationality VARCHAR, pick VARCHAR)
SELECT SUM(rank) FROM table_name_57 WHERE rider = "andrew neill"
What was Andrew Neill's rank?
CREATE TABLE table_name_57 (rank INTEGER, rider VARCHAR)
SELECT date FROM table_23285805_8 WHERE location_attendance = "Arco Arena 17361"
On which datebis arco arena 17361 the location attendance?
CREATE TABLE table_23285805_8 (date VARCHAR, location_attendance VARCHAR)
SELECT clublocation FROM club WHERE clubname = "Pen and Paper Gaming"
Find the location of the club "Pen and Paper Gaming".
CREATE TABLE club (clublocation VARCHAR, clubname VARCHAR)
SELECT T2.song_name FROM files AS T1 JOIN song AS T2 ON T1.f_id = T2.f_id WHERE T1.duration LIKE "4:%" UNION SELECT song_name FROM song WHERE languages = "english"
List the names of all songs that have 4 minute duration or are in English.
CREATE TABLE files (f_id VARCHAR, duration VARCHAR); CREATE TABLE song (song_name VARCHAR, f_id VARCHAR); CREATE TABLE song (song_name VARCHAR, languages VARCHAR)