question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
WHich Televotes has a Performer of biljana dodeva, and a Draw larger than 10? | CREATE TABLE table_name_59 (televotes INTEGER, performer VARCHAR, draw VARCHAR) | SELECT MIN(televotes) FROM table_name_59 WHERE performer = "biljana dodeva" AND draw > 10 |
What is the lowest number of silver medals with a rank of 4 and total medals greater than 1? | CREATE TABLE table_name_68 (silver INTEGER, rank VARCHAR, total VARCHAR) | SELECT MIN(silver) FROM table_name_68 WHERE rank = 4 AND total > 1 |
What is the local mission that has kingstown as a local location? | CREATE TABLE table_name_18 (Local VARCHAR, local_location VARCHAR) | SELECT Local AS mission FROM table_name_18 WHERE local_location = "kingstown" |
List the method, date and amount of all the payments, in ascending order of date. | CREATE TABLE Payments (Payment_Method_Code VARCHAR, Date_Payment_Made VARCHAR, Amount_Payment VARCHAR) | SELECT Payment_Method_Code, Date_Payment_Made, Amount_Payment FROM Payments ORDER BY Date_Payment_Made |
What record was set on Tue 11/02/75? | CREATE TABLE table_21436373_8 (type_of_record VARCHAR, date_year VARCHAR) | SELECT type_of_record FROM table_21436373_8 WHERE date_year = "Tue 11/02/75" |
How many people have an Altitude (mslm) larger than 302, and an Area (km 2) of 29.2? | CREATE TABLE table_name_41 (population VARCHAR, altitude__mslm_ VARCHAR, area__km_2__ VARCHAR) | SELECT COUNT(population) FROM table_name_41 WHERE altitude__mslm_ > 302 AND area__km_2__ = 29.2 |
What is the date the episode directed by rob bailey aired? | CREATE TABLE table_26914076_3 (original_air_date VARCHAR, directed_by VARCHAR) | SELECT original_air_date FROM table_26914076_3 WHERE directed_by = "Rob Bailey" |
What party did Hale Boggs belong to? | CREATE TABLE table_1341884_20 (party VARCHAR, incumbent VARCHAR) | SELECT party FROM table_1341884_20 WHERE incumbent = "Hale Boggs" |
Which athlete has a height of 1.87 and is from Sweden? | CREATE TABLE table_26454128_4 (athlete VARCHAR, height VARCHAR, country VARCHAR) | SELECT athlete FROM table_26454128_4 WHERE height = "1.87" AND country = "Sweden" |
Which 2012 has a 2007 of 1r, and a 2008 of 1r, and a 2013 of 2r? | CREATE TABLE table_name_75 (Id VARCHAR) | SELECT 2012 FROM table_name_75 WHERE 2007 = "1r" AND 2008 = "1r" AND 2013 = "2r" |
What is the tie no of the game where exeter city was the home team? | CREATE TABLE table_name_36 (tie_no VARCHAR, home_team VARCHAR) | SELECT tie_no FROM table_name_36 WHERE home_team = "exeter city" |
Who were the winners of mens doubles in the 1986/1987 season held? | CREATE TABLE table_12266757_1 (mens_doubles VARCHAR, season VARCHAR) | SELECT mens_doubles FROM table_12266757_1 WHERE season = "1986/1987" |
What is the total grid with laps less than 2? | CREATE TABLE table_name_78 (grid INTEGER, laps INTEGER) | SELECT SUM(grid) FROM table_name_78 WHERE laps < 2 |
Which Entrant had the Bugatti T35B Chassis and the Driver, Heinrich-Joachim Von Morgen? | CREATE TABLE table_name_66 (entrant VARCHAR, chassis VARCHAR, driver VARCHAR) | SELECT entrant FROM table_name_66 WHERE chassis = "bugatti t35b" AND driver = "heinrich-joachim von morgen" |
How many goals were scored in 2004 when the gp/gs was "did not play"? | CREATE TABLE table_name_25 (goals VARCHAR, gp_gs VARCHAR, year VARCHAR) | SELECT goals FROM table_name_25 WHERE gp_gs = "did not play" AND year = "2004" |
Find the average age of members of the club "Hopkins Student Enterprises". | CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE student (age INTEGER, stuid VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR) | SELECT AVG(t3.age) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = "Hopkins Student Enterprises" |
Who was the SS when jim lefebvre was at 2nd, willie davis at CF, and don drysdale was the SP. | CREATE TABLE table_12142298_2 (shortstop VARCHAR, starting_pitcher VARCHAR, second_baseman VARCHAR, centerfielder VARCHAR) | SELECT shortstop FROM table_12142298_2 WHERE second_baseman = "Jim Lefebvre" AND centerfielder = "Willie Davis" AND starting_pitcher = "Don Drysdale" |
What format is catalogue WPCR13504 in? | CREATE TABLE table_name_94 (format VARCHAR, catalogue VARCHAR) | SELECT format FROM table_name_94 WHERE catalogue = "wpcr13504" |
Name the total number of laps with rank of 8 | CREATE TABLE table_name_90 (laps VARCHAR, rank VARCHAR) | SELECT COUNT(laps) FROM table_name_90 WHERE rank = "8" |
What is the result for 1989 that has a 1992 result of 0 / 1? | CREATE TABLE table_name_35 (Id VARCHAR) | SELECT 1989 FROM table_name_35 WHERE 1992 = "0 / 1" |
Name the opponent with record of 38-34-10 | CREATE TABLE table_name_97 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_97 WHERE record = "38-34-10" |
What's the location attendance of the milwaukee team? | CREATE TABLE table_27721131_2 (location_attendance VARCHAR, team VARCHAR) | SELECT location_attendance FROM table_27721131_2 WHERE team = "Milwaukee" |
Find the total population of the districts where the area is bigger than the average city area. | CREATE TABLE district (city_population INTEGER, city_area INTEGER) | SELECT SUM(city_population) FROM district WHERE city_area > (SELECT AVG(city_area) FROM district) |
Which team had a qualifying 2 time of 1:01.093? | CREATE TABLE table_name_11 (team VARCHAR, qual_2 VARCHAR) | SELECT team FROM table_name_11 WHERE qual_2 = "1:01.093" |
What are the lifespans of representatives in descending order of vote percent? | CREATE TABLE election (Representative_ID VARCHAR); CREATE TABLE representative (Lifespan VARCHAR, Representative_ID VARCHAR) | SELECT T2.Lifespan FROM election AS T1 JOIN representative AS T2 ON T1.Representative_ID = T2.Representative_ID ORDER BY Vote_Percent DESC |
Name the winner for jason byrne | CREATE TABLE table_19930660_1 (winner VARCHAR, marcus_guest VARCHAR) | SELECT winner FROM table_19930660_1 WHERE marcus_guest = "Jason Byrne" |
Who was the constitutional ticket when william karlin was the socialist ticket? | CREATE TABLE table_name_95 (constitutional_ticket VARCHAR, socialist_ticket VARCHAR) | SELECT constitutional_ticket FROM table_name_95 WHERE socialist_ticket = "william karlin" |
What is the rank for the city of sewri? | CREATE TABLE table_name_46 (rank VARCHAR, city VARCHAR) | SELECT COUNT(rank) FROM table_name_46 WHERE city = "sewri" |
Name the home for detroit visitor and date of february 29 | CREATE TABLE table_name_25 (home VARCHAR, visitor VARCHAR, date VARCHAR) | SELECT home FROM table_name_25 WHERE visitor = "detroit" AND date = "february 29" |
What is the pick# for the medicine hat tigers (wchl)? | CREATE TABLE table_1473672_2 (pick__number INTEGER, college_junior_club_team VARCHAR) | SELECT MIN(pick__number) FROM table_1473672_2 WHERE college_junior_club_team = "Medicine Hat Tigers (WCHL)" |
From what school was the linebacker that had a pick less than 245 and was drafted in round 6? | CREATE TABLE table_name_50 (school VARCHAR, round VARCHAR, position VARCHAR, pick VARCHAR) | SELECT school FROM table_name_50 WHERE position = "linebacker" AND pick < 245 AND round = 6 |
List the official name and status of the city with the largest population. | CREATE TABLE city (Official_Name VARCHAR, Status VARCHAR, Population VARCHAR) | SELECT Official_Name, Status FROM city ORDER BY Population DESC LIMIT 1 |
Who constructed the car that had a grid of 6? | CREATE TABLE table_name_29 (constructor VARCHAR, grid VARCHAR) | SELECT constructor FROM table_name_29 WHERE grid = "6" |
What week of the season was December 13? | CREATE TABLE table_name_3 (week VARCHAR, date VARCHAR) | SELECT week FROM table_name_3 WHERE date = "december 13" |
What is the name of the player with position of G and the team was the Washington Capitols? | CREATE TABLE table_name_58 (player VARCHAR, position VARCHAR, team VARCHAR) | SELECT player FROM table_name_58 WHERE position = "g" AND team = "washington capitols" |
How many Dates have a Builder of laconia car company, and a Number of 63-68? | CREATE TABLE table_name_8 (date VARCHAR, builder VARCHAR, number VARCHAR) | SELECT COUNT(date) FROM table_name_8 WHERE builder = "laconia car company" AND number = "63-68" |
What is Country, when City is "Zamboanga"? | CREATE TABLE table_name_82 (country VARCHAR, city VARCHAR) | SELECT country FROM table_name_82 WHERE city = "zamboanga" |
What bike has 26 as the grid? | CREATE TABLE table_name_20 (bike VARCHAR, grid VARCHAR) | SELECT bike FROM table_name_20 WHERE grid = 26 |
Name the round 1 +2A points for horse of poncorde | CREATE TABLE table_name_61 (round_1_ VARCHAR, _2a_points VARCHAR, horse VARCHAR) | SELECT round_1_ + _2a_points FROM table_name_61 WHERE horse = "poncorde" |
What was the Forbers rank (all companies) in 2012 for cenovus energy? | CREATE TABLE table_23950611_2 (rank__all__2012 VARCHAR, name VARCHAR) | SELECT rank__all__2012 FROM table_23950611_2 WHERE name = "Cenovus Energy" |
When the incumbent was William Elliott, what was the result? | CREATE TABLE table_name_75 (result VARCHAR, incumbent VARCHAR) | SELECT result FROM table_name_75 WHERE incumbent = "william elliott" |
What was the nationality of five-eighth player Darren Lockyer? | CREATE TABLE table_name_96 (nationality VARCHAR, player VARCHAR, position VARCHAR) | SELECT nationality FROM table_name_96 WHERE player = "darren lockyer" AND position = "five-eighth" |
Who are the friends of Bob? | CREATE TABLE PersonFriend (friend VARCHAR, name VARCHAR); CREATE TABLE Person (name VARCHAR) | SELECT T2.friend FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T1.name = 'Bob' |
Name the record for april 22 | CREATE TABLE table_name_52 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_52 WHERE date = "april 22" |
Which HAAT has a Channels TV / RF of 31 (psip) 44 (uhf) | CREATE TABLE table_name_17 (haat VARCHAR, channels_tv___rf VARCHAR) | SELECT haat FROM table_name_17 WHERE channels_tv___rf = "31 (psip) 44 (uhf)" |
What is the largest lost stat when the difference is - 19? | CREATE TABLE table_name_36 (lost INTEGER, difference VARCHAR) | SELECT MAX(lost) FROM table_name_36 WHERE difference = "- 19" |
What are the names of enzymes who does not produce 'Heme'? | CREATE TABLE enzyme (name VARCHAR, product VARCHAR) | SELECT name FROM enzyme WHERE product <> 'Heme' |
What is the Copa Libertadores 1999 result for team vasco, which made the group stage in the Copa Mercosur 1999? | CREATE TABLE table_name_62 (copa_libertadores_1999 VARCHAR, copa_mercosur_1999 VARCHAR, team VARCHAR) | SELECT copa_libertadores_1999 FROM table_name_62 WHERE copa_mercosur_1999 = "group stage" AND team = "vasco" |
Name the number of nationality is tom hilde | CREATE TABLE table_14407512_23 (nationality VARCHAR, name VARCHAR) | SELECT COUNT(nationality) FROM table_14407512_23 WHERE name = "Tom Hilde" |
What is the listed Tonnage that has U-boats destroyed (KuK) of 2 and Ships sunk (Pola) of (not recorded)? | CREATE TABLE table_name_54 (tonnage VARCHAR, u_boats_destroyed__kuk_ VARCHAR, ships_sunk__pola_ VARCHAR) | SELECT tonnage FROM table_name_54 WHERE u_boats_destroyed__kuk_ = "2" AND ships_sunk__pola_ = "(not recorded)" |
After 2008, which Group has the Result, nominated, and the Award, Best Lead Actor in a Television Drama? | CREATE TABLE table_name_54 (group VARCHAR, award VARCHAR, result VARCHAR, year VARCHAR) | SELECT group FROM table_name_54 WHERE result = "nominated" AND year > 2008 AND award = "best lead actor in a television drama" |
When Ilie Năstase beat runner-up Peter Fleming what year was it? | CREATE TABLE table_name_56 (year VARCHAR, champion VARCHAR, runner_up VARCHAR) | SELECT COUNT(year) FROM table_name_56 WHERE champion = "ilie năstase" AND runner_up = "peter fleming" |
When @ new orleans is the team who has the highest amount of rebounds? | CREATE TABLE table_17288825_6 (high_rebounds VARCHAR, team VARCHAR) | SELECT high_rebounds FROM table_17288825_6 WHERE team = "@ New Orleans" |
Who was the away captain at Waca Ground? | CREATE TABLE table_name_60 (away_captain VARCHAR, venue VARCHAR) | SELECT away_captain FROM table_name_60 WHERE venue = "waca ground" |
Which area has Years of 1–8, and a Name of broomfield school? | CREATE TABLE table_name_9 (area VARCHAR, years VARCHAR, name VARCHAR) | SELECT area FROM table_name_9 WHERE years = "1–8" AND name = "broomfield school" |
Who were the opponents when there was an attendance of 48,165? | CREATE TABLE table_name_1 (opponent_number VARCHAR, attendance VARCHAR) | SELECT opponent_number FROM table_name_1 WHERE attendance = "48,165" |
Name the # for youtube | CREATE TABLE table_15781170_2 (_number VARCHAR, poll_winner VARCHAR) | SELECT _number FROM table_15781170_2 WHERE poll_winner = "YouTube" |
Who was the owner of the trainer Steve Klesaris? | CREATE TABLE table_name_80 (owner VARCHAR, trainer VARCHAR) | SELECT owner FROM table_name_80 WHERE trainer = "steve klesaris" |
Who were all of the opponents in 1984? | CREATE TABLE table_1399994_5 (opponents VARCHAR, year VARCHAR) | SELECT opponents FROM table_1399994_5 WHERE year = "1984" |
Find number of pets owned by students who are older than 20. | CREATE TABLE student (stuid VARCHAR, age INTEGER); CREATE TABLE has_pet (stuid VARCHAR) | SELECT COUNT(*) FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid WHERE T1.age > 20 |
What round had a record of 4-1? | CREATE TABLE table_name_17 (round VARCHAR, record VARCHAR) | SELECT round FROM table_name_17 WHERE record = "4-1" |
What is the mean number of games for pablo prigioni when there are more than 14 assists? | CREATE TABLE table_name_88 (games INTEGER, name VARCHAR, assists VARCHAR) | SELECT AVG(games) FROM table_name_88 WHERE name = "pablo prigioni" AND assists > 14 |
How many years were the events won by KCLMS less than 7? | CREATE TABLE table_name_8 (year VARCHAR, events_won_by_kclMS INTEGER) | SELECT COUNT(year) FROM table_name_8 WHERE events_won_by_kclMS < 7 |
Name the winner for 5 june | CREATE TABLE table_name_80 (winner VARCHAR, date VARCHAR) | SELECT winner FROM table_name_80 WHERE date = "5 june" |
On episodes where guest 1 is Jim White, who was guest 3? | CREATE TABLE table_20466963_9 (guest_3 VARCHAR, guest_1 VARCHAR) | SELECT guest_3 FROM table_20466963_9 WHERE guest_1 = "Jim White" |
Where in Sweden is the home of the Swedish team? | CREATE TABLE table_name_14 (home VARCHAR, country VARCHAR) | SELECT home FROM table_name_14 WHERE country = "sweden" |
What is the game number against the team Boston? | CREATE TABLE table_name_3 (game VARCHAR, team VARCHAR) | SELECT COUNT(game) FROM table_name_3 WHERE team = "boston" |
Which away team played at Kardinia Park? | CREATE TABLE table_name_35 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_35 WHERE venue = "kardinia park" |
What circuit saw Cabin Racing as the winning team? | CREATE TABLE table_name_41 (circuit VARCHAR, winning_team VARCHAR) | SELECT circuit FROM table_name_41 WHERE winning_team = "cabin racing" |
How many games were on May 20? | CREATE TABLE table_12125069_2 (attendance VARCHAR, date VARCHAR) | SELECT COUNT(attendance) FROM table_12125069_2 WHERE date = "May 20" |
Find the names of the top 3 departments that provide the largest amount of courses? | CREATE TABLE course (dept_name VARCHAR) | SELECT dept_name FROM course GROUP BY dept_name ORDER BY COUNT(*) DESC LIMIT 3 |
Tell me the bore and stroke for Engine of 351-2v cleveland v8 | CREATE TABLE table_name_9 (bore_ VARCHAR, _stroke VARCHAR, engine VARCHAR) | SELECT bore_ & _stroke FROM table_name_9 WHERE engine = "351-2v cleveland v8" |
What is the total number of unique official languages spoken in the countries that are founded before 1930? | CREATE TABLE country (Code VARCHAR); CREATE TABLE countrylanguage (Language VARCHAR, CountryCode VARCHAR, IsOfficial VARCHAR) | SELECT COUNT(DISTINCT T2.Language) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE IndepYear < 1930 AND T2.IsOfficial = "T" |
What is W/m², when η (%) is greater than 16.5, and when Technology is MJ? | CREATE TABLE table_name_60 (w_m² VARCHAR, η___percentage_ VARCHAR, technology VARCHAR) | SELECT w_m² FROM table_name_60 WHERE η___percentage_ > 16.5 AND technology = "mj" |
Show the names of the buildings that have more than one company offices. | CREATE TABLE buildings (name VARCHAR, id VARCHAR); CREATE TABLE Companies (id VARCHAR); CREATE TABLE Office_locations (building_id VARCHAR, company_id VARCHAR) | SELECT T2.name FROM Office_locations AS T1 JOIN buildings AS T2 ON T1.building_id = T2.id JOIN Companies AS T3 ON T1.company_id = T3.id GROUP BY T1.building_id HAVING COUNT(*) > 1 |
What is the name of the episode with the production code of 06-00-218? | CREATE TABLE table_1876825_3 (title VARCHAR, production_code VARCHAR) | SELECT title FROM table_1876825_3 WHERE production_code = "06-00-218" |
Which player from England finished in T41? | CREATE TABLE table_name_43 (player VARCHAR, finish VARCHAR, country VARCHAR) | SELECT player FROM table_name_43 WHERE finish = "t41" AND country = "england" |
Name the sum of quantity for before 2011 model slf-230 | CREATE TABLE table_name_60 (quantity INTEGER, year VARCHAR, model VARCHAR) | SELECT SUM(quantity) FROM table_name_60 WHERE year < 2011 AND model = "slf-230" |
How many people on average attended when Eastwood Town was the away team, and the tie number was less than 8? | CREATE TABLE table_name_76 (attendance INTEGER, tie_no VARCHAR, away_team VARCHAR) | SELECT AVG(attendance) FROM table_name_76 WHERE tie_no < 8 AND away_team = "eastwood town" |
What is the record of the game with Mason as the decision and Nashville as the home team? | CREATE TABLE table_name_45 (record VARCHAR, decision VARCHAR, home VARCHAR) | SELECT record FROM table_name_45 WHERE decision = "mason" AND home = "nashville" |
Who was the opponent in the match that lasted 4:17? | CREATE TABLE table_name_58 (opponent VARCHAR, time VARCHAR) | SELECT opponent FROM table_name_58 WHERE time = "4:17" |
What is the sum of Silver, when Total is less than 1? | CREATE TABLE table_name_84 (silver INTEGER, total INTEGER) | SELECT SUM(silver) FROM table_name_84 WHERE total < 1 |
What is the latest year that 6th, Heartland is regular season? | CREATE TABLE table_1241987_1 (year INTEGER, regular_season VARCHAR) | SELECT MAX(year) FROM table_1241987_1 WHERE regular_season = "6th, Heartland" |
In what Season is Necaxa an Opponent? | CREATE TABLE table_name_96 (season VARCHAR, opponent VARCHAR) | SELECT season FROM table_name_96 WHERE opponent = "necaxa" |
Which kickoff had an attendance of 58,120? | CREATE TABLE table_name_9 (kickoff_ VARCHAR, a_ VARCHAR, attendance VARCHAR) | SELECT kickoff_[a_] FROM table_name_9 WHERE attendance = "58,120" |
What is the lowest goals against value for a team with 83 points and a difference over 50? | CREATE TABLE table_name_31 (goals_against INTEGER, points VARCHAR, goal_difference VARCHAR) | SELECT MIN(goals_against) FROM table_name_31 WHERE points = 83 AND goal_difference > 50 |
WHO IS THE PLAYER(S) ON THE ROSTER FROM SCHOOL/CLUB TEAM ARIZONA? | CREATE TABLE table_15621965_18 (player VARCHAR, school_club_team VARCHAR) | SELECT player FROM table_15621965_18 WHERE school_club_team = "Arizona" |
What team was the opponent when the result was l 0-27? | CREATE TABLE table_name_21 (opponent VARCHAR, result VARCHAR) | SELECT opponent FROM table_name_21 WHERE result = "l 0-27" |
What is the Rank of the Rowers with FA as Notes? | CREATE TABLE table_name_29 (rank INTEGER, notes VARCHAR) | SELECT AVG(rank) FROM table_name_29 WHERE notes = "fa" |
Show the date of the tallest perpetrator. | CREATE TABLE perpetrator (Date VARCHAR, People_ID VARCHAR); CREATE TABLE people (People_ID VARCHAR, Height VARCHAR) | SELECT T2.Date FROM people AS T1 JOIN perpetrator AS T2 ON T1.People_ID = T2.People_ID ORDER BY T1.Height DESC LIMIT 1 |
How many rebounds per game did he have at the 2003 eurobasket? | CREATE TABLE table_2761641_1 (rebounds_per_game VARCHAR, tournament VARCHAR) | SELECT rebounds_per_game FROM table_2761641_1 WHERE tournament = "2003 EuroBasket" |
Which position has L bats and Anderson as a surname? | CREATE TABLE table_name_14 (position VARCHAR, bats VARCHAR, surname VARCHAR) | SELECT position FROM table_name_14 WHERE bats = "l" AND surname = "anderson" |
If -750m is 46.436, what is the name of the cyclist? | CREATE TABLE table_1912276_2 (name VARCHAR, __750m VARCHAR) | SELECT name FROM table_1912276_2 WHERE __750m = "46.436" |
How many matches have 0 as the lost? | CREATE TABLE table_name_32 (match VARCHAR, lost VARCHAR) | SELECT COUNT(match) FROM table_name_32 WHERE lost = 0 |
Which school has the smallest amount of professors? | CREATE TABLE department (school_code VARCHAR, dept_code VARCHAR); CREATE TABLE professor (dept_code VARCHAR) | SELECT T1.school_code FROM department AS T1 JOIN professor AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.school_code ORDER BY COUNT(*) LIMIT 1 |
What was the result when the attendance was 78,793? | CREATE TABLE table_name_53 (result VARCHAR, attendance VARCHAR) | SELECT result FROM table_name_53 WHERE attendance = "78,793" |
on week 16, what was the lowest attendance? | CREATE TABLE table_name_34 (attendance INTEGER, week VARCHAR) | SELECT MIN(attendance) FROM table_name_34 WHERE week = 16 |
Show the name, open date, and organizer for all churches. | CREATE TABLE Church (name VARCHAR, open_date VARCHAR, organized_by VARCHAR) | SELECT name, open_date, organized_by FROM Church |
What is the location of the 200m backstroke? | CREATE TABLE table_name_75 (location VARCHAR, event VARCHAR) | SELECT location FROM table_name_75 WHERE event = "200m backstroke" |
How many draws did Durham have? | CREATE TABLE table_name_72 (draws VARCHAR, team VARCHAR) | SELECT draws FROM table_name_72 WHERE team = "durham" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.