answer
stringlengths 18
557
| question
stringlengths 12
244
| context
stringlengths 27
489
|
|---|---|---|
SELECT MIN(draws) FROM table_name_86 WHERE season > 1919 AND wins > 0
|
What is the lowest Draws for a season later than 1919 with more than 0 wins?
|
CREATE TABLE table_name_86 (draws INTEGER, season VARCHAR, wins VARCHAR)
|
SELECT t1.clubname 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 t3.major = "600" GROUP BY t1.clubname ORDER BY COUNT(*) DESC LIMIT 1
|
Which club has the most members majoring in "600"?
|
CREATE TABLE student (stuid VARCHAR, major VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE club (clubname VARCHAR, clubid VARCHAR)
|
SELECT call_sign FROM table_name_37 WHERE tail_code = "oy" AND weapon_systems_officer = "capt charles b. debellevue"
|
Which Call Sign that has a Tail Code of oy belong to Weapon Systems Officer Capt Charles B. Debellevue?
|
CREATE TABLE table_name_37 (call_sign VARCHAR, tail_code VARCHAR, weapon_systems_officer VARCHAR)
|
SELECT class FROM table_name_62 WHERE part_4 = "*alanaz"
|
Which class has *alanaz as Part 4?
|
CREATE TABLE table_name_62 (class VARCHAR, part_4 VARCHAR)
|
SELECT sitalsasthi_carnival FROM table_name_97 WHERE kosal = "sonepur"
|
What is the sitalsasthi carnival with sonepur as kosal?
|
CREATE TABLE table_name_97 (sitalsasthi_carnival VARCHAR, kosal VARCHAR)
|
SELECT ages FROM table_name_90 WHERE capacity > 21 AND ofsted = 106168
|
Which Ages have a Capacity larger than 21, and an Ofsted of 106168?
|
CREATE TABLE table_name_90 (ages VARCHAR, capacity VARCHAR, ofsted VARCHAR)
|
SELECT MAX(matches) FROM table_name_78 WHERE points < 8 AND place > 13 AND drawn < 1
|
What is the highest Matches were the points were smaller than 8, the place was larger than 13, and the drawn is less than 1?
|
CREATE TABLE table_name_78 (matches INTEGER, drawn VARCHAR, points VARCHAR, place VARCHAR)
|
SELECT original_artist FROM table_name_87 WHERE length = "3:00"
|
Who is the original artist of the 3:00 song?
|
CREATE TABLE table_name_87 (original_artist VARCHAR, length VARCHAR)
|
SELECT surface FROM table_name_47 WHERE runner_up = "brian gottfried"
|
What is the surface of the match with Brian Gottfried as the runner-up?
|
CREATE TABLE table_name_47 (surface VARCHAR, runner_up VARCHAR)
|
SELECT MIN(pick) FROM table_name_52 WHERE player = "j.d. hill"
|
What pick was J.D. Hill?
|
CREATE TABLE table_name_52 (pick INTEGER, player VARCHAR)
|
SELECT charter_range FROM table_name_99 WHERE status = "inactive" AND state = "idaho"
|
What years were the inactive Idaho chapter active?
|
CREATE TABLE table_name_99 (charter_range VARCHAR, status VARCHAR, state VARCHAR)
|
SELECT circuit FROM table_25213146_2 WHERE round = 4
|
Where was the circuit for round 4?
|
CREATE TABLE table_25213146_2 (circuit VARCHAR, round VARCHAR)
|
SELECT wednesday FROM table_name_46 WHERE monday = "月曜日 getsuyōbi"
|
Which Wednesday has a Monday of 月曜日 getsuyōbi?
|
CREATE TABLE table_name_46 (wednesday VARCHAR, monday VARCHAR)
|
SELECT 1997 FROM table_name_65 WHERE 1992 = "atp masters series"
|
Name the 1997 for atp masters series 1992
|
CREATE TABLE table_name_65 (Id VARCHAR)
|
SELECT 2008 FROM table_name_91 WHERE 2009 = "a" AND tournament = "madrid masters"
|
What is 2008, when 2009 is "A", and when Tournament is "Madrid Masters"?
|
CREATE TABLE table_name_91 (tournament VARCHAR)
|
SELECT 2007 FROM table_name_25 WHERE 2006 = "wta premier tournaments"
|
What is the 2007 value for the 2006 wta premier tournaments?
|
CREATE TABLE table_name_25 (Id VARCHAR)
|
SELECT away_team AS score FROM table_name_53 WHERE home_team = "richmond"
|
Who was Richmond's away team opponent?
|
CREATE TABLE table_name_53 (away_team VARCHAR, home_team VARCHAR)
|
SELECT home_team FROM table_name_16 WHERE away_team = "geelong"
|
Which home team competed against the away team Geelong?
|
CREATE TABLE table_name_16 (home_team VARCHAR, away_team VARCHAR)
|
SELECT home_team AS score FROM table_name_30 WHERE home_team = "north melbourne"
|
What was North Melbourne's score as the home team?
|
CREATE TABLE table_name_30 (home_team VARCHAR)
|
SELECT hdtv FROM table_name_50 WHERE content = "general television"
|
What is the HDTV when the content is general television?
|
CREATE TABLE table_name_50 (hdtv VARCHAR, content VARCHAR)
|
SELECT location FROM table_name_13 WHERE year > 1985 AND runner_up = "tim mayotte"
|
Where in 1985 was tim mayotte runner up?
|
CREATE TABLE table_name_13 (location VARCHAR, year VARCHAR, runner_up VARCHAR)
|
SELECT AVG(tonnage) FROM table_name_78 WHERE date = "30 march 1943"
|
What was the tonnage on 30 march 1943?
|
CREATE TABLE table_name_78 (tonnage INTEGER, date VARCHAR)
|
SELECT family_families FROM table_19897294_4 WHERE no_overall = "UK10"
|
What family had a no.overall of UK10?
|
CREATE TABLE table_19897294_4 (family_families VARCHAR, no_overall VARCHAR)
|
SELECT livery FROM table_name_57 WHERE number = 31468
|
What is the Livery when the Number is 31468?
|
CREATE TABLE table_name_57 (livery VARCHAR, number VARCHAR)
|
SELECT AVG(played) FROM table_name_28 WHERE points = 2 AND position < 8
|
Which Played has a Points of 2, and a Position smaller than 8?
|
CREATE TABLE table_name_28 (played INTEGER, points VARCHAR, position VARCHAR)
|
SELECT COUNT(year) FROM table_name_9 WHERE issue_price = "$697.95"
|
What year has an issue price of $697.95?
|
CREATE TABLE table_name_9 (year VARCHAR, issue_price VARCHAR)
|
SELECT country FROM table_name_96 WHERE player = "hale irwin"
|
What is Country, when Player is "Hale Irwin"?
|
CREATE TABLE table_name_96 (country VARCHAR, player VARCHAR)
|
SELECT MIN(grid) FROM table_name_95 WHERE time_retired = "+5.004"
|
Which grid has a Time/Retired of +5.004?
|
CREATE TABLE table_name_95 (grid INTEGER, time_retired VARCHAR)
|
SELECT COUNT(fall_05) FROM table_name_31 WHERE fall_08 > 5 AND fall_06 > 7 AND states = "maryland" AND fall_09 > 471
|
What is the sum amount of fall 05 when fall 08 is more than 5, fall 06 is more than 7, the state is Maryland, and fall 09 is more than 471?
|
CREATE TABLE table_name_31 (fall_05 VARCHAR, fall_09 VARCHAR, states VARCHAR, fall_08 VARCHAR, fall_06 VARCHAR)
|
SELECT COUNT(date) FROM table_11964047_5 WHERE visitor = "New Jersey Nets"
|
what is the total number of date where visitor is new jersey nets
|
CREATE TABLE table_11964047_5 (date VARCHAR, visitor VARCHAR)
|
SELECT d_44_√ FROM table_name_19 WHERE d_47_√ = "r 7"
|
What is the number for D 44 √ when D 47 √ is r 7?
|
CREATE TABLE table_name_19 (d_44_√ VARCHAR, d_47_√ VARCHAR)
|
SELECT MIN(losses) FROM table_name_28 WHERE team = "nottingham city" AND wins < 0
|
What is the lowest number of losses for Nottingham City with fewer than 0 wins?
|
CREATE TABLE table_name_28 (losses INTEGER, team VARCHAR, wins VARCHAR)
|
SELECT COUNT(record) FROM table_23308178_8 WHERE points = 88
|
How many games did they play with 88 points?
|
CREATE TABLE table_23308178_8 (record VARCHAR, points VARCHAR)
|
SELECT batting_team FROM table_11303072_5 WHERE batting_partners = "Thilina Kandamby and Rangana Herath"
|
What is the batting team with the batting partnets of thilina kandamby and rangana herath?
|
CREATE TABLE table_11303072_5 (batting_team VARCHAR, batting_partners VARCHAR)
|
SELECT d_43 FROM table_name_44 WHERE d_41 = "r 21"
|
What is the D43 associated with a D41 of r 21?
|
CREATE TABLE table_name_44 (d_43 VARCHAR, d_41 VARCHAR)
|
SELECT result FROM table_name_84 WHERE date = "11/02/1946"
|
What was the Result on 11/02/1946?
|
CREATE TABLE table_name_84 (result VARCHAR, date VARCHAR)
|
SELECT city FROM table_name_69 WHERE spire__m_ = "105" AND roof___m__ < 96 AND built = 1985
|
What's the name of the 1985 city with a Spire (m) of 105, and a Roof (m) smaller than 96?
|
CREATE TABLE table_name_69 (city VARCHAR, built VARCHAR, spire__m_ VARCHAR, roof___m__ VARCHAR)
|
SELECT date FROM table_name_65 WHERE grand_prix = "canadian grand prix"
|
What was the date for the canadian grand prix?
|
CREATE TABLE table_name_65 (date VARCHAR, grand_prix VARCHAR)
|
SELECT SUM(drawn) FROM table_name_81 WHERE points < 15 AND lost = 8 AND position > 6
|
what is the sum of drawn when points is less than 15, lost is 8 and position is more than 6?
|
CREATE TABLE table_name_81 (drawn INTEGER, position VARCHAR, points VARCHAR, lost VARCHAR)
|
SELECT 2007 FROM table_name_92 WHERE 2010 = "qf" AND 2012 = "w"
|
What in 2007 has a 2010 of qf, and a 2012 of w?
|
CREATE TABLE table_name_92 (Id VARCHAR)
|
SELECT result FROM table_name_52 WHERE date = "august 24, 1997"
|
what is the result when the date is august 24, 1997?
|
CREATE TABLE table_name_52 (result VARCHAR, date VARCHAR)
|
SELECT COUNT(silver) FROM table_name_92 WHERE bronze < 0
|
What is the total silver when bronze is smaller than 0?
|
CREATE TABLE table_name_92 (silver VARCHAR, bronze INTEGER)
|
SELECT location_attendance FROM table_11960944_11 WHERE high_assists = "Billups , Stuckey (4)"
|
Where was the game played when the high assists were scored by billups , stuckey (4)?
|
CREATE TABLE table_11960944_11 (location_attendance VARCHAR, high_assists VARCHAR)
|
SELECT MIN(extras) FROM table_name_50 WHERE name = "chamara kapugedera" AND er < 4.59
|
What is the lowest Extras for Chamara Kapugedera, with an E.R. less than 4.59?
|
CREATE TABLE table_name_50 (extras INTEGER, name VARCHAR, er VARCHAR)
|
SELECT MIN(draws) FROM table_name_16 WHERE against = 1261
|
What is the least amount of draws with an against of 1261?
|
CREATE TABLE table_name_16 (draws INTEGER, against VARCHAR)
|
SELECT performance FROM table_name_38 WHERE usage = "hepa" AND class = "h14"
|
Which Performance has a Usage of hepa and a Class of h14?
|
CREATE TABLE table_name_38 (performance VARCHAR, usage VARCHAR, class VARCHAR)
|
SELECT place FROM table_name_82 WHERE player = "davis love iii"
|
Where is the player Davis Love III?
|
CREATE TABLE table_name_82 (place VARCHAR, player VARCHAR)
|
SELECT AVG(chorley) FROM table_name_96 WHERE rossendale > 0 AND party = "labour" AND pendle < 1
|
What was the average Chorley for the Labour party that had a Rossendale greater than 0 and a Pendle less than 1?
|
CREATE TABLE table_name_96 (chorley INTEGER, pendle VARCHAR, rossendale VARCHAR, party VARCHAR)
|
SELECT date_made FROM table_name_50 WHERE class = "waterford"
|
What is the date of the locomotive with a Waterford class?
|
CREATE TABLE table_name_50 (date_made VARCHAR, class VARCHAR)
|
SELECT MIN(wins) FROM table_name_46 WHERE goal_difference < 33 AND position < 13 AND goals_for = 42
|
What is the lowest wins entry that has a goal difference less than 33, position higher than 13, and 42 goals?
|
CREATE TABLE table_name_46 (wins INTEGER, goals_for VARCHAR, goal_difference VARCHAR, position VARCHAR)
|
SELECT state__class_ FROM table_2417308_3 WHERE successor = "William Bigler (D)"
|
What state had william bigler (d) as a successor)
|
CREATE TABLE table_2417308_3 (state__class_ VARCHAR, successor VARCHAR)
|
SELECT player FROM table_name_97 WHERE first_team_appearances > 1 AND first_team_goals = 32
|
What player has over 1 first apperance and over 32 first team goals?
|
CREATE TABLE table_name_97 (player VARCHAR, first_team_appearances VARCHAR, first_team_goals VARCHAR)
|
SELECT the_wørd FROM table_25691838_2 WHERE episode__number = 673
|
What was the word on episode number 673?
|
CREATE TABLE table_25691838_2 (the_wørd VARCHAR, episode__number VARCHAR)
|
SELECT location_attendance FROM table_name_23 WHERE record = "9-2"
|
what is the location/attendance when the record is 9-2?
|
CREATE TABLE table_name_23 (location_attendance VARCHAR, record VARCHAR)
|
SELECT to_par FROM table_name_7 WHERE place = "t9" AND country = "australia"
|
What was Australia's to par when the place was t9?
|
CREATE TABLE table_name_7 (to_par VARCHAR, place VARCHAR, country VARCHAR)
|
SELECT AVG(goals_for) FROM table_name_37 WHERE playoffs = "lost in round 2" AND games < 81
|
What is the average Goals, when Playoffs is Lost in Round 2, and when Games is less than 81?
|
CREATE TABLE table_name_37 (goals_for INTEGER, playoffs VARCHAR, games VARCHAR)
|
SELECT opponent FROM table_name_62 WHERE loss = "brown (9-5)"
|
Who was the opponent when Brown (9-5) took the loss?
|
CREATE TABLE table_name_62 (opponent VARCHAR, loss VARCHAR)
|
SELECT COUNT(attendance) FROM table_21377473_7 WHERE score = "0 - 1 Barbiero 78'"
|
When 0 - 1 barbiero 78' is the score how many measurements of attendance are there?
|
CREATE TABLE table_21377473_7 (attendance VARCHAR, score VARCHAR)
|
SELECT method FROM table_name_38 WHERE location = "tokyo , japan" AND event = "rings: millennium combine 2"
|
What is Method, when Location is "Tokyo , Japan", and when Event is "Rings: Millennium Combine 2"?
|
CREATE TABLE table_name_38 (method VARCHAR, location VARCHAR, event VARCHAR)
|
SELECT network FROM table_name_71 WHERE language = "punjabi"
|
What Network has Punjabi as the Language?
|
CREATE TABLE table_name_71 (network VARCHAR, language VARCHAR)
|
SELECT company_or_product_name FROM table_name_17 WHERE episode = "episode 11" AND money_requested__£_ = "70,000"
|
Which Company or Product name requested £70,000 on Episode 11?
|
CREATE TABLE table_name_17 (company_or_product_name VARCHAR, episode VARCHAR, money_requested__£_ VARCHAR)
|
SELECT entrant FROM table_name_29 WHERE engine = "maserati straight-6" AND year = 1952
|
What Entrant has a 1952 maserati straight-6 engine?
|
CREATE TABLE table_name_29 (entrant VARCHAR, engine VARCHAR, year VARCHAR)
|
SELECT player FROM table_name_53 WHERE college = "uab"
|
What player attended UAB college?
|
CREATE TABLE table_name_53 (player VARCHAR, college VARCHAR)
|
SELECT 1993 FROM table_name_59 WHERE 1994 = "atp masters series"
|
What is the 1993 value of the 1994 atp masters series?
|
CREATE TABLE table_name_59 (Id VARCHAR)
|
SELECT other_mozilla FROM table_name_71 WHERE safari = "9.41%"
|
What is the other mozilla that has 9.41% for the safari?
|
CREATE TABLE table_name_71 (other_mozilla VARCHAR, safari VARCHAR)
|
SELECT format FROM table_name_73 WHERE brand = "digital 94.9"
|
What is the format for Digital 94.9?
|
CREATE TABLE table_name_73 (format VARCHAR, brand VARCHAR)
|
SELECT player FROM table_name_40 WHERE nationality = "united states" AND league_from = "western collegiate hockey association"
|
What player from the United States played in the western collegiate hockey association?
|
CREATE TABLE table_name_40 (player VARCHAR, nationality VARCHAR, league_from VARCHAR)
|
SELECT team FROM table_name_86 WHERE outcome = "behind" AND opponent = "brisbane bears"
|
Which team got a Behind outcome and had an opponent of Brisbane Bears?
|
CREATE TABLE table_name_86 (team VARCHAR, outcome VARCHAR, opponent VARCHAR)
|
SELECT percentage___percentage_ FROM table_name_35 WHERE males = "99"
|
What is the percentage where males equal 99?
|
CREATE TABLE table_name_35 (percentage___percentage_ VARCHAR, males VARCHAR)
|
SELECT COUNT(export_volume_of_goods_and_services__percent_change_) FROM table_30133_1 WHERE gdp_at_current_prices__usd_billions_ = "161.340"
|
How many export volume of goods and services values are associated with GDP at current prices of 161.340?
|
CREATE TABLE table_30133_1 (export_volume_of_goods_and_services__percent_change_ VARCHAR, gdp_at_current_prices__usd_billions_ VARCHAR)
|
SELECT natural_wood_keyboard FROM table_name_18 WHERE model = "clps306"
|
Which is Natural Wood Keyboard with a Model of clps306?
|
CREATE TABLE table_name_18 (natural_wood_keyboard VARCHAR, model VARCHAR)
|
SELECT language FROM table_name_83 WHERE name = "tv3"
|
What is the language of TV3?
|
CREATE TABLE table_name_83 (language VARCHAR, name VARCHAR)
|
SELECT MAX(time) FROM table_name_31 WHERE athlete = "torri edwards" AND rank > 6
|
What is the highest time for athlete torri edwards, and a rank larger than 6?
|
CREATE TABLE table_name_31 (time INTEGER, athlete VARCHAR, rank VARCHAR)
|
SELECT season AS premiere FROM table_10819266_8 WHERE rank = "#21"
|
How many season premiers have a rank of #21?
|
CREATE TABLE table_10819266_8 (season VARCHAR, rank VARCHAR)
|
SELECT date FROM table_11960407_5 WHERE game = 50
|
What is the date of Game 50?
|
CREATE TABLE table_11960407_5 (date VARCHAR, game VARCHAR)
|
SELECT COUNT(wins) FROM table_name_52 WHERE cuts_made = 10 AND scoring_average < 74.09
|
What is the total number of wins with 10 cuts made and a score average under 74.09?
|
CREATE TABLE table_name_52 (wins VARCHAR, cuts_made VARCHAR, scoring_average VARCHAR)
|
SELECT record FROM table_18207285_2 WHERE opponents = 42
|
What's the record in the game played against 42?
|
CREATE TABLE table_18207285_2 (record VARCHAR, opponents VARCHAR)
|
SELECT county FROM table_name_9 WHERE prominence__m_ < 1292 AND isolation__km_ = 14
|
What country has a prominence less than 1292 and an Isolation (km) of 14?
|
CREATE TABLE table_name_9 (county VARCHAR, prominence__m_ VARCHAR, isolation__km_ VARCHAR)
|
SELECT bullet FROM table_name_25 WHERE shoulder = "10.92 (.430)"
|
Which bullet has a Shoulder of 10.92 (.430)?
|
CREATE TABLE table_name_25 (bullet VARCHAR, shoulder VARCHAR)
|
SELECT intra_dc_precision FROM table_name_59 WHERE name = "main profile"
|
Name the Intra DC Precision that has the Name main profile?
|
CREATE TABLE table_name_59 (intra_dc_precision VARCHAR, name VARCHAR)
|
SELECT result FROM table_14977592_1 WHERE date = "November 14, 1965"
|
Name the result for november 14, 1965
|
CREATE TABLE table_14977592_1 (result VARCHAR, date VARCHAR)
|
SELECT type FROM table_name_10 WHERE platform = "gamecube"
|
What is the type of electronic with the Gamecube Platform?
|
CREATE TABLE table_name_10 (type VARCHAR, platform VARCHAR)
|
SELECT COUNT(other) FROM table_name_60 WHERE player = "adam pepper" AND total > 7
|
What is the number for other when Adam Pepper is the player with a total more than 7?
|
CREATE TABLE table_name_60 (other VARCHAR, player VARCHAR, total VARCHAR)
|
SELECT method FROM table_name_76 WHERE res = "loss" AND time = "5:00"
|
What is the method where there is a loss with time 5:00?
|
CREATE TABLE table_name_76 (method VARCHAR, res VARCHAR, time VARCHAR)
|
SELECT SUM(roll) FROM table_name_63 WHERE area = "raetihi" AND name = "orautoha school" AND decile < 8
|
What is the roll number of Orautoha school in Raetihi, which has a decile smaller than 8?
|
CREATE TABLE table_name_63 (roll INTEGER, decile VARCHAR, area VARCHAR, name VARCHAR)
|
SELECT college_junior_club_team FROM table_name_85 WHERE round < 3
|
What is the college club that plays before round 3?
|
CREATE TABLE table_name_85 (college_junior_club_team VARCHAR, round INTEGER)
|
SELECT score FROM table_name_18 WHERE date = "october 31"
|
What score has October 31 as the date?
|
CREATE TABLE table_name_18 (score VARCHAR, date VARCHAR)
|
SELECT result FROM table_1342256_10 WHERE incumbent = "Robert L. F. Sikes"
|
What was the result of Robert L. F. Sikes' election bid?
|
CREATE TABLE table_1342256_10 (result VARCHAR, incumbent VARCHAR)
|
SELECT result FROM table_name_1 WHERE week < 16 AND attendance = "69,362"
|
What was the score of the Chiefs pre-Week 16 game that 69,362 people attended?
|
CREATE TABLE table_name_1 (result VARCHAR, week VARCHAR, attendance VARCHAR)
|
SELECT nhl_team FROM table_name_71 WHERE nationality = "finland"
|
WHAT IS THE NHL TEAM OF FINLAND?
|
CREATE TABLE table_name_71 (nhl_team VARCHAR, nationality VARCHAR)
|
SELECT finished FROM table_14345690_2 WHERE celebrity = "Tara Palmer-Tomkinson"
|
What position did Tara Palmer-Tomkinson finish?
|
CREATE TABLE table_14345690_2 (finished VARCHAR, celebrity VARCHAR)
|
SELECT MAX(roll) FROM table_21563298_1 WHERE school = "Brechin High school"
|
How many kids go to Brechin High School?
|
CREATE TABLE table_21563298_1 (roll INTEGER, school VARCHAR)
|
SELECT runner_up_skip FROM table_name_61 WHERE winning_skip = "julie reddick"
|
What person was the runner-up skip when Julie Reddick was the winning skip?
|
CREATE TABLE table_name_61 (runner_up_skip VARCHAR, winning_skip VARCHAR)
|
SELECT MAX(floors) FROM table_name_70 WHERE name = "detroit marriott at the renaissance center"
|
How many floors does detroit marriott at the renaissance center have?
|
CREATE TABLE table_name_70 (floors INTEGER, name VARCHAR)
|
SELECT 2007 FROM table_name_48 WHERE 2003 = "desert prince"
|
What is the 2007 for the 2003 desert prince?
|
CREATE TABLE table_name_48 (Id VARCHAR)
|
SELECT school FROM table_name_40 WHERE player = "terrence jones"
|
What School did Terrence Jones play for?
|
CREATE TABLE table_name_40 (school VARCHAR, player VARCHAR)
|
SELECT MIN(total_min_2_medals_) FROM table_22355_65
|
What is the lowest overall number for total(min. 2 medals)?
|
CREATE TABLE table_22355_65 (total_min_2_medals_ INTEGER)
|
SELECT away_team AS score FROM table_name_48 WHERE home_team = "richmond"
|
What was the score for the opponent against Richmond?
|
CREATE TABLE table_name_48 (away_team VARCHAR, home_team VARCHAR)
|
SELECT religion FROM table_name_43 WHERE scheduled_tribe = "0.90%"
|
WHAT IS THE RELIGION WITH A SCHEDULED TRIBE OF 0.90%?
|
CREATE TABLE table_name_43 (religion VARCHAR, scheduled_tribe VARCHAR)
|
SELECT event FROM table_name_28 WHERE games = "2008 beijing" AND sport = "wrestling"
|
What wrestling event was participated in during the 2008 Beijing games?
|
CREATE TABLE table_name_28 (event VARCHAR, games VARCHAR, sport VARCHAR)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.