question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
What is the lowest attendance at Venue H in Round R2? | CREATE TABLE table_name_27 (attendance INTEGER, venue VARCHAR, round VARCHAR) | SELECT MIN(attendance) FROM table_name_27 WHERE venue = "h" AND round = "r2" |
List the dates of enrollment and completion of the student with personal name "Karson". | CREATE TABLE Student_Course_Enrolment (date_of_enrolment VARCHAR, date_of_completion VARCHAR, student_id VARCHAR); CREATE TABLE Students (student_id VARCHAR, personal_name VARCHAR) | SELECT T1.date_of_enrolment, T1.date_of_completion FROM Student_Course_Enrolment AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id WHERE T2.personal_name = "Karson" |
What to par is located in the united states and has the player by the name of hale irwin? | CREATE TABLE table_name_87 (to_par VARCHAR, country VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_87 WHERE country = "united states" AND player = "hale irwin" |
What is the score of the match with anders järryd as the runner-up? | CREATE TABLE table_name_93 (score VARCHAR, runner_up VARCHAR) | SELECT score FROM table_name_93 WHERE runner_up = "anders järryd" |
What engine was for the vehicle with a cooper t43 chassis? | CREATE TABLE table_name_19 (engine VARCHAR, chassis VARCHAR) | SELECT engine FROM table_name_19 WHERE chassis = "cooper t43" |
what is the engine when the rounds ar all, the tyre is m and the driver is david coulthard? | CREATE TABLE table_name_98 (engine_† VARCHAR, driver VARCHAR, rounds VARCHAR, tyre VARCHAR) | SELECT engine_† FROM table_name_98 WHERE rounds = "all" AND tyre = "m" AND driver = "david coulthard" |
what's the saturday saturnus ( saturn) with wednesday mercurius (mercury) being mercuridi | CREATE TABLE table_1277350_1 (saturday_saturnus___saturn_ VARCHAR, wednesday_mercurius__mercury_ VARCHAR) | SELECT saturday_saturnus___saturn_ FROM table_1277350_1 WHERE wednesday_mercurius__mercury_ = "Mercuridi" |
Find the number of vocal types used in song "Le Pop" | CREATE TABLE vocals (songid VARCHAR); CREATE TABLE songs (songid VARCHAR) | SELECT COUNT(*) FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = "Le Pop" |
What is the total number of Total when Germany is the nation with less than 1 silver? | CREATE TABLE table_name_35 (total VARCHAR, nation VARCHAR, silver VARCHAR) | SELECT COUNT(total) FROM table_name_35 WHERE nation = "germany" AND silver < 1 |
How many were won when there were 49 points? | CREATE TABLE table_17369472_2 (won VARCHAR, points VARCHAR) | SELECT won FROM table_17369472_2 WHERE points = "49" |
What is the date of birth of Henry Qiodravu? | CREATE TABLE table_name_49 (date_of_birth__age_ VARCHAR, player VARCHAR) | SELECT date_of_birth__age_ FROM table_name_49 WHERE player = "henry qiodravu" |
What is the Annual Generation at Kawerau (Bope)? | CREATE TABLE table_name_83 (annual_generation__average_gwh_ VARCHAR, name VARCHAR) | SELECT annual_generation__average_gwh_ FROM table_name_83 WHERE name = "kawerau (bope)" |
How many wins are related to events of 7 and more than 2 top-10s? | CREATE TABLE table_name_95 (wins VARCHAR, events VARCHAR, top_10 VARCHAR) | SELECT COUNT(wins) FROM table_name_95 WHERE events = 7 AND top_10 > 2 |
What is the broadcast date of the 16mm t/r episode? | CREATE TABLE table_1849243_1 (broadcast_date VARCHAR, archive VARCHAR) | SELECT broadcast_date FROM table_1849243_1 WHERE archive = "16mm t/r" |
How long did Witold Latoszek character lasted? | CREATE TABLE table_name_53 (duration VARCHAR, character VARCHAR) | SELECT duration FROM table_name_53 WHERE character = "witold latoszek" |
Tell me the total number of snatches for clean and jerk more than 132.5 when the total kg was 315 and bodyweight was 68.63 | CREATE TABLE table_name_62 (snatch VARCHAR, bodyweight VARCHAR, total__kg_ VARCHAR, clean_ VARCHAR, _jerk VARCHAR) | SELECT COUNT(snatch) FROM table_name_62 WHERE clean_ & _jerk > 132.5 AND total__kg_ = 315 AND bodyweight = 68.63 |
What is Rider, when Grid is less than 16, when Laps is 21, when Manufacturer is Honda, and when Time is +10.583? | CREATE TABLE table_name_67 (rider VARCHAR, time VARCHAR, manufacturer VARCHAR, grid VARCHAR, laps VARCHAR) | SELECT rider FROM table_name_67 WHERE grid < 16 AND laps = 21 AND manufacturer = "honda" AND time = "+10.583" |
Which Laps have a Time of +23.002, and a Grid smaller than 11? | CREATE TABLE table_name_5 (laps INTEGER, time VARCHAR, grid VARCHAR) | SELECT AVG(laps) FROM table_name_5 WHERE time = "+23.002" AND grid < 11 |
Which Episodes have a TV Station of tbs, and a Japanese Title of 今夜ひとりのベッドで? | CREATE TABLE table_name_79 (episodes INTEGER, tv_station VARCHAR, japanese_title VARCHAR) | SELECT MAX(episodes) FROM table_name_79 WHERE tv_station = "tbs" AND japanese_title = "今夜ひとりのベッドで" |
WHAT POSITION HAS A PICK SMALLER THAN 33, AND PLAYER BEING DARRELL ARTHUR? | CREATE TABLE table_name_67 (position VARCHAR, pick VARCHAR, player VARCHAR) | SELECT position FROM table_name_67 WHERE pick < 33 AND player = "darrell arthur" |
Name the number of vocalists for which one ~ is it? | CREATE TABLE table_2144389_8 (vocalist VARCHAR, japanese_translation VARCHAR) | SELECT COUNT(vocalist) FROM table_2144389_8 WHERE japanese_translation = "Which One ~ Is It?" |
What is the constructor for the driver with grid less than 2? | CREATE TABLE table_name_6 (constructor VARCHAR, grid INTEGER) | SELECT constructor FROM table_name_6 WHERE grid < 2 |
What is the lowest rank of Gatwick Airport? | CREATE TABLE table_18118221_1 (rank INTEGER, railway_station VARCHAR) | SELECT MIN(rank) FROM table_18118221_1 WHERE railway_station = "Gatwick Airport" |
Which Player has a Score of 67-72-71-75=285? | CREATE TABLE table_name_22 (player VARCHAR, score VARCHAR) | SELECT player FROM table_name_22 WHERE score = 67 - 72 - 71 - 75 = 285 |
who had high rebounds when score is w 111–92 (ot) | CREATE TABLE table_13762472_4 (high_rebounds VARCHAR, score VARCHAR) | SELECT high_rebounds FROM table_13762472_4 WHERE score = "W 111–92 (OT)" |
What is the total amount of world records for Roger Francois? | CREATE TABLE table_name_54 (roger_françois VARCHAR, world_record VARCHAR) | SELECT roger_françois FROM table_name_54 WHERE world_record = "total" |
Name the pronunciation for 傳 | CREATE TABLE table_name_83 (pronunciation_a VARCHAR, word VARCHAR) | SELECT pronunciation_a FROM table_name_83 WHERE word = "傳" |
What are the numbers of races for each constructor id? | CREATE TABLE constructorStandings (constructorid VARCHAR) | SELECT COUNT(*), constructorid FROM constructorStandings GROUP BY constructorid |
What is the bore for a 9-cyl radial on a 9 AD? | CREATE TABLE table_name_8 (bore VARCHAR, cyl VARCHAR, name VARCHAR) | SELECT bore FROM table_name_8 WHERE cyl = "9-cyl radial" AND name = "9 ad" |
What is the issue price (proof) where the issue price (bu) is 34.95? | CREATE TABLE table_11916083_1 (issue_price__proof_ VARCHAR, issue_price__bu_ VARCHAR, _clarification_needed_ VARCHAR) | SELECT issue_price__proof_ FROM table_11916083_1 WHERE issue_price__bu_[_clarification_needed_] = "34.95" |
Call sign of k43hb-ld is what virtual channel? | CREATE TABLE table_name_13 (virtual_channel VARCHAR, call_sign VARCHAR) | SELECT virtual_channel FROM table_name_13 WHERE call_sign = "k43hb-ld" |
Which Opposing Team has a Venue of rectory ground, devonport? | CREATE TABLE table_name_14 (opposing_team VARCHAR, venue VARCHAR) | SELECT opposing_team FROM table_name_14 WHERE venue = "rectory ground, devonport" |
What was the TNS-Sofres when the Iflop was 5%? | CREATE TABLE table_name_2 (tns_sofres_6_2_09 VARCHAR, ifop_5_30_09 VARCHAR) | SELECT tns_sofres_6_2_09 FROM table_name_2 WHERE ifop_5_30_09 = "5%" |
Which format's catalog designation was 21-382a? | CREATE TABLE table_name_95 (format VARCHAR, catalog VARCHAR) | SELECT format FROM table_name_95 WHERE catalog = "21-382a" |
What English word has the same meaning as the German word "german"? | CREATE TABLE table_name_3 (english VARCHAR) | SELECT english FROM table_name_3 WHERE "german" = "german" |
Tell me the position for round less than 3 | CREATE TABLE table_name_1 (position VARCHAR, round INTEGER) | SELECT position FROM table_name_1 WHERE round < 3 |
Which Opponent had a Score of 6-3, 6-2? | CREATE TABLE table_name_67 (opponent VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_67 WHERE score = "6-3, 6-2" |
What is the indigenous mining production of the country that uses 3.4% of the world demand? | CREATE TABLE table_15624586_2 (indigenous_mining_production_2006 VARCHAR, _percentage_of_world_demand VARCHAR) | SELECT indigenous_mining_production_2006 FROM table_15624586_2 WHERE _percentage_of_world_demand = "3.4%" |
What kind of Week 2 that has a Week 1 of mandy ashford? | CREATE TABLE table_name_91 (week_2 VARCHAR, week_1 VARCHAR) | SELECT week_2 FROM table_name_91 WHERE week_1 = "mandy ashford" |
Which Silver has a Total of 11, and a Gold smaller than 8? | CREATE TABLE table_name_31 (silver INTEGER, total VARCHAR, gold VARCHAR) | SELECT MIN(silver) FROM table_name_31 WHERE total = 11 AND gold < 8 |
What is the goal difference for entries with more than 6 draws, a position lower than 12, and fewer than 9 wins? | CREATE TABLE table_name_97 (goal_difference VARCHAR, wins VARCHAR, draws VARCHAR, position VARCHAR) | SELECT goal_difference FROM table_name_97 WHERE draws > 6 AND position > 12 AND wins < 9 |
Attendance of 35,842 had what date? | CREATE TABLE table_name_77 (date VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_77 WHERE attendance = "35,842" |
Who was the writer of the episode that originally aired on October 14, 1968? | CREATE TABLE table_25800134_13 (writer_s_ VARCHAR, airdate VARCHAR) | SELECT writer_s_ FROM table_25800134_13 WHERE airdate = "October 14, 1968" |
who wrote with original air date being september23,1995 | CREATE TABLE table_14637853_3 (written_by VARCHAR, original_air_date VARCHAR) | SELECT written_by FROM table_14637853_3 WHERE original_air_date = "September23,1995" |
Tell me the player with overs of 87.4 | CREATE TABLE table_name_91 (player VARCHAR, overs VARCHAR) | SELECT player FROM table_name_91 WHERE overs = "87.4" |
What is the highest rank for the boys swimming team in Albuquerque? | CREATE TABLE table_name_72 (rank INTEGER, sport VARCHAR, city VARCHAR) | SELECT MAX(rank) FROM table_name_72 WHERE sport = "boys swimming" AND city = "albuquerque" |
What's the sum of Losses that Scored larger than 15, has Points that's larger than 16, and Played that's larger than 9? | CREATE TABLE table_name_15 (losses INTEGER, played VARCHAR, scored VARCHAR, points VARCHAR) | SELECT SUM(losses) FROM table_name_15 WHERE scored > 15 AND points > 16 AND played > 9 |
What is the score when there are less than 2 goals? | CREATE TABLE table_name_18 (score VARCHAR, goal INTEGER) | SELECT score FROM table_name_18 WHERE goal < 2 |
Which Calendar has a User-selectable themes of user-selectable themes? | CREATE TABLE table_name_95 (calendar VARCHAR, user_selectable_themes VARCHAR) | SELECT calendar FROM table_name_95 WHERE user_selectable_themes = "user-selectable themes" |
Show all countries and the number of people from each country. | CREATE TABLE people (country VARCHAR) | SELECT country, COUNT(*) FROM people GROUP BY country |
What date was Colorado the home team? | CREATE TABLE table_name_85 (date VARCHAR, home VARCHAR) | SELECT date FROM table_name_85 WHERE home = "colorado" |
How many games were recorded when the team was @ Memphis? | CREATE TABLE table_17326036_6 (game VARCHAR, team VARCHAR) | SELECT COUNT(game) FROM table_17326036_6 WHERE team = "@ Memphis" |
Which rounds were held on August 9? | CREATE TABLE table_10725629_2 (rnd VARCHAR, date VARCHAR) | SELECT rnd FROM table_10725629_2 WHERE date = "August 9" |
What is the score when high points is from pierce (30)? | CREATE TABLE table_11959669_6 (score VARCHAR, high_points VARCHAR) | SELECT score FROM table_11959669_6 WHERE high_points = "Pierce (30)" |
When did the episode air that had 7.3 viewers? | CREATE TABLE table_name_65 (air_date VARCHAR, viewers VARCHAR) | SELECT air_date FROM table_name_65 WHERE viewers = 7.3 |
How many totals have 0 as Gold, a bronze greater than 1, and a silver less than 1? | CREATE TABLE table_name_94 (total VARCHAR, silver VARCHAR, gold VARCHAR, bronze VARCHAR) | SELECT COUNT(total) FROM table_name_94 WHERE gold = 0 AND bronze > 1 AND silver < 1 |
Who were the opponents on January 27? | CREATE TABLE table_name_34 (opponent VARCHAR, january VARCHAR) | SELECT opponent FROM table_name_34 WHERE january = 27 |
What NFL Team has the player Danny Triplett with the position linebacker? | CREATE TABLE table_2508633_11 (nfl_team VARCHAR, position VARCHAR, player VARCHAR) | SELECT nfl_team FROM table_2508633_11 WHERE position = "Linebacker" AND player = "Danny Triplett" |
What is the date that the item was laid down if it was launched on 1899-04-25? | CREATE TABLE table_name_95 (laid_down VARCHAR, launched VARCHAR) | SELECT laid_down FROM table_name_95 WHERE launched = "1899-04-25" |
Which lap number had a grid number of less than 17 when the driver was Giancarlo Fisichella? | CREATE TABLE table_name_1 (laps VARCHAR, grid VARCHAR, driver VARCHAR) | SELECT COUNT(laps) FROM table_name_1 WHERE grid < 17 AND driver = "giancarlo fisichella" |
When did Samsung Electronics Co LTD make the GT-i9100? | CREATE TABLE table_name_99 (date VARCHAR, company_name VARCHAR, hardware_model VARCHAR) | SELECT date FROM table_name_99 WHERE company_name = "samsung electronics co ltd" AND hardware_model = "gt-i9100" |
What is the card type code with most number of cards? | CREATE TABLE Customers_cards (card_type_code VARCHAR) | SELECT card_type_code FROM Customers_cards GROUP BY card_type_code ORDER BY COUNT(*) DESC LIMIT 1 |
Which year or years did a team win 174 games and had an assist number less than 17? | CREATE TABLE table_name_40 (years VARCHAR, assist VARCHAR, games VARCHAR) | SELECT years FROM table_name_40 WHERE assist < 17 AND games = 174 |
What are the games behind for the Oklahoma City Thunder division? | CREATE TABLE table_name_49 (games_behind__gb_ VARCHAR, division__div_ VARCHAR) | SELECT games_behind__gb_ FROM table_name_49 WHERE division__div_ = "oklahoma city thunder" |
What is the Time when the Set 2 is 25–21, on 29 may? | CREATE TABLE table_name_91 (time VARCHAR, set_2 VARCHAR, date VARCHAR) | SELECT time FROM table_name_91 WHERE set_2 = "25–21" AND date = "29 may" |
What is Name, when Builder is "Kerr Stuart"? | CREATE TABLE table_name_54 (name VARCHAR, builder VARCHAR) | SELECT name FROM table_name_54 WHERE builder = "kerr stuart" |
what is the class when the quantity is 4? | CREATE TABLE table_name_96 (class VARCHAR, quantity VARCHAR) | SELECT class FROM table_name_96 WHERE quantity = 4 |
What is draft detail of the document with id 7? | CREATE TABLE Document_Drafts (draft_details VARCHAR, document_id VARCHAR) | SELECT draft_details FROM Document_Drafts WHERE document_id = 7 |
Which Part number(s) has a L3 cache of 8 mb and a sSpec number of sr0pl(e1)? | CREATE TABLE table_name_71 (part_number_s_ VARCHAR, l3_cache VARCHAR, sspec_number VARCHAR) | SELECT part_number_s_ FROM table_name_71 WHERE l3_cache = "8 mb" AND sspec_number = "sr0pl(e1)" |
Which season was Manresa the champion? | CREATE TABLE table_name_46 (season VARCHAR, champion VARCHAR) | SELECT season FROM table_name_46 WHERE champion = "manresa" |
Which county has 728 (43%) listed under C. Abate? | CREATE TABLE table_name_4 (county VARCHAR, c_abate VARCHAR) | SELECT county FROM table_name_4 WHERE c_abate = "728 (43%)" |
What is the total number of losses that have 1 draw and games over 7? | CREATE TABLE table_name_31 (lost VARCHAR, drawn VARCHAR, games VARCHAR) | SELECT COUNT(lost) FROM table_name_31 WHERE drawn = 1 AND games > 7 |
Which Opponent has a Rockets score of 107? | CREATE TABLE table_name_25 (opponent VARCHAR, rockets_score VARCHAR) | SELECT opponent FROM table_name_25 WHERE rockets_score = 107 |
WHAT SCORE WAS ON SEPTEMBER 21? | CREATE TABLE table_name_50 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_50 WHERE date = "september 21" |
What County was the Obama% at 41.7%? | CREATE TABLE table_20750731_1 (county VARCHAR, obama_percentage VARCHAR) | SELECT county FROM table_20750731_1 WHERE obama_percentage = "41.7%" |
What is the Nationality of the athlete in 1999 Fort-de-France in the Triple Jump? | CREATE TABLE table_name_12 (nationality VARCHAR, games VARCHAR, event VARCHAR) | SELECT nationality FROM table_name_12 WHERE games = "1999 fort-de-france" AND event = "triple jump" |
Can you tell me the sum of Matches that has the Goals of 103, and the Rank larger than 9? | CREATE TABLE table_name_7 (matches INTEGER, goals VARCHAR, rank VARCHAR) | SELECT SUM(matches) FROM table_name_7 WHERE goals = 103 AND rank > 9 |
Name the stops for stations 36 | CREATE TABLE table_2385460_1 (stops VARCHAR, stations VARCHAR) | SELECT stops FROM table_2385460_1 WHERE stations = 36 |
What is the name of the city which incorporated on july 16, 1860? | CREATE TABLE table_28367242_1 (name VARCHAR, incorporation_date__city_ VARCHAR) | SELECT name FROM table_28367242_1 WHERE incorporation_date__city_ = "July 16, 1860" |
Which eagle riders whose ova (harmony gold dub) is dr. kozaburo nambu? | CREATE TABLE table_17480471_3 (eagle_riders VARCHAR, ova__harmony_gold_dub_ VARCHAR) | SELECT eagle_riders FROM table_17480471_3 WHERE ova__harmony_gold_dub_ = "Dr. Kozaburo Nambu" |
What is the number for future stem for poztu? | CREATE TABLE table_12784134_24 (future_stem VARCHAR, perfect_stem VARCHAR) | SELECT COUNT(future_stem) FROM table_12784134_24 WHERE perfect_stem = "poztu" |
What is the number of points against when the tries against was 53? | CREATE TABLE table_name_19 (points_against VARCHAR, tries_against VARCHAR) | SELECT points_against FROM table_name_19 WHERE tries_against = "53" |
What is the name from the 2002 season, and acquired via free agency? | CREATE TABLE table_name_80 (name VARCHAR, season VARCHAR, acquisition_via VARCHAR) | SELECT name FROM table_name_80 WHERE season = "2002" AND acquisition_via = "free agency" |
Which Transfer fee has a Moving from of youth system, and a Nat of mar? | CREATE TABLE table_name_10 (transfer_fee VARCHAR, moving_from VARCHAR, nat VARCHAR) | SELECT transfer_fee FROM table_name_10 WHERE moving_from = "youth system" AND nat = "mar" |
Name the surface for australian open for winner | CREATE TABLE table_2009095_2 (surface VARCHAR, championship VARCHAR, outcome VARCHAR) | SELECT surface FROM table_2009095_2 WHERE championship = "Australian Open" AND outcome = "Winner" |
Which location had previous champions of Mike Webb and Nick Fahrenheit? | CREATE TABLE table_name_93 (location VARCHAR, previous_champion_s_ VARCHAR) | SELECT location FROM table_name_93 WHERE previous_champion_s_ = "mike webb and nick fahrenheit" |
What's the sales breakdown for Nintendo's Mario Kart DS? | CREATE TABLE table_21458142_1 (sales_breakdown VARCHAR, publisher VARCHAR, title VARCHAR) | SELECT sales_breakdown FROM table_21458142_1 WHERE publisher = "Nintendo" AND title = "Mario Kart DS" |
What is the product category description and unit of measurement of category "Herbs"? | CREATE TABLE ref_product_categories (product_category_description VARCHAR, unit_of_measure VARCHAR, product_category_code VARCHAR) | SELECT product_category_description, unit_of_measure FROM ref_product_categories WHERE product_category_code = "Herbs" |
Who plays g position for the st. louis bombers? | CREATE TABLE table_name_69 (player VARCHAR, team VARCHAR, position VARCHAR) | SELECT player FROM table_name_69 WHERE team = "st. louis bombers" AND position = "g" |
What is the area of the school with a decile of 2 and a roll number 222? | CREATE TABLE table_name_33 (area VARCHAR, decile VARCHAR, roll VARCHAR) | SELECT area FROM table_name_33 WHERE decile = "2" AND roll = "222" |
What was the position of the team with an average finish of 21.5? | CREATE TABLE table_2182562_2 (position VARCHAR, avg_finish VARCHAR) | SELECT position FROM table_2182562_2 WHERE avg_finish = "21.5" |
What is Jimmy Smith's opponent's record? | CREATE TABLE table_name_70 (record VARCHAR, opponent VARCHAR) | SELECT record FROM table_name_70 WHERE opponent = "jimmy smith" |
How many votes passed are listed on the measure that had 390338 yes votes? | CREATE TABLE table_256286_40 (passed VARCHAR, yes_votes VARCHAR) | SELECT COUNT(passed) FROM table_256286_40 WHERE yes_votes = 390338 |
What is the average Founded for chicopee, massachusetts? | CREATE TABLE table_name_59 (founded INTEGER, location VARCHAR) | SELECT AVG(founded) FROM table_name_59 WHERE location = "chicopee, massachusetts" |
Name the bubbles for onscroll | CREATE TABLE table_name_12 (bubbles VARCHAR, attribute VARCHAR) | SELECT bubbles FROM table_name_12 WHERE attribute = "onscroll" |
What Position did the Hamilton Tiger-Cats (via Ottawa) pick in the 2006 Draft. | CREATE TABLE table_10812938_4 (position VARCHAR, cfl_team VARCHAR) | SELECT position FROM table_10812938_4 WHERE cfl_team = "Hamilton Tiger-Cats (via Ottawa)" |
For clubs that have 0 gold and less than 5 points, what is the average amount of bronze medals? | CREATE TABLE table_name_43 (bronze INTEGER, points VARCHAR, gold VARCHAR) | SELECT AVG(bronze) FROM table_name_43 WHERE points < 5 AND gold < 0 |
What is the region 2 (UK) date associated with a region 4 (Aus) date of July 31, 2008? | CREATE TABLE table_240936_2 (region_2__uk_ VARCHAR, region_4__australia_ VARCHAR) | SELECT region_2__uk_ FROM table_240936_2 WHERE region_4__australia_ = "July 31, 2008" |
On what Date was the Attendance 73,405? | CREATE TABLE table_name_32 (date VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_32 WHERE attendance = "73,405" |
What is the date for home team Collingwood? | CREATE TABLE table_name_19 (date VARCHAR, home_team VARCHAR) | SELECT date FROM table_name_19 WHERE home_team = "collingwood" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.