question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
What were the high rebounds on April 4? | CREATE TABLE table_22879323_10 (high_rebounds VARCHAR, date VARCHAR) | SELECT high_rebounds FROM table_22879323_10 WHERE date = "April 4" |
What is the name when born is december 30, 1957 detroit, mi? | CREATE TABLE table_1198175_1 (name VARCHAR, born VARCHAR) | SELECT name FROM table_1198175_1 WHERE born = "December 30, 1957 Detroit, MI" |
Which father had william iv as a husband? | CREATE TABLE table_name_98 (father VARCHAR, husband VARCHAR) | SELECT father FROM table_name_98 WHERE husband = "william iv" |
List the minimum impressions for sammy traoré | CREATE TABLE table_24565004_21 (appearances¹ INTEGER, name VARCHAR) | SELECT MIN(appearances¹) FROM table_24565004_21 WHERE name = "Sammy Traoré" |
What's the nickname of the students of the school that joined the Conference in 2010? | CREATE TABLE table_1973842_2 (nickname VARCHAR, joined VARCHAR) | SELECT nickname FROM table_1973842_2 WHERE joined = 2010 |
What is the lowest number of appearances a player had | CREATE TABLE table_24565004_7 (appearances¹ INTEGER) | SELECT MIN(appearances¹) FROM table_24565004_7 |
What was the result of the game after week 3 against the New York Giants? | CREATE TABLE table_name_94 (result VARCHAR, week VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_94 WHERE week > 3 AND opponent = "new york giants" |
Show the teams that have both wrestlers eliminated by "Orton" and wrestlers eliminated by "Benjamin". | CREATE TABLE Elimination (Team VARCHAR, Eliminated_By VARCHAR) | SELECT Team FROM Elimination WHERE Eliminated_By = "Orton" INTERSECT SELECT Team FROM Elimination WHERE Eliminated_By = "Benjamin" |
What's the average amount of ties had when a team wins 6 and it's past the 2004 season? | CREATE TABLE table_name_55 (ties INTEGER, wins VARCHAR, season VARCHAR) | SELECT AVG(ties) FROM table_name_55 WHERE wins = 6 AND season > 2004 |
Which game site hosted a match on April 10, 2004? | CREATE TABLE table_name_87 (game_site VARCHAR, date VARCHAR) | SELECT game_site FROM table_name_87 WHERE date = "april 10, 2004" |
What percentage of the population is below 50% of the median income in the region where 10.4% of the population earns below 40% of the median income? | CREATE TABLE table_25042332_16 (below_50_percentage_of_median_income VARCHAR, below_40_percentage_of_median_income VARCHAR) | SELECT COUNT(below_50_percentage_of_median_income) FROM table_25042332_16 WHERE below_40_percentage_of_median_income = "10.4%" |
Where is the cunningham hill infant school located? | CREATE TABLE table_28523_2 (location VARCHAR, school VARCHAR) | SELECT location FROM table_28523_2 WHERE school = "Cunningham Hill Infant school" |
Name the ends lost for canada | CREATE TABLE table_26745426_2 (Ends VARCHAR, country VARCHAR, Canada VARCHAR) | SELECT Ends AS lost FROM table_26745426_2 WHERE country = Canada |
Who was the away team with a tie of 14? | CREATE TABLE table_name_4 (away_team VARCHAR, tie_no VARCHAR) | SELECT away_team FROM table_name_4 WHERE tie_no = "14" |
Who is the owner with a call sign of cjgx? | CREATE TABLE table_name_5 (owner VARCHAR, call_sign VARCHAR) | SELECT owner FROM table_name_5 WHERE call_sign = "cjgx" |
What was the score on February 8, 1992? | CREATE TABLE table_20745706_1 (score VARCHAR, date VARCHAR) | SELECT score FROM table_20745706_1 WHERE date = "February 8, 1992" |
What label is in download format in the United States? | CREATE TABLE table_name_42 (label VARCHAR, region VARCHAR, format VARCHAR) | SELECT label FROM table_name_42 WHERE region = "united states" AND format = "download" |
What away team played against Footscray as the home team? | CREATE TABLE table_name_50 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_50 WHERE home_team = "footscray" |
Who was Bob Bryan's partner in the Championship where the result is US Open (2)? | CREATE TABLE table_29163303_2 (partner VARCHAR, championship VARCHAR) | SELECT partner FROM table_29163303_2 WHERE championship = "US Open (2)" |
What team visited the Cleveland Browns Stadium? | CREATE TABLE table_name_22 (visiting_team VARCHAR, stadium VARCHAR) | SELECT visiting_team FROM table_name_22 WHERE stadium = "cleveland browns stadium" |
What is the low score for the jaguar r3 chasis? | CREATE TABLE table_name_90 (points INTEGER, chassis VARCHAR) | SELECT MIN(points) FROM table_name_90 WHERE chassis = "jaguar r3" |
Who was the Away team that played at Carlton on 11 June 1966? | CREATE TABLE table_name_79 (away_team VARCHAR, date VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_79 WHERE date = "11 june 1966" AND home_team = "carlton" |
What is the title of the episode with the production code 3x5362? | CREATE TABLE table_25997153_1 (title VARCHAR, production_code VARCHAR) | SELECT title FROM table_25997153_1 WHERE production_code = "3X5362" |
What is the lowest overs of the Chennai Super Kings when the Economy Rate is less than 5.92 with a Best Bowling number of 2/17? | CREATE TABLE table_name_29 (overs INTEGER, economy_rate VARCHAR, team VARCHAR, best_bowling VARCHAR) | SELECT MIN(overs) FROM table_name_29 WHERE team = "chennai super kings" AND best_bowling = "2/17" AND economy_rate < 5.92 |
What was the score when the Celtics played Washington at home? | CREATE TABLE table_27722408_11 (score VARCHAR, team VARCHAR) | SELECT score FROM table_27722408_11 WHERE team = "Washington" |
With the Type is game of friendly and the City Belgrade and November 2 as the Date what were the Results¹? | CREATE TABLE table_name_82 (results¹ VARCHAR, date VARCHAR, type_of_game VARCHAR, city VARCHAR) | SELECT results¹ FROM table_name_82 WHERE type_of_game = "friendly" AND city = "belgrade" AND date = "november 2" |
How many time is the population density (per km²) is 2.5? | CREATE TABLE table_26007767_1 (localities VARCHAR, population_density__per_km²_ VARCHAR) | SELECT COUNT(localities) FROM table_26007767_1 WHERE population_density__per_km²_ = "2.5" |
In the game where the Hornets were the home team and Clippers the visiting team, what is the score? | CREATE TABLE table_name_9 (score VARCHAR, home VARCHAR, visitor VARCHAR) | SELECT score FROM table_name_9 WHERE home = "hornets" AND visitor = "clippers" |
When was incumbent John Thomas Wilson first elected? | CREATE TABLE table_1434788_5 (first_elected VARCHAR, incumbent VARCHAR) | SELECT first_elected FROM table_1434788_5 WHERE incumbent = "John Thomas Wilson" |
What is the match report from the game played on 28 february 2009? | CREATE TABLE table_name_23 (match_report VARCHAR, date VARCHAR) | SELECT match_report FROM table_name_23 WHERE date = "28 february 2009" |
What is Venue, when Balls is "148"? | CREATE TABLE table_name_22 (venue VARCHAR, balls VARCHAR) | SELECT venue FROM table_name_22 WHERE balls = 148 |
If the ansi code is 1036632, what is the name of the township? | CREATE TABLE table_18600760_7 (township VARCHAR, ansi_code VARCHAR) | SELECT township FROM table_18600760_7 WHERE ansi_code = 1036632 |
How many Picks have a Position of defensive end, and an Overall smaller than 33? | CREATE TABLE table_name_22 (pick__number VARCHAR, position VARCHAR, overall VARCHAR) | SELECT COUNT(pick__number) FROM table_name_22 WHERE position = "defensive end" AND overall < 33 |
When the year was 1992, what were the points won? | CREATE TABLE table_1628607_5 (points_won VARCHAR, year VARCHAR) | SELECT points_won FROM table_1628607_5 WHERE year = "1992" |
How many outcomes were there when the opponent was Aleksandra Wozniak? | CREATE TABLE table_18183850_12 (outcome VARCHAR, opponent VARCHAR) | SELECT COUNT(outcome) FROM table_18183850_12 WHERE opponent = "Aleksandra Wozniak" |
What is the 2nd leg of team 1 Dolphins? | CREATE TABLE table_name_99 (team_1 VARCHAR) | SELECT 2 AS nd_leg FROM table_name_99 WHERE team_1 = "dolphins" |
How many silvers have a gold greater than 2, a bronze less than 35, china as the nation, with a total greater than 26? | CREATE TABLE table_name_43 (silver VARCHAR, total VARCHAR, nation VARCHAR, gold VARCHAR, bronze VARCHAR) | SELECT COUNT(silver) FROM table_name_43 WHERE gold > 2 AND bronze < 35 AND nation = "china" AND total > 26 |
what is the minimum points with highest position being 1 | CREATE TABLE table_13789248_2 (points INTEGER, highest_position VARCHAR) | SELECT MIN(points) FROM table_13789248_2 WHERE highest_position = 1 |
Find the average age of students living in each dorm and the name of dorm. | CREATE TABLE dorm (dorm_name VARCHAR, dormid VARCHAR); CREATE TABLE student (age INTEGER, stuid VARCHAR); CREATE TABLE lives_in (stuid VARCHAR, dormid VARCHAR) | SELECT AVG(T1.age), T3.dorm_name FROM student AS T1 JOIN lives_in AS T2 ON T1.stuid = T2.stuid JOIN dorm AS T3 ON T3.dormid = T2.dormid GROUP BY T3.dorm_name |
What was the winning score when Steve Stricker was runner-up? | CREATE TABLE table_name_1 (winning_score VARCHAR, runner_s__up VARCHAR) | SELECT winning_score FROM table_name_1 WHERE runner_s__up = "steve stricker" |
How many high assists did the Lakers have? | CREATE TABLE table_name_84 (high_assists VARCHAR, team VARCHAR) | SELECT high_assists FROM table_name_84 WHERE team = "lakers" |
how many colombia in bangladesh is serbian | CREATE TABLE table_24807774_1 (colombian VARCHAR, bangladeshi VARCHAR) | SELECT colombian FROM table_24807774_1 WHERE bangladeshi = "Serbian" |
what's the extroverted, relationship-oriented where date is c. 1928 | CREATE TABLE table_11256021_1 (extroverted VARCHAR, _relationship_oriented VARCHAR, date VARCHAR) | SELECT extroverted, _relationship_oriented FROM table_11256021_1 WHERE date = "c. 1928" |
What is the highest number of successful launches associated with over 1 launch and under 0 fails? | CREATE TABLE table_name_36 (successes INTEGER, launches VARCHAR, failures VARCHAR) | SELECT MAX(successes) FROM table_name_36 WHERE launches > 1 AND failures < 0 |
Name the termination of mission for appointed by of franklin pierce | CREATE TABLE table_name_76 (termination_of_mission VARCHAR, appointed_by VARCHAR) | SELECT termination_of_mission FROM table_name_76 WHERE appointed_by = "franklin pierce" |
What is the sum of bronzes for teams with more than 0 silver and a total under 1? | CREATE TABLE table_name_22 (bronze INTEGER, silver VARCHAR, total VARCHAR) | SELECT SUM(bronze) FROM table_name_22 WHERE silver > 0 AND total < 1 |
What venue has an against over 14, an opposing team of scotland, and a status of five nations? | CREATE TABLE table_name_16 (venue VARCHAR, status VARCHAR, against VARCHAR, opposing_teams VARCHAR) | SELECT venue FROM table_name_16 WHERE against > 14 AND opposing_teams = "scotland" AND status = "five nations" |
What was the total rating that had a score higher than 7 and a b score smaller than 8.65? | CREATE TABLE table_name_87 (total INTEGER, a_score VARCHAR, b_score VARCHAR) | SELECT SUM(total) FROM table_name_87 WHERE a_score > 7 AND b_score < 8.65 |
Name the number of number in season for 26 | CREATE TABLE table_22347090_5 (no_in_season VARCHAR, no_in_series VARCHAR) | SELECT COUNT(no_in_season) FROM table_22347090_5 WHERE no_in_series = 26 |
Which Overall has a Round smaller than 2? | CREATE TABLE table_name_65 (overall VARCHAR, round INTEGER) | SELECT overall FROM table_name_65 WHERE round < 2 |
Constructor with total time of 2:45.416 | CREATE TABLE table_name_72 (constructor VARCHAR, q1 VARCHAR, q2_time VARCHAR) | SELECT constructor FROM table_name_72 WHERE q1 + q2_time = "2:45.416" |
What college did Aaron Slegers attend? | CREATE TABLE table_20589703_2 (college VARCHAR, player VARCHAR) | SELECT college FROM table_20589703_2 WHERE player = "Aaron Slegers" |
what is the value for minimum total wins | CREATE TABLE table_1458666_4 (total_wins INTEGER) | SELECT MIN(total_wins) FROM table_1458666_4 |
When the Venue was Punt Road Oval, who was the Home Team? | CREATE TABLE table_name_47 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_47 WHERE venue = "punt road oval" |
What is every episode number for the series number 3? | CREATE TABLE table_27208311_1 (episode_no_episode_no_refers_to_the_episodes_number_in_the_overall_series VARCHAR, _whereas_series_no_refers_to_the_episodes_number_in_this_particular_series VARCHAR, series_no VARCHAR) | SELECT episode_no_episode_no_refers_to_the_episodes_number_in_the_overall_series, _whereas_series_no_refers_to_the_episodes_number_in_this_particular_series FROM table_27208311_1 WHERE series_no = 3 |
When did the web accelerator 'CACHEbox' and browser 'Internet Explorer' become compatible? | CREATE TABLE accelerator_compatible_browser (compatible_since_year VARCHAR, browser_id VARCHAR, accelerator_id VARCHAR); CREATE TABLE browser (id VARCHAR, name VARCHAR); CREATE TABLE web_client_accelerator (id VARCHAR, name VARCHAR) | SELECT T1.compatible_since_year FROM accelerator_compatible_browser AS T1 JOIN browser AS T2 ON T1.browser_id = T2.id JOIN web_client_accelerator AS T3 ON T1.accelerator_id = T3.id WHERE T3.name = 'CACHEbox' AND T2.name = 'Internet Explorer' |
When is the earliest year in milan that guillermo vilas was champion? | CREATE TABLE table_name_43 (year INTEGER, location VARCHAR, champion VARCHAR) | SELECT MIN(year) FROM table_name_43 WHERE location = "milan" AND champion = "guillermo vilas" |
Who are all the major users of the Saturn Machine Pistol? | CREATE TABLE table_29474407_11 (major_users VARCHAR, name__designation VARCHAR) | SELECT major_users FROM table_29474407_11 WHERE name__designation = "Saturn machine pistol" |
What is Award, when Result is "Nominated", and when Film is "Sankranthi"? | CREATE TABLE table_name_66 (award VARCHAR, result VARCHAR, film VARCHAR) | SELECT award FROM table_name_66 WHERE result = "nominated" AND film = "sankranthi" |
How much in total does customer with first name as Carole and last name as Bernhard paid? | CREATE TABLE Customers (customer_id VARCHAR, first_name VARCHAR, last_name VARCHAR); CREATE TABLE Customer_Payments (amount_payment INTEGER, customer_id VARCHAR) | SELECT SUM(T1.amount_payment) FROM Customer_Payments AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.first_name = "Carole" AND T2.last_name = "Bernhard" |
What is the score of the game with a tie no of 6? | CREATE TABLE table_name_21 (score VARCHAR, tie_no VARCHAR) | SELECT score FROM table_name_21 WHERE tie_no = "6" |
In what year were laps less than 64 and the finish at 25? | CREATE TABLE table_name_59 (year VARCHAR, laps VARCHAR, finish VARCHAR) | SELECT year FROM table_name_59 WHERE laps < 64 AND finish = "25" |
Which Surface has Semifinalists of wally masur malivai washington? | CREATE TABLE table_name_92 (surface VARCHAR, semifinalists VARCHAR) | SELECT surface FROM table_name_92 WHERE semifinalists = "wally masur malivai washington" |
how many high assbeingts with score being l 90–98 (ot) | CREATE TABLE table_13557843_7 (high_assists VARCHAR, score VARCHAR) | SELECT COUNT(high_assists) FROM table_13557843_7 WHERE score = "L 90–98 (OT)" |
What is 2000, when 1996 is "A", when 1997 is "A", and when 2007 is "A"? | CREATE TABLE table_name_30 (Id VARCHAR) | SELECT 2000 FROM table_name_30 WHERE 1996 = "a" AND 1997 = "a" AND 2007 = "a" |
What is the 2007–08 when the event was autumn gold? | CREATE TABLE table_name_32 (event VARCHAR) | SELECT 2007 AS _08 FROM table_name_32 WHERE event = "autumn gold" |
How many times is the shot volume (cm3) less than 172.76? | CREATE TABLE table_name_37 (shot_diameter__cm_ VARCHAR, shot_volume__cm_3__ INTEGER) | SELECT COUNT(shot_diameter__cm_) FROM table_name_37 WHERE shot_volume__cm_3__ < 172.76 |
What is the major instrument of the song that lasts 4:32? | CREATE TABLE table_10416547_1 (major_instrument_s_ VARCHAR, duration VARCHAR) | SELECT major_instrument_s_ FROM table_10416547_1 WHERE duration = "4:32" |
Which chassis scored 52 points? | CREATE TABLE table_name_55 (chassis VARCHAR, points VARCHAR) | SELECT chassis FROM table_name_55 WHERE points = 52 |
What is the score of the game that had 359 people in attendance? | CREATE TABLE table_name_59 (score VARCHAR, attendance VARCHAR) | SELECT score FROM table_name_59 WHERE attendance = "359" |
Which Game 3 has a Game 1 of brett kenny? | CREATE TABLE table_name_75 (game_3 VARCHAR, game_1 VARCHAR) | SELECT game_3 FROM table_name_75 WHERE game_1 = "brett kenny" |
Which conference joined in 1954 with a beavers mascot? | CREATE TABLE table_name_40 (conference_joined VARCHAR, year_joined VARCHAR, mascot VARCHAR) | SELECT conference_joined FROM table_name_40 WHERE year_joined = 1954 AND mascot = "beavers" |
What date did the Away team, North Melbourne, play Geelong? | CREATE TABLE table_name_27 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_27 WHERE away_team = "north melbourne" |
What date was the week 17 game played on? | CREATE TABLE table_name_62 (date VARCHAR, week VARCHAR) | SELECT date FROM table_name_62 WHERE week = "17" |
Who was Richmond's away team opponent? | CREATE TABLE table_name_10 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_10 WHERE home_team = "richmond" |
display the employee ID and job name for all those jobs in department 80. | CREATE TABLE jobs (job_title VARCHAR, job_id VARCHAR); CREATE TABLE employees (employee_id VARCHAR, job_id VARCHAR, department_id VARCHAR) | SELECT T1.employee_id, T2.job_title FROM employees AS T1 JOIN jobs AS T2 ON T1.job_id = T2.job_id WHERE T1.department_id = 80 |
What school, club team, or country did the player with a number smaller than 4 come from? | CREATE TABLE table_name_53 (school_club_team_country VARCHAR, no_s_ INTEGER) | SELECT school_club_team_country FROM table_name_53 WHERE no_s_ < 4 |
What is L2 Cache, when Model Number is Atom Z625? | CREATE TABLE table_name_60 (l2_cache VARCHAR, model_number VARCHAR) | SELECT l2_cache FROM table_name_60 WHERE model_number = "atom z625" |
What is the status when the against is 11? | CREATE TABLE table_name_68 (status VARCHAR, against VARCHAR) | SELECT status FROM table_name_68 WHERE against = 11 |
What was the club for Great Britain? | CREATE TABLE table_name_58 (club VARCHAR, nation VARCHAR) | SELECT club FROM table_name_58 WHERE nation = "great britain" |
What is the score for the game in which Arsenal was the away team? | CREATE TABLE table_name_42 (score VARCHAR, away_team VARCHAR) | SELECT score FROM table_name_42 WHERE away_team = "arsenal" |
In what season did Omar Thomas play, with a jersey number larger than 15? | CREATE TABLE table_name_81 (season VARCHAR, number VARCHAR, name VARCHAR) | SELECT season FROM table_name_81 WHERE number > 15 AND name = "omar thomas" |
What is the Club of mexico, Year of 2010, and a Competition of preseason, and a Result of w 0–1? | CREATE TABLE table_name_8 (club VARCHAR, result VARCHAR, competition VARCHAR, nation VARCHAR, year VARCHAR) | SELECT club FROM table_name_8 WHERE nation = "mexico" AND year = 2010 AND competition = "preseason" AND result = "w 0–1" |
What To par has a Place of t2, and a Country of united states? | CREATE TABLE table_name_11 (to_par VARCHAR, place VARCHAR, country VARCHAR) | SELECT to_par FROM table_name_11 WHERE place = "t2" AND country = "united states" |
Who had the high rebounds at the delta center? | CREATE TABLE table_13762472_5 (high_rebounds VARCHAR, location_attendance VARCHAR) | SELECT high_rebounds FROM table_13762472_5 WHERE location_attendance = "Delta Center" |
How many different descriptions are there for the flag that means decimal digit 2? | CREATE TABLE table_29997112_3 (description VARCHAR, meaning VARCHAR) | SELECT COUNT(description) FROM table_29997112_3 WHERE meaning = "Decimal Digit 2" |
Who won the race circuit of sachsenring? | CREATE TABLE table_name_47 (race_winner VARCHAR, circuit VARCHAR) | SELECT race_winner FROM table_name_47 WHERE circuit = "sachsenring" |
What was the Score when the Loss was ruthven (1-4)? | CREATE TABLE table_name_68 (score VARCHAR, loss VARCHAR) | SELECT score FROM table_name_68 WHERE loss = "ruthven (1-4)" |
What's the sum of money ($) that angela park has won? | CREATE TABLE table_name_99 (money___ INTEGER, player VARCHAR) | SELECT SUM(money___) AS $__ FROM table_name_99 WHERE player = "angela park" |
How many losses have a year later than 2001? | CREATE TABLE table_name_52 (losses INTEGER, year INTEGER) | SELECT SUM(losses) FROM table_name_52 WHERE year > 2001 |
What is the Name of the Building at 100 North Tampa Street? | CREATE TABLE table_name_28 (name VARCHAR, street_address VARCHAR) | SELECT name FROM table_name_28 WHERE street_address = "100 north tampa street" |
Who drove the fastest lap for round 8? | CREATE TABLE table_1139087_2 (fastest_lap VARCHAR, rd VARCHAR) | SELECT fastest_lap FROM table_1139087_2 WHERE rd = 8 |
What player that has a position of middle blocker, a Nationality of Turkey, and shirt no is 8? | CREATE TABLE table_name_36 (player VARCHAR, shirt_no VARCHAR, position VARCHAR, nationality VARCHAR) | SELECT player FROM table_name_36 WHERE position = "middle blocker" AND nationality = "turkey" AND shirt_no = 8 |
What was the average rank for the film directed by roland emmerich under the studio of 20th century fox? | CREATE TABLE table_name_82 (rank INTEGER, studio VARCHAR, director VARCHAR) | SELECT AVG(rank) FROM table_name_82 WHERE studio = "20th century fox" AND director = "roland emmerich" |
How many games had a Time of 2:14? | CREATE TABLE table_name_45 (game INTEGER, time VARCHAR) | SELECT SUM(game) FROM table_name_45 WHERE time = "2:14" |
Name the award won in the hall of fame | CREATE TABLE table_name_30 (award VARCHAR, result VARCHAR, category VARCHAR) | SELECT award FROM table_name_30 WHERE result = "won" AND category = "hall of fame" |
What Opponent played on the Date May 21? | CREATE TABLE table_name_55 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_55 WHERE date = "may 21" |
Find the name, enrollment of the colleges whose size is bigger than 10000 and location is in state LA. | CREATE TABLE College (cName VARCHAR, enr VARCHAR, state VARCHAR) | SELECT cName, enr FROM College WHERE enr > 10000 AND state = "LA" |
What is the result from the game played on week 7? | CREATE TABLE table_name_45 (result VARCHAR, week VARCHAR) | SELECT result FROM table_name_45 WHERE week = 7 |
How many times a year is the Brighton Marathon held? | CREATE TABLE table_26166836_3 (month_held VARCHAR, distance VARCHAR, location VARCHAR) | SELECT COUNT(month_held) FROM table_26166836_3 WHERE distance = "Marathon" AND location = "Brighton" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.