question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
What is the maximum torque at rpm for the engine coded BJB/BKC/BXE/BLS? | CREATE TABLE table_name_7 (max_torque_at_rpm VARCHAR, engine_code_s_ VARCHAR) | SELECT max_torque_at_rpm FROM table_name_7 WHERE engine_code_s_ = "bjb/bkc/bxe/bls" |
Visitor of calgary has what record? | CREATE TABLE table_name_30 (record VARCHAR, visitor VARCHAR) | SELECT record FROM table_name_30 WHERE visitor = "calgary" |
What was the report of the Belgian Grand Prix? | CREATE TABLE table_1132600_3 (report VARCHAR, grand_prix VARCHAR) | SELECT report FROM table_1132600_3 WHERE grand_prix = "Belgian grand_prix" |
How much money did reestore request ? | CREATE TABLE table_name_59 (money_requested__£_ VARCHAR, company_or_product_name VARCHAR) | SELECT money_requested__£_ FROM table_name_59 WHERE company_or_product_name = "reestore" |
For the venue of suwon world cup stadium , suwon , south korea and a Score of 3–0 what is the result? | CREATE TABLE table_name_74 (result VARCHAR, venue VARCHAR, score VARCHAR) | SELECT result FROM table_name_74 WHERE venue = "suwon world cup stadium , suwon , south korea" AND score = "3–0" |
What is the most divisional titles won by a school with an enrollment of 30049? | CREATE TABLE table_20190834_1 (divisional_titles INTEGER, enrollment VARCHAR) | SELECT MAX(divisional_titles) FROM table_20190834_1 WHERE enrollment = 30049 |
How much is the total ERP W for an 107.9 fm freqeuncy MHz? | CREATE TABLE table_name_63 (erp_w VARCHAR, frequency_mhz VARCHAR) | SELECT COUNT(erp_w) FROM table_name_63 WHERE frequency_mhz = "107.9 fm" |
What is shown for november 3 when june 10-11 is june 10, 1964? | CREATE TABLE table_25252080_3 (november_3 VARCHAR, june_10_11 VARCHAR) | SELECT november_3 FROM table_25252080_3 WHERE june_10_11 = "June 10, 1964" |
When did the season located in the Netherlands premier? | CREATE TABLE table_1949994_7 (premiere_air_dates VARCHAR, country VARCHAR) | SELECT premiere_air_dates FROM table_1949994_7 WHERE country = "The Netherlands" |
Who had the pole position at the German Grand Prix? | CREATE TABLE table_1137718_2 (pole_position VARCHAR, grand_prix VARCHAR) | SELECT pole_position FROM table_1137718_2 WHERE grand_prix = "German grand_prix" |
Who had the best time of 1:32.269? | CREATE TABLE table_name_21 (name VARCHAR, best VARCHAR) | SELECT name FROM table_name_21 WHERE best = "1:32.269" |
What is the highest number of gold medals won by a team that won fewer than 2 silver and fewer than 4 bronze medals? | CREATE TABLE table_name_83 (gold INTEGER, silver VARCHAR, bronze VARCHAR) | SELECT MAX(gold) FROM table_name_83 WHERE silver < 2 AND bronze < 4 |
What was the earliest year for the 400 M Hurdles in Santiago, Chile? | CREATE TABLE table_name_71 (year INTEGER, venue VARCHAR, event VARCHAR) | SELECT MIN(year) FROM table_name_71 WHERE venue = "santiago, chile" AND event = "400 m hurdles" |
Who was the second couple for the episode having an ITV1 ranking of 29? | CREATE TABLE table_25664518_3 (second_couple VARCHAR, itv1_weekly_ranking VARCHAR) | SELECT second_couple FROM table_25664518_3 WHERE itv1_weekly_ranking = 29 |
When is vanderbilt cup in? | CREATE TABLE table_name_55 (date VARCHAR, name VARCHAR) | SELECT date FROM table_name_55 WHERE name = "vanderbilt cup" |
What is the checking balance of the account whose owner’s name contains the substring ‘ee’? | CREATE TABLE checking (balance VARCHAR, custid VARCHAR); CREATE TABLE accounts (custid VARCHAR, name VARCHAR) | SELECT T2.balance FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid WHERE T1.name LIKE '%ee%' |
Name the country with a score of 69-71=140. | CREATE TABLE table_name_33 (country VARCHAR, score VARCHAR) | SELECT country FROM table_name_33 WHERE score = 69 - 71 = 140 |
What is the lowest Place, when Points are greater than 2? | CREATE TABLE table_name_17 (place INTEGER, points INTEGER) | SELECT MIN(place) FROM table_name_17 WHERE points > 2 |
What is the average age as of February 1, 2014 for the supercentenarians born in the United States? | CREATE TABLE table_name_23 (age_as_of_1_february_2014 VARCHAR, province_or_country_of_birth VARCHAR) | SELECT age_as_of_1_february_2014 FROM table_name_23 WHERE province_or_country_of_birth = "united states" |
What is the smallest point total when the grid is larger than 5 and the time/retired is fire? | CREATE TABLE table_name_52 (points INTEGER, grid VARCHAR, time_retired VARCHAR) | SELECT MIN(points) FROM table_name_52 WHERE grid > 5 AND time_retired = "fire" |
In the match where newcastle jets was the away team, what was the crown attendance? | CREATE TABLE table_name_79 (crowd VARCHAR, away_team VARCHAR) | SELECT crowd FROM table_name_79 WHERE away_team = "newcastle jets" |
What is the total number of live births in 2006 with 98.40% of the population as Whites and has more than 2 for the TFR? | CREATE TABLE table_name_94 (live_births_2006 INTEGER, whites_as__percentage_of_pop VARCHAR, tfr_2006 VARCHAR) | SELECT SUM(live_births_2006) FROM table_name_94 WHERE whites_as__percentage_of_pop = "98.40%" AND tfr_2006 > 2 |
Which Country has azeri tv tower? | CREATE TABLE table_name_61 (country VARCHAR, name VARCHAR) | SELECT country FROM table_name_61 WHERE name = "azeri tv tower" |
who is the constructor when the grid is more than 10 and the time/retired is +1 lap? | CREATE TABLE table_name_59 (constructor VARCHAR, grid VARCHAR, time_retired VARCHAR) | SELECT constructor FROM table_name_59 WHERE grid > 10 AND time_retired = "+1 lap" |
Name the vertical for 边 bian | CREATE TABLE table_25519358_1 (vertical_0_b VARCHAR, name VARCHAR) | SELECT vertical_0_b FROM table_25519358_1 WHERE name = "边 BIAN" |
Record of 6–1 had what score? | CREATE TABLE table_name_16 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_16 WHERE record = "6–1" |
List the name and date the battle that has lost the ship named 'Lettice' and the ship named 'HMS Atalanta' | CREATE TABLE ship (lost_in_battle VARCHAR, name VARCHAR); CREATE TABLE battle (name VARCHAR, date VARCHAR, id VARCHAR) | SELECT T1.name, T1.date FROM battle AS T1 JOIN ship AS T2 ON T1.id = T2.lost_in_battle WHERE T2.name = 'Lettice' INTERSECT SELECT T1.name, T1.date FROM battle AS T1 JOIN ship AS T2 ON T1.id = T2.lost_in_battle WHERE T2.name = 'HMS Atalanta' |
What is the highest number of players during 1r year with a clay set and more than 4 aces? | CREATE TABLE table_name_63 (player INTEGER, year VARCHAR, sets VARCHAR, aces VARCHAR) | SELECT MAX(player) FROM table_name_63 WHERE year = "1r" AND sets = "clay" AND NOT aces > 4 |
Which Number has a Proto-Polynesian of *taha? | CREATE TABLE table_name_71 (number VARCHAR, proto_polynesian VARCHAR) | SELECT number FROM table_name_71 WHERE proto_polynesian = "*taha" |
What is the To par of the T4 Place Player with a Score of 72-69-73=214? | CREATE TABLE table_name_63 (to_par VARCHAR, place VARCHAR, score VARCHAR) | SELECT to_par FROM table_name_63 WHERE place = "t4" AND score = 72 - 69 - 73 = 214 |
Which Event has a Resolution of loss, and a Record of 12–2? | CREATE TABLE table_name_56 (event VARCHAR, res VARCHAR, record VARCHAR) | SELECT event FROM table_name_56 WHERE res = "loss" AND record = "12–2" |
What is the record when the game was at the San Diego Stadium? | CREATE TABLE table_17848578_1 (record VARCHAR, game_site VARCHAR) | SELECT record FROM table_17848578_1 WHERE game_site = "San Diego Stadium" |
Name the total number of points for 1952 | CREATE TABLE table_name_89 (points VARCHAR, year VARCHAR) | SELECT COUNT(points) FROM table_name_89 WHERE year = 1952 |
What is the final weight for contestant Chris? | CREATE TABLE table_24370270_10 (final_weight__kg_ VARCHAR, contestant VARCHAR) | SELECT final_weight__kg_ FROM table_24370270_10 WHERE contestant = "Chris" |
On what date was Richmond hosted as the away team? | CREATE TABLE table_name_50 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_50 WHERE away_team = "richmond" |
Which athlete is from Mexico City? | CREATE TABLE table_1231316_7 (athlete VARCHAR, location VARCHAR) | SELECT athlete FROM table_1231316_7 WHERE location = "Mexico City" |
What is the Season with goals of 6 and BCLA as the league? | CREATE TABLE table_name_63 (season VARCHAR, league VARCHAR, goals VARCHAR) | SELECT season FROM table_name_63 WHERE league = "bcla" AND goals = "6" |
What location was the event ufc: fight for the troops? | CREATE TABLE table_name_91 (location VARCHAR, event VARCHAR) | SELECT location FROM table_name_91 WHERE event = "ufc: fight for the troops" |
What was the highest round that had northwestern? | CREATE TABLE table_name_18 (round INTEGER, school VARCHAR) | SELECT MAX(round) FROM table_name_18 WHERE school = "northwestern" |
What is the earliest round Clark was in? | CREATE TABLE table_name_86 (round INTEGER, college VARCHAR) | SELECT MIN(round) FROM table_name_86 WHERE college = "clark" |
How many terms began when the term ended in January 3, 1989? | CREATE TABLE table_197446_1 (term_began VARCHAR, term_ended VARCHAR) | SELECT COUNT(term_began) FROM table_197446_1 WHERE term_ended = "January 3, 1989" |
Which position has more than 4 points, less than 12 tries, a squad number of more than 1, and where Ali Lauitiiti is a player? | CREATE TABLE table_name_58 (position VARCHAR, player VARCHAR, squad_no VARCHAR, points VARCHAR, tries VARCHAR) | SELECT position FROM table_name_58 WHERE points > 4 AND tries < 12 AND squad_no > 1 AND player = "ali lauitiiti" |
During what wicket were Mahela Jayawardene and Thilan Samaraweera batting partners? | CREATE TABLE table_name_56 (wicket VARCHAR, batting_partners VARCHAR) | SELECT wicket FROM table_name_56 WHERE batting_partners = "mahela jayawardene and thilan samaraweera" |
What NHL team does Rob White play on? | CREATE TABLE table_name_45 (nhl_team VARCHAR, player VARCHAR) | SELECT nhl_team FROM table_name_45 WHERE player = "rob white" |
What designer has a restaurant named The Citizen? | CREATE TABLE table_name_42 (designer VARCHAR, restaurant_name VARCHAR) | SELECT designer FROM table_name_42 WHERE restaurant_name = "the citizen" |
What was the earliest year that had a start of Saint-Gaudens and a stage smaller than 15? | CREATE TABLE table_name_56 (year INTEGER, start VARCHAR, stage VARCHAR) | SELECT MIN(year) FROM table_name_56 WHERE start = "saint-gaudens" AND stage < 15 |
Which Democrtic candidate ran against the Socialist candidate Edna Mitchell Blue? | CREATE TABLE table_name_71 (democratic_ticket VARCHAR, socialist_ticket VARCHAR) | SELECT democratic_ticket FROM table_name_71 WHERE socialist_ticket = "edna mitchell blue" |
When galaxy angel aa was the title was the us release date? | CREATE TABLE table_1714685_1 (us_release_date VARCHAR, title VARCHAR) | SELECT us_release_date FROM table_1714685_1 WHERE title = "Galaxy Angel AA" |
What was the 2007 result in the 28th district? | CREATE TABLE table_13618584_1 (district VARCHAR) | SELECT 2007 AS _result FROM table_13618584_1 WHERE district = "28th" |
What is the name on the Democratic ticket when the Workers ticket is james p. cannon? | CREATE TABLE table_name_32 (democratic_ticket VARCHAR, workers_ticket VARCHAR) | SELECT democratic_ticket FROM table_name_32 WHERE workers_ticket = "james p. cannon" |
What is the lane with a time of 1:56.64, and a tank smaller than 7? | CREATE TABLE table_name_31 (lane VARCHAR, time VARCHAR, rank VARCHAR) | SELECT COUNT(lane) FROM table_name_31 WHERE time = "1:56.64" AND rank < 7 |
who has the high points on june 16? | CREATE TABLE table_name_53 (high_points VARCHAR, date VARCHAR) | SELECT high_points FROM table_name_53 WHERE date = "june 16" |
What is the lowest interview score for Missouri, where the swimsuit score was highter than 9.433? | CREATE TABLE table_name_66 (interview INTEGER, country VARCHAR, swimsuit VARCHAR) | SELECT MIN(interview) FROM table_name_66 WHERE country = "missouri" AND swimsuit > 9.433 |
The University of Colorado hosted what region? | CREATE TABLE table_name_4 (region VARCHAR, host VARCHAR) | SELECT region FROM table_name_4 WHERE host = "university of colorado" |
What is the percentage of females where in India and are maharashtra? | CREATE TABLE table_14598_9 (females___percentage_ VARCHAR, india_state_ut VARCHAR) | SELECT females___percentage_ FROM table_14598_9 WHERE india_state_ut = "Maharashtra" |
What is the top-25 of the U.S. open, which has less than 7 events? | CREATE TABLE table_name_93 (top_25 INTEGER, tournament VARCHAR, events VARCHAR) | SELECT SUM(top_25) FROM table_name_93 WHERE tournament = "u.s. open" AND events < 7 |
What issue has mort drucker as the artist and february 2001 as the date? | CREATE TABLE table_name_20 (issue VARCHAR, artist VARCHAR, date VARCHAR) | SELECT issue FROM table_name_20 WHERE artist = "mort drucker" AND date = "february 2001" |
What was the fastest lap time in the Escort Radar Warning 200? | CREATE TABLE table_10706961_2 (fastest_lap VARCHAR, name VARCHAR) | SELECT fastest_lap FROM table_10706961_2 WHERE name = "Escort Radar Warning 200" |
what was the score of the game at pro player stadium on june 14? | CREATE TABLE table_name_9 (score VARCHAR, venue VARCHAR, date VARCHAR) | SELECT score FROM table_name_9 WHERE venue = "pro player stadium" AND date = "june 14" |
Tell me the record for december 3 | CREATE TABLE table_name_47 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_47 WHERE date = "december 3" |
Which circuit did françois eysermann win ? | CREATE TABLE table_name_54 (circuit VARCHAR, winning_driver VARCHAR) | SELECT circuit FROM table_name_54 WHERE winning_driver = "françois eysermann" |
What was the record of the game on July 3? | CREATE TABLE table_name_44 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_44 WHERE date = "july 3" |
Who came in 3rd when Matej žagar won? | CREATE TABLE table_name_30 (winners VARCHAR) | SELECT 3 AS rd_place FROM table_name_30 WHERE winners = "matej žagar" |
How many numbers of rebounds are associated with exactly 18 points? | CREATE TABLE table_24913533_4 (rebounds VARCHAR, points VARCHAR) | SELECT COUNT(rebounds) FROM table_24913533_4 WHERE points = 18 |
How many years have the home town of Baton Rouge, LA? | CREATE TABLE table_12032893_1 (year VARCHAR, home_town VARCHAR) | SELECT COUNT(year) FROM table_12032893_1 WHERE home_town = "Baton Rouge, LA" |
What was the result of the game when the attendance was 43,279? | CREATE TABLE table_name_8 (result VARCHAR, attendance VARCHAR) | SELECT result FROM table_name_8 WHERE attendance = "43,279" |
Name the away team for home team of fitzroy | CREATE TABLE table_name_17 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_17 WHERE home_team = "fitzroy" |
Who was drafted from the school Mountain Pointe High School? | CREATE TABLE table_11677100_16 (mlb_draft VARCHAR, school VARCHAR) | SELECT mlb_draft FROM table_11677100_16 WHERE school = "Mountain Pointe High school" |
What is the average silver medals a team that has 1 gold and more than 5 bronze has? | CREATE TABLE table_name_2 (silver INTEGER, gold VARCHAR, bronze VARCHAR) | SELECT AVG(silver) FROM table_name_2 WHERE gold = 1 AND bronze > 5 |
List the maximum scores of the team Boston Red Stockings when the team won in postseason? | CREATE TABLE team (team_id_br VARCHAR, name VARCHAR); CREATE TABLE postseason (wins INTEGER, team_id_winner VARCHAR) | SELECT MAX(T1.wins) FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_winner = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' |
Show all church names except for those that had a wedding in year 2015. | CREATE TABLE church (name VARCHAR); CREATE TABLE wedding (church_id VARCHAR, year VARCHAR); CREATE TABLE church (name VARCHAR, church_id VARCHAR) | SELECT name FROM church EXCEPT SELECT T1.name FROM church AS T1 JOIN wedding AS T2 ON T1.church_id = T2.church_id WHERE T2.year = 2015 |
What is the name of the storm active during season aggregates? | CREATE TABLE table_name_48 (name VARCHAR, dates_active VARCHAR) | SELECT name FROM table_name_48 WHERE dates_active = "season aggregates" |
What is the lowest amount of money that Craig Stadler won? | CREATE TABLE table_name_64 (money___ INTEGER, player VARCHAR) | SELECT MIN(money___) AS $__ FROM table_name_64 WHERE player = "craig stadler" |
What is Aberdeen team's date of vacancy? | CREATE TABLE table_name_37 (date_of_vacancy VARCHAR, team VARCHAR) | SELECT date_of_vacancy FROM table_name_37 WHERE team = "aberdeen" |
What was the score when the record 56-46 was met? | CREATE TABLE table_name_7 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_7 WHERE record = "56-46" |
Name the IHSAA class with county 18 delaware and tigers mascot | CREATE TABLE table_name_82 (ihsaa_class VARCHAR, _number___county VARCHAR, mascot VARCHAR) | SELECT ihsaa_class FROM table_name_82 WHERE _number___county = "18 delaware" AND mascot = "tigers" |
What is the total year with a Team of scuderia ferrari, an Engine of ferrari 106 2.5 l4, and more than 12 points? | CREATE TABLE table_name_4 (year INTEGER, points VARCHAR, team VARCHAR, engine VARCHAR) | SELECT SUM(year) FROM table_name_4 WHERE team = "scuderia ferrari" AND engine = "ferrari 106 2.5 l4" AND points > 12 |
Which position does Deshawn Stevenson play? | CREATE TABLE table_11545282_18 (position VARCHAR, player VARCHAR) | SELECT position FROM table_11545282_18 WHERE player = "DeShawn Stevenson" |
When 2011 is the year what is the lowest money list rank? | CREATE TABLE table_24330912_1 (money_list_rank INTEGER, year VARCHAR) | SELECT MIN(money_list_rank) FROM table_24330912_1 WHERE year = 2011 |
Which Week has an Air Date of august 30, 2008? | CREATE TABLE table_name_73 (week VARCHAR, air_date VARCHAR) | SELECT week FROM table_name_73 WHERE air_date = "august 30, 2008" |
What is the date of the game with 40,005 in attendance? | CREATE TABLE table_name_61 (date VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_61 WHERE attendance = "40,005" |
On which date did episode # 18 air in the U.S.? | CREATE TABLE table_26464364_1 (us_air_date VARCHAR, _number VARCHAR) | SELECT us_air_date FROM table_26464364_1 WHERE _number = 18 |
What was the name of the leader whose term ended in 2013? | CREATE TABLE table_name_49 (name VARCHAR, term_end VARCHAR) | SELECT name FROM table_name_49 WHERE term_end = "2013" |
What is the second party where the first party is Tory and the year is 1820? | CREATE TABLE table_name_88 (second_party VARCHAR, first_party VARCHAR, year VARCHAR) | SELECT second_party FROM table_name_88 WHERE first_party = "tory" AND year = 1820 |
What was the venue when Jerran Hart won? | CREATE TABLE table_name_20 (venue VARCHAR, winner VARCHAR) | SELECT venue FROM table_name_20 WHERE winner = "jerran hart" |
What was the rank of tris speaker when BB/SO was 7? | CREATE TABLE table_name_20 (rank VARCHAR, player VARCHAR, bb_so VARCHAR) | SELECT rank FROM table_name_20 WHERE player = "tris speaker" AND bb_so = 7 |
For Pick #323, which round is it? | CREATE TABLE table_name_41 (round VARCHAR, pick__number VARCHAR) | SELECT round FROM table_name_41 WHERE pick__number = 323 |
What was the original air date for the episode with production code 1wab06? | CREATE TABLE table_20726262_2 (originalairdate VARCHAR, production_code VARCHAR) | SELECT originalairdate FROM table_20726262_2 WHERE production_code = "1WAB06" |
What is the original air date for the episode directed by kevin dowling? | CREATE TABLE table_2602958_3 (original_air_date VARCHAR, director VARCHAR) | SELECT original_air_date FROM table_2602958_3 WHERE director = "Kevin Dowling" |
What was the smallest crowd for the Richmond home team? | CREATE TABLE table_name_56 (crowd INTEGER, home_team VARCHAR) | SELECT MIN(crowd) FROM table_name_56 WHERE home_team = "richmond" |
Tell me the venue for winner of nevada and year more than 2004 | CREATE TABLE table_name_7 (venue VARCHAR, winner VARCHAR, year VARCHAR) | SELECT venue FROM table_name_7 WHERE winner = "nevada" AND year > 2004 |
In what Year did the Norton Team have 0 Points and 350cc Class? | CREATE TABLE table_name_81 (year INTEGER, points VARCHAR, class VARCHAR, team VARCHAR) | SELECT AVG(year) FROM table_name_81 WHERE class = "350cc" AND team = "norton" AND points < 0 |
When turquoise is the map colour how many avg. trips per mile (×1000) are there? | CREATE TABLE table_17839_1 (avg_trips_per_mile__ VARCHAR, map_colour VARCHAR) | SELECT COUNT(avg_trips_per_mile__) AS ×1000_ FROM table_17839_1 WHERE map_colour = "Turquoise" |
What episodes had the title ロト6で3億2千万円当てた男 in Japanese? | CREATE TABLE table_name_13 (episodes VARCHAR, japanese_title VARCHAR) | SELECT episodes FROM table_name_13 WHERE japanese_title = "ロト6で3億2千万円当てた男" |
What is the number of final position-tours Mariano Piccoli, who has more than 20 final position-giros, before 1999 has? | CREATE TABLE table_name_95 (final_position___tour VARCHAR, year VARCHAR, final_position___giro VARCHAR, rider VARCHAR) | SELECT COUNT(final_position___tour) FROM table_name_95 WHERE final_position___giro > 20 AND rider = "mariano piccoli" AND year < 1999 |
What points has united kingdom as the country, and 10 as the place? | CREATE TABLE table_name_29 (points VARCHAR, country VARCHAR, place VARCHAR) | SELECT points FROM table_name_29 WHERE country = "united kingdom" AND place = 10 |
Which films does the actor Alla Sergiyko star in? | CREATE TABLE table_10236830_6 (film_name VARCHAR, actors_name VARCHAR) | SELECT film_name FROM table_10236830_6 WHERE actors_name = "Alla Sergiyko" |
How many air dates had 3.2 million viewers? | CREATE TABLE table_26448179_4 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR) | SELECT COUNT(original_air_date) FROM table_26448179_4 WHERE us_viewers__millions_ = "3.2" |
Name the competition for september 10, 2008 | CREATE TABLE table_name_21 (competition VARCHAR, date VARCHAR) | SELECT competition FROM table_name_21 WHERE date = "september 10, 2008" |
How many countries got 796.7 points? | CREATE TABLE table_1059743_2 (rank VARCHAR, points VARCHAR) | SELECT COUNT(rank) FROM table_1059743_2 WHERE points = "796.7" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.