answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT COUNT(*) FROM dogs WHERE NOT dog_id IN (SELECT dog_id FROM treatments)
Tell me the number of dogs that have not received any treatment .
CREATE TABLE treatments (dog_id VARCHAR); CREATE TABLE dogs (dog_id VARCHAR)
SELECT date FROM table_name_7 WHERE venue = "arden street oval"
When did the game at Arden Street Oval occur?
CREATE TABLE table_name_7 (date VARCHAR, venue VARCHAR)
SELECT team FROM table_name_73 WHERE points = "26"
Which team has 26 points?
CREATE TABLE table_name_73 (team VARCHAR, points VARCHAR)
SELECT tournament FROM table_name_7 WHERE score_in_the_final = "6–7, 2–6" AND partner = "wayne arthurs"
Which tournament had a final score of 6–7, 2–6, and a Partner of wayne arthurs?
CREATE TABLE table_name_7 (tournament VARCHAR, score_in_the_final VARCHAR, partner VARCHAR)
SELECT capacity FROM table_name_97 WHERE city_area = "chester"
What is the capacity for the arena in Chester?
CREATE TABLE table_name_97 (capacity VARCHAR, city_area VARCHAR)
SELECT MAX(against) FROM table_name_56 WHERE losses > 9 AND byes = 2 AND draws > 0
Can you tell me the highest Against that has the Losses larger than 9, and the Byes of 2, and the Draws larger than 0?
CREATE TABLE table_name_56 (against INTEGER, draws VARCHAR, losses VARCHAR, byes VARCHAR)
SELECT MAX(won) FROM table_15318779_1 WHERE team = "Palmeiras"
How many games did Palmeiras win?
CREATE TABLE table_15318779_1 (won INTEGER, team VARCHAR)
SELECT edition_s_ FROM table_name_82 WHERE region = "germany"
What is the Edition of the release in Germany?
CREATE TABLE table_name_82 (edition_s_ VARCHAR, region VARCHAR)
SELECT COUNT(lost) FROM table_name_73 WHERE drawn = 1 AND played < 12
What is the total number of losses of the player that has drawn 1 and played smaller than 12?
CREATE TABLE table_name_73 (lost VARCHAR, drawn VARCHAR, played VARCHAR)
SELECT event FROM table_name_11 WHERE method = "submission (rear naked choke)" AND record = "9-4"
What Event used submission (rear naked choke) with 9-4?
CREATE TABLE table_name_11 (event VARCHAR, method VARCHAR, record VARCHAR)
SELECT constituency_number FROM table_name_11 WHERE reserved_for___sc___st__none_ = "st" AND name = "bikhangaon"
What is the Constituency number for Bikhangaon with a Reserved for ( SC / ST /None) of st?
CREATE TABLE table_name_11 (constituency_number VARCHAR, reserved_for___sc___st__none_ VARCHAR, name VARCHAR)
SELECT COUNT(mystic_arte) FROM table_28178595_2 WHERE character = "Hisui (Jadeite) Hearts 1"
How many mystic arte have hisui (jadeite) hearts 1 as the character?
CREATE TABLE table_28178595_2 (mystic_arte VARCHAR, character VARCHAR)
SELECT venue FROM table_name_2 WHERE competition = "friendly match" AND date = "2 june 1992"
In what stadium was the friendly match on 2 June 1992 played in?
CREATE TABLE table_name_2 (venue VARCHAR, competition VARCHAR, date VARCHAR)
SELECT T1.state_province_county FROM Addresses AS T1 JOIN Staff AS T2 ON T1.address_id = T2.staff_address_id GROUP BY T1.state_province_county HAVING COUNT(*) BETWEEN 2 AND 4
List the states which have between 2 to 4 staffs living there.
CREATE TABLE Addresses (state_province_county VARCHAR, address_id VARCHAR); CREATE TABLE Staff (staff_address_id VARCHAR)
SELECT results FROM table_1805191_36 WHERE incumbent = "Marcy Kaptur"
What are the results of those elections for which Marcy Kaptur is the incumbent?
CREATE TABLE table_1805191_36 (results VARCHAR, incumbent VARCHAR)
SELECT tries FROM table_name_16 WHERE date = "06/07/1996"
How many tries took place on 06/07/1996?
CREATE TABLE table_name_16 (tries VARCHAR, date VARCHAR)
SELECT date FROM table_name_89 WHERE opponent = "indiana pacers"
when indiana pacers were the opponent what was the date?
CREATE TABLE table_name_89 (date VARCHAR, opponent VARCHAR)
SELECT type FROM table_name_96 WHERE royal_house = "baasha" AND name = "elah"
What is the type of Leader for the Royal House of Baasha, who is named Elah.
CREATE TABLE table_name_96 (type VARCHAR, royal_house VARCHAR, name VARCHAR)
SELECT player FROM table_name_53 WHERE place = "t8"
Who is the player with a t8 place?
CREATE TABLE table_name_53 (player VARCHAR, place VARCHAR)
SELECT november_3 FROM table_25355501_2 WHERE august_21_22 = "August 22, 1998"
What is shown for november 3 when august 21-22 is august 22, 1998?
CREATE TABLE table_25355501_2 (november_3 VARCHAR, august_21_22 VARCHAR)
SELECT away FROM table_name_28 WHERE time = "14:00"
What is the Away with a Time that is 14:00?
CREATE TABLE table_name_28 (away VARCHAR, time VARCHAR)
SELECT us_hot_100 FROM table_name_29 WHERE year = 2002 AND album = "west coast bad boyz, vol. 3: poppin' collars"
What is the U.S. Hot 100 chart number of the single off of the 2002 album west coast bad boyz, vol. 3: poppin' collars?
CREATE TABLE table_name_29 (us_hot_100 VARCHAR, year VARCHAR, album VARCHAR)
SELECT position FROM table_name_42 WHERE first_election = "2003" AND name = "william d. euille"
What Position does First Elected in 2003 William D. Euille hold ?
CREATE TABLE table_name_42 (position VARCHAR, first_election VARCHAR, name VARCHAR)
SELECT champion FROM table_name_71 WHERE year > 2007 AND finalist = "asvel"
What is Champion, when Year is greater than 2007, and when Finalist is "Asvel"?
CREATE TABLE table_name_71 (champion VARCHAR, year VARCHAR, finalist VARCHAR)
SELECT SUM(withdrawn) FROM table_name_78 WHERE builder = "ac cars" AND introduced < 1958
when was the building withdrawn when the builder was ac cars and was introduced before 1958?
CREATE TABLE table_name_78 (withdrawn INTEGER, builder VARCHAR, introduced VARCHAR)
SELECT census_ranking FROM table_171236_1 WHERE area_km_2 = "34.73"
If the area is 34.73, what is the census ranking?
CREATE TABLE table_171236_1 (census_ranking VARCHAR, area_km_2 VARCHAR)
SELECT role FROM table_name_65 WHERE team = "platense municipal zacatecoluca" AND tournament = "torneo fraternidad/uncaf club championship"
During the Tournament of Torneo Fraternidad/UNCAF Club championship, what is the Role of the Platense Municipal Zacatecoluca Team?
CREATE TABLE table_name_65 (role VARCHAR, team VARCHAR, tournament VARCHAR)
SELECT COUNT(total) FROM table_name_73 WHERE silver = 0 AND bronze = 1 AND rank < 3
How many total show when silver is 0, bronze is 1, and the rank is less than 3?
CREATE TABLE table_name_73 (total VARCHAR, rank VARCHAR, silver VARCHAR, bronze VARCHAR)
SELECT position FROM table_name_70 WHERE overall = 45
What is the position of the player with an overall of 45?
CREATE TABLE table_name_70 (position VARCHAR, overall VARCHAR)
SELECT game FROM table_name_94 WHERE high_rebounds = "jones (10)"
What game has jones (10) as the high rebounds?
CREATE TABLE table_name_94 (game VARCHAR, high_rebounds VARCHAR)
SELECT malayalam_മലയാളം FROM table_1408397_3 WHERE kannada_ಕನ್ನಡ = "Punarvasu ಪುನರ್ವಸು"
What is the Malayalam word for punarvasu ಪುನರ್ವಸು in Kannada?
CREATE TABLE table_1408397_3 (malayalam_മലയാളം VARCHAR, kannada_ಕನ್ನಡ VARCHAR)
SELECT nationality FROM table_name_91 WHERE team = "milwaukee hawks"
What is the nationality for milwaukee hawks?
CREATE TABLE table_name_91 (nationality VARCHAR, team VARCHAR)
SELECT republican_ticket FROM table_name_37 WHERE american_labor_ticket = "spencer c. young"
What name is on the Republican ticket when the American Labor ticket was spencer c. young?
CREATE TABLE table_name_37 (republican_ticket VARCHAR, american_labor_ticket VARCHAR)
SELECT launched FROM table_name_91 WHERE time_elapsed = "158 days (5 months, 8 days)"
What launched has 158 days (5 months, 8 days) as the time elapsed?
CREATE TABLE table_name_91 (launched VARCHAR, time_elapsed VARCHAR)
SELECT SUM(1872) FROM table_name_29 WHERE 1866 > 856 AND 1861 > 1906 AND 1876 > 1990
What is the sum of 1872(s), when 1866 is greater than 856, when 1861 is greater than 1906, and when 1876 is greater than 1990?
CREATE TABLE table_name_29 (Id VARCHAR)
SELECT MIN(year) FROM table_name_4 WHERE position = "12th"
Name the lowest year for 12th position
CREATE TABLE table_name_4 (year INTEGER, position VARCHAR)
SELECT SUM(wins) FROM table_name_82 WHERE points = 26 AND rank < 27
Points of 26, and a Rank smaller than 27 had what sum of wins?
CREATE TABLE table_name_82 (wins INTEGER, points VARCHAR, rank VARCHAR)
SELECT artist FROM table_name_42 WHERE points = 13
Which artist has 13 points?
CREATE TABLE table_name_42 (artist VARCHAR, points VARCHAR)
SELECT game_modes FROM table_name_13 WHERE pinyin = "chāojí mǎlìōu shìjiè"
Which game modes have Pinyin of chāojí mǎlìōu shìjiè?
CREATE TABLE table_name_13 (game_modes VARCHAR, pinyin VARCHAR)
SELECT COUNT(attendance) FROM table_name_90 WHERE opponent = "swindon wildcats"
How much Attendance has an Opponent of swindon wildcats?
CREATE TABLE table_name_90 (attendance VARCHAR, opponent VARCHAR)
SELECT MIN(influence) FROM table_name_58 WHERE population_millions < 60.64 AND meps < 22 AND inhabitants_per_mep = 454 OFFSET 059
What is the lowest influence with population in the millions less than 60.64, and MEPs less than 22, and 454,059 inhabitant per MEP?
CREATE TABLE table_name_58 (influence INTEGER, inhabitants_per_mep VARCHAR, population_millions VARCHAR, meps VARCHAR)
SELECT t1.manufacturer_id, t1.num_of_shops FROM manufacturer AS t1 JOIN furniture_manufacte AS t2 ON t1.manufacturer_id = t2.manufacturer_id ORDER BY t2.Price_in_Dollar DESC LIMIT 1
Find the id and number of shops for the company that produces the most expensive furniture.
CREATE TABLE manufacturer (manufacturer_id VARCHAR, num_of_shops VARCHAR); CREATE TABLE furniture_manufacte (manufacturer_id VARCHAR, Price_in_Dollar VARCHAR)
SELECT MIN(year) FROM table_name_77 WHERE host = "luxembourg"
In what year was Luxembourg Host?
CREATE TABLE table_name_77 (year INTEGER, host VARCHAR)
SELECT captain FROM table_name_51 WHERE team = "manchester city"
Who is the captain of the manchester city team?
CREATE TABLE table_name_51 (captain VARCHAR, team VARCHAR)
SELECT date FROM table_name_71 WHERE status = "five nations" AND against = 7
When has a Status of five nations, and a Against of 7?
CREATE TABLE table_name_71 (date VARCHAR, status VARCHAR, against VARCHAR)
SELECT MAX(laps) FROM table_name_13 WHERE class = "v8" AND entrant = "diet-coke racing"
What was the highest amount of laps when the class was v8 and the entrant was diet-coke racing?
CREATE TABLE table_name_13 (laps INTEGER, class VARCHAR, entrant VARCHAR)
SELECT status FROM table_name_8 WHERE country = "bel" AND transfer_window = "winter"
What is the status of bel with a Transfer window of winter?
CREATE TABLE table_name_8 (status VARCHAR, country VARCHAR, transfer_window VARCHAR)
SELECT AVG(points) FROM table_name_76 WHERE best_time = "01:46.367"
How many points associated with a Best time of 01:46.367?
CREATE TABLE table_name_76 (points INTEGER, best_time VARCHAR)
SELECT T2.emp_fname FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num GROUP BY T1.prof_num HAVING COUNT(*) > 1
Find the first names of professors who are teaching more than one class.
CREATE TABLE employee (emp_fname VARCHAR, emp_num VARCHAR); CREATE TABLE CLASS (prof_num VARCHAR)
SELECT supplier FROM table_name_16 WHERE basic_shape = "flat" AND wrist_pad = "no" AND keys__x_modes_ = "25+"
Which Supplier have a Basic shape of flat, a Wrist pad of no, and Keys (x modes) of 25+?
CREATE TABLE table_name_16 (supplier VARCHAR, keys__x_modes_ VARCHAR, basic_shape VARCHAR, wrist_pad VARCHAR)
SELECT time FROM table_name_30 WHERE rider = "loris capirossi"
What is Loris Capirossi's time?
CREATE TABLE table_name_30 (time VARCHAR, rider VARCHAR)
SELECT nominated_work FROM table_name_15 WHERE year = 2000 AND results = "won"
Which Nominated Work won in 2000?
CREATE TABLE table_name_15 (nominated_work VARCHAR, year VARCHAR, results VARCHAR)
SELECT canadian_chapters FROM table_28436909_4 WHERE founding_date = "1872-10-10"
When 1872-10-10 is the founding date what are the canadian chapters?
CREATE TABLE table_28436909_4 (canadian_chapters VARCHAR, founding_date VARCHAR)
SELECT COUNT(*) FROM employee
Find the total number of employees.
CREATE TABLE employee (Id VARCHAR)
SELECT race_name FROM table_1140113_5 WHERE circuit = "Bordeaux"
What was the name of the race in Bordeaux?
CREATE TABLE table_1140113_5 (race_name VARCHAR, circuit VARCHAR)
SELECT points FROM table_name_90 WHERE tries_for = "correct as of 00:00 11 june 2008"
What is Points, when Tries For is "correct as of 00:00 11 June 2008"?
CREATE TABLE table_name_90 (points VARCHAR, tries_for VARCHAR)
SELECT COUNT(county) FROM table_2572788_1 WHERE milepost = "69.5"
How many counties are at milepost 69.5?
CREATE TABLE table_2572788_1 (county VARCHAR, milepost VARCHAR)
SELECT director_s_ FROM table_name_63 WHERE recipient = "avie luthra"
Who directed the film that Avie Luthra received an award for?
CREATE TABLE table_name_63 (director_s_ VARCHAR, recipient VARCHAR)
SELECT position FROM table_name_11 WHERE college_junior_club_team__league_ = "estevan bruins (wchl)" AND round = 3
Which Position has a College/Junior/Club Team (League) of estevan bruins (wchl), and a Round of 3?
CREATE TABLE table_name_11 (position VARCHAR, college_junior_club_team__league_ VARCHAR, round VARCHAR)
SELECT won FROM table_12807904_3 WHERE try_bonus = "11"
HOW MANY GAMES HAD A WIN WITH A BONUS OF 11
CREATE TABLE table_12807904_3 (won VARCHAR, try_bonus VARCHAR)
SELECT country FROM table_name_38 WHERE director = "julian schnabel"
Tell me the country for julian schnabel
CREATE TABLE table_name_38 (country VARCHAR, director VARCHAR)
SELECT aircraft FROM table_name_57 WHERE in_service = "2" AND origin = "united states" AND versions = "b-58"
Which version B-58 aircraft model originated in the United States has 2 in service?
CREATE TABLE table_name_57 (aircraft VARCHAR, versions VARCHAR, in_service VARCHAR, origin VARCHAR)
SELECT driver FROM table_name_87 WHERE grid < 12 AND time_retired = "+ 3 laps"
What driver has a grid under 12 with a Time/Retired of + 3 laps?
CREATE TABLE table_name_87 (driver VARCHAR, grid VARCHAR, time_retired VARCHAR)
SELECT title FROM table_18734298_1 WHERE production_code = "1ACX09"
What is the title of the production code 1acx09?
CREATE TABLE table_18734298_1 (title VARCHAR, production_code VARCHAR)
SELECT MAX(pos) FROM table_18811741_15 WHERE podiums = 1
What is the highest pos for a driver with 1 podium?
CREATE TABLE table_18811741_15 (pos INTEGER, podiums VARCHAR)
SELECT date FROM table_name_59 WHERE loss = "carman (3-12)"
Name the date with loss of carman (3-12)
CREATE TABLE table_name_59 (date VARCHAR, loss VARCHAR)
SELECT grand_finalist FROM table_1139835_3 WHERE winners = "Collingwood"
what's the grand finalist where winners is collingwood
CREATE TABLE table_1139835_3 (grand_finalist VARCHAR, winners VARCHAR)
SELECT location FROM table_11622255_1 WHERE tournament = "Raley's Senior Gold Rush"
what's the location where tournament is raley's senior gold rush
CREATE TABLE table_11622255_1 (location VARCHAR, tournament VARCHAR)
SELECT away_team FROM table_name_3 WHERE venue = "glenferrie oval"
When the Venue was Glenferrie Oval, who is the Away team?
CREATE TABLE table_name_3 (away_team VARCHAR, venue VARCHAR)
SELECT COUNT(population__2011_) FROM table_name_2 WHERE population__2006_ < 7083 AND population_density < 342.8 AND change___percentage_ = 5 AND area__km²_ > 4.5
What was the Population (2011) when the Population (2006) was less than 7083, and the Population density less than 342.8, and the Change (%) of 5, and an Area (km²) larger than 4.5?
CREATE TABLE table_name_2 (population__2011_ VARCHAR, area__km²_ VARCHAR, change___percentage_ VARCHAR, population__2006_ VARCHAR, population_density VARCHAR)
SELECT to_par FROM table_name_49 WHERE place = "t5" AND player = "larry mize"
What to par has t5 as the place, with larry mize as the player?
CREATE TABLE table_name_49 (to_par VARCHAR, place VARCHAR, player VARCHAR)
SELECT player FROM table_name_96 WHERE original_nfl_team = "oakland raiders"
What player's original team are the Oakland Raiders?
CREATE TABLE table_name_96 (player VARCHAR, original_nfl_team VARCHAR)
SELECT undecided FROM table_name_70 WHERE others = "4%"
What is the Undecided the others was 4%?
CREATE TABLE table_name_70 (undecided VARCHAR, others VARCHAR)
SELECT performer_3 FROM table_name_56 WHERE date = "15 july 1994"
Date of 15 july 1994 involves which performer 3?
CREATE TABLE table_name_56 (performer_3 VARCHAR, date VARCHAR)
SELECT MAX(ngc_number) FROM table_name_12 WHERE object_type = "lenticular galaxy" AND constellation = "hydra"
What is the ngc number when the object type is lenticular galaxy and the constellation is hydra?
CREATE TABLE table_name_12 (ngc_number INTEGER, object_type VARCHAR, constellation VARCHAR)
SELECT COUNT(barony) FROM table_30120556_1 WHERE townland = "Ballyvadona"
How many barony's appear when Ballyvadona is the townland.
CREATE TABLE table_30120556_1 (barony VARCHAR, townland VARCHAR)
SELECT 2005 FROM table_name_3 WHERE 2004 = "3–2"
Which 2005 has a 2004 of 3–2?
CREATE TABLE table_name_3 (Id VARCHAR)
SELECT home_team AS score FROM table_name_99 WHERE venue = "vfl park"
What was the home team score at VFL Park?
CREATE TABLE table_name_99 (home_team VARCHAR, venue VARCHAR)
SELECT attendance FROM table_name_78 WHERE date = "october 6"
What was the attendance on October 6?
CREATE TABLE table_name_78 (attendance VARCHAR, date VARCHAR)
SELECT population, _in_thousands, __1905__ FROM table_name_79 WHERE name_in_polish = "gubernia łomżyńska"
Tell me the population for gubernia łomżyńska
CREATE TABLE table_name_79 (population VARCHAR, _in_thousands VARCHAR, __1905__ VARCHAR, name_in_polish VARCHAR)
SELECT sub_parish__sokn_ FROM table_name_39 WHERE location_of_the_church = "fresvik"
What is the Sub-Parish called that has a church located in Fresvik?
CREATE TABLE table_name_39 (sub_parish__sokn_ VARCHAR, location_of_the_church VARCHAR)
SELECT MAX(last_final) FROM table_2869837_1 WHERE last_title = "1994"
What is the latest year of last final for the club whose last title was in 1994?
CREATE TABLE table_2869837_1 (last_final INTEGER, last_title VARCHAR)
SELECT city_or_town FROM table_name_92 WHERE top_division_titles = "17"
Which City or town has a Top division titles of 17
CREATE TABLE table_name_92 (city_or_town VARCHAR, top_division_titles VARCHAR)
SELECT institution FROM table_name_80 WHERE affiliation = "public" AND location = "black river falls"
What Public Institution is in Black River Falls?
CREATE TABLE table_name_80 (institution VARCHAR, affiliation VARCHAR, location VARCHAR)
SELECT MIN(top_5) FROM table_2182562_2 WHERE avg_finish = "8.2"
What was the top 5 in the year with an average finish of 8.2?
CREATE TABLE table_2182562_2 (top_5 INTEGER, avg_finish VARCHAR)
SELECT start FROM table_name_96 WHERE year = "1956"
Which start has 1956 as the year?
CREATE TABLE table_name_96 (start VARCHAR, year VARCHAR)
SELECT mar_24 FROM table_name_93 WHERE may_26 = "13" AND may_12 = "6"
What is the Mar 24 rank when the May 26 is 13, and the May 12 is 6?
CREATE TABLE table_name_93 (mar_24 VARCHAR, may_26 VARCHAR, may_12 VARCHAR)
SELECT COUNT(report) FROM table_10706961_2 WHERE winning_team = "Forsythe Racing" AND pole_position = "Teo Fabi"
How many reports are there in the race that Forsythe Racing won and Teo Fabi had the pole position in?
CREATE TABLE table_10706961_2 (report VARCHAR, winning_team VARCHAR, pole_position VARCHAR)
SELECT MAX(gold) FROM table_name_16 WHERE total < 3 AND rank = "5" AND silver > 1
What is the largest gold number when the total is less than 3, the rank is 5, and the silver is more than 1?
CREATE TABLE table_name_16 (gold INTEGER, silver VARCHAR, total VARCHAR, rank VARCHAR)
SELECT COUNT(fastest_lap) FROM table_1140083_2 WHERE location = "Dijon-Prenois"
The Dijon-prenois had how many fastest laps?
CREATE TABLE table_1140083_2 (fastest_lap VARCHAR, location VARCHAR)
SELECT MAX(goals_against) FROM table_name_12 WHERE points > 31 AND goal_difference < 9 AND wins = 13 AND draws > 6
What is the highest goals against when points are larger than 31, the goal difference is smaller than 9, wins are 13, and draws are larger than 6?
CREATE TABLE table_name_12 (goals_against INTEGER, draws VARCHAR, wins VARCHAR, points VARCHAR, goal_difference VARCHAR)
SELECT macros FROM table_name_65 WHERE software = "tabula"
Are the there macros in the Tabula software?
CREATE TABLE table_name_65 (macros VARCHAR, software VARCHAR)
SELECT COUNT(gold) FROM table_name_79 WHERE silver = 1 AND nation = "puerto rico" AND total < 1
How many Gold medals did Puerto Rico receive with 1 Silver and a Total of 1 or less?
CREATE TABLE table_name_79 (gold VARCHAR, total VARCHAR, silver VARCHAR, nation VARCHAR)
SELECT MAX(latitude) FROM table_name_24 WHERE township = "kingsley" AND geo_id > 3803942820
what is the highest latitude when the township is kingsley and the geo id is higher than 3803942820?
CREATE TABLE table_name_24 (latitude INTEGER, township VARCHAR, geo_id VARCHAR)
SELECT 2012 FROM table_name_70 WHERE tournament = "grand slam tournaments"
What is the 2012 value at the Grand Slam Tournaments?
CREATE TABLE table_name_70 (tournament VARCHAR)
SELECT COUNT(*) FROM city AS T1 JOIN country AS T2 ON T1.country_id = T2.country_id WHERE T2.country = 'Australia'
How many cities are in Australia?
CREATE TABLE country (country_id VARCHAR, country VARCHAR); CREATE TABLE city (country_id VARCHAR)
SELECT player FROM table_name_1 WHERE round > 5 AND position = "(g)"
Which Player has a Round larger than 5, and a Position of (g)?
CREATE TABLE table_name_1 (player VARCHAR, round VARCHAR, position VARCHAR)
SELECT level FROM table_29697744_1 WHERE position = "7th"
what is the name of the level for the 7th position
CREATE TABLE table_29697744_1 (level VARCHAR, position VARCHAR)
SELECT score FROM table_name_64 WHERE player = "nick taylor (a)"
What is the score of Nick Taylor (a)?
CREATE TABLE table_name_64 (score VARCHAR, player VARCHAR)
SELECT birthplace FROM table_name_86 WHERE real_name = "charles 'chuck' connors"
What Birthplace's Real Name is Charles 'Chuck' Connors?
CREATE TABLE table_name_86 (birthplace VARCHAR, real_name VARCHAR)