answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT end_source FROM table_name_51 WHERE loan_club = "hartlepool united"
What is the End Source from the Hartlepool United Loan Club?
CREATE TABLE table_name_51 (end_source VARCHAR, loan_club VARCHAR)
SELECT title FROM table_28037619_2 WHERE written_by = "David Matthews"
What is the name of the episode written by David Matthews?
CREATE TABLE table_28037619_2 (title VARCHAR, written_by VARCHAR)
SELECT nationality FROM table_11545282_17 WHERE years_for_jazz = "1987-89"
Name the nationality who played for 1987-89?
CREATE TABLE table_11545282_17 (nationality VARCHAR, years_for_jazz VARCHAR)
SELECT region FROM table_name_41 WHERE format = "digital" AND date = "19 july 2008"
In what region was Degeneration released in digital format on 19 July 2008?
CREATE TABLE table_name_41 (region VARCHAR, format VARCHAR, date VARCHAR)
SELECT nationality FROM table_name_88 WHERE name = "aurore mongel"
Swimmer Aurore Mongel has what nationality?
CREATE TABLE table_name_88 (nationality VARCHAR, name VARCHAR)
SELECT result FROM table_name_22 WHERE category = "choice tv actor: drama"
What is the result of the choice tv actor: drama category?
CREATE TABLE table_name_22 (result VARCHAR, category VARCHAR)
SELECT MIN(rank) FROM table_21100348_10 WHERE player = "Michael Bevan"
What was the smallest numbered rank for Michael Bevan?
CREATE TABLE table_21100348_10 (rank INTEGER, player VARCHAR)
SELECT number_of_deputies FROM table_13746866_2 WHERE number_of_votes_received < 1549176.2765483726 AND election_date = 1969
what's the number of deputies with number of votes received being smaller than 1549176.2765483726 and election date being 1969
CREATE TABLE table_13746866_2 (number_of_deputies VARCHAR, number_of_votes_received VARCHAR, election_date VARCHAR)
SELECT frequency_mhz FROM table_name_28 WHERE city_of_license = "allapattah, florida"
Give me the MHz Frequency of Allapattah, Florida.
CREATE TABLE table_name_28 (frequency_mhz VARCHAR, city_of_license VARCHAR)
SELECT score FROM table_name_12 WHERE away_team = "torquay united"
What is the Score when the Away Team is Torquay United?
CREATE TABLE table_name_12 (score VARCHAR, away_team VARCHAR)
SELECT mark FROM table_name_83 WHERE lane < 2 AND heat < 5
What is the mark for the runner in lanes under 2 and heats under 5?
CREATE TABLE table_name_83 (mark VARCHAR, lane VARCHAR, heat VARCHAR)
SELECT T1.outcome_description FROM Research_outcomes AS T1 JOIN Project_outcomes AS T2 ON T1.outcome_code = T2.outcome_code JOIN Projects AS T3 ON T2.project_id = T3.project_id WHERE T3.project_details = 'sint'
What are the result description of the project whose detail is 'sint'?
CREATE TABLE Project_outcomes (outcome_code VARCHAR, project_id VARCHAR); CREATE TABLE Research_outcomes (outcome_description VARCHAR, outcome_code VARCHAR); CREATE TABLE Projects (project_id VARCHAR, project_details VARCHAR)
SELECT candidates FROM table_1341843_44 WHERE incumbent = "Richard C. White"
Who was the candidate when the incumbent was Richard C. White?
CREATE TABLE table_1341843_44 (candidates VARCHAR, incumbent VARCHAR)
SELECT MAX(area__km²_) FROM table_1307842_6 WHERE member_countries = "Austria"
What is Austria's maximum area (km2)?
CREATE TABLE table_1307842_6 (area__km²_ INTEGER, member_countries VARCHAR)
SELECT result FROM table_name_76 WHERE round < 7 AND opponent = "melbourne storm"
what is the result when the round is less than 7 and the opponent is melbourne storm?
CREATE TABLE table_name_76 (result VARCHAR, round VARCHAR, opponent VARCHAR)
SELECT high_rebounds FROM table_name_62 WHERE score = "w 81-69"
Which High rebounds has a Score of w 81-69?
CREATE TABLE table_name_62 (high_rebounds VARCHAR, score VARCHAR)
SELECT film_title_used_in_nomination FROM table_name_14 WHERE language = "german" AND original_name = "mama, ich lebe"
What is the title of the German film that is originally called Mama, Ich Lebe?
CREATE TABLE table_name_14 (film_title_used_in_nomination VARCHAR, language VARCHAR, original_name VARCHAR)
SELECT city FROM table_name_45 WHERE rank > 15 AND floors > 43
What city has a building ranked greater than 15 with floors greater than 43?
CREATE TABLE table_name_45 (city VARCHAR, rank VARCHAR, floors VARCHAR)
SELECT area FROM table_name_17 WHERE authority = "state" AND gender = "coed" AND roll = 122
What is the area of the coed school with a state authority and a roll number of 122?
CREATE TABLE table_name_17 (area VARCHAR, roll VARCHAR, authority VARCHAR, gender VARCHAR)
SELECT final FROM table_name_88 WHERE event = "middleweight –75 kg"
What is the final for middleweight –75 kg?
CREATE TABLE table_name_88 (final VARCHAR, event VARCHAR)
SELECT line FROM table_name_82 WHERE name = "geumjeong tunnel"
Which line is the Geumjeong tunnel?
CREATE TABLE table_name_82 (line VARCHAR, name VARCHAR)
SELECT COUNT(matches) FROM table_name_5 WHERE drawn < 24 AND lost < 17 AND win__percentage < 31.25
Drawn smaller than 24, and a Lost smaller than 17, and a Win % smaller than 31.25 had how many total number of matches?
CREATE TABLE table_name_5 (matches VARCHAR, win__percentage VARCHAR, drawn VARCHAR, lost VARCHAR)
SELECT position FROM table_11803648_20 WHERE overall = "126"
What position is associated with an overall value of 126?
CREATE TABLE table_11803648_20 (position VARCHAR, overall VARCHAR)
SELECT date FROM table_name_53 WHERE record = "2–1"
On what date was the record 2–1?
CREATE TABLE table_name_53 (date VARCHAR, record VARCHAR)
SELECT MAX(draws) FROM table_name_20 WHERE losses < 3 AND wins > 16
What is the draws when there are less than 3 losses and more than 16 wins?
CREATE TABLE table_name_20 (draws INTEGER, losses VARCHAR, wins VARCHAR)
SELECT result FROM table_1342233_3 WHERE incumbent = "Frank W. Boykin"
what the was the final in which frank w. boykin was running
CREATE TABLE table_1342233_3 (result VARCHAR, incumbent VARCHAR)
SELECT date_of_issue FROM table_name_43 WHERE design = "john belisle, kosta tsetsekas"
What date was the John Belisle, Kosta Tsetsekas stamp issued?
CREATE TABLE table_name_43 (date_of_issue VARCHAR, design VARCHAR)
SELECT customer_first_name, customer_last_name FROM Customers EXCEPT SELECT T1.customer_first_name, T1.customer_last_name FROM Customers AS T1 JOIN Accounts AS T2 ON T1.customer_id = T2.customer_id
Show the first names and last names of customers without any account.
CREATE TABLE Accounts (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR)
SELECT vehlefanz FROM table_11680175_1 WHERE bärenklau = "1.288"
What was the number for Vehlefanz where Bärenklau is 1.288?
CREATE TABLE table_11680175_1 (vehlefanz VARCHAR, bärenklau VARCHAR)
SELECT round FROM table_name_74 WHERE opponent = "sofia bagherdai"
What round did the fight against Sofia Bagherdai go to?
CREATE TABLE table_name_74 (round VARCHAR, opponent VARCHAR)
SELECT T1.name FROM constructors AS T1 JOIN constructorstandings AS T2 ON T1.constructorid = T2.constructorid WHERE T1.nationality = "Japanese" AND T2.points > 5
Find the names of Japanese constructors that have once earned more than 5 points?
CREATE TABLE constructorstandings (constructorid VARCHAR, points VARCHAR); CREATE TABLE constructors (name VARCHAR, constructorid VARCHAR, nationality VARCHAR)
SELECT t1.name FROM driver AS t1 JOIN school_bus AS t2 ON t1.driver_id = t2.driver_id ORDER BY years_working DESC LIMIT 1
find the name of driver who is driving the school bus with the longest working history.
CREATE TABLE school_bus (driver_id VARCHAR); CREATE TABLE driver (name VARCHAR, driver_id VARCHAR)
SELECT MIN(class) AS position FROM table_name_59 WHERE drivers = "les palmer, terry morris" AND position > 23
What is the smallest Class Position that has drivers Les Palmer, Terry Morris, and a Position larger than 23?
CREATE TABLE table_name_59 (class INTEGER, drivers VARCHAR, position VARCHAR)
SELECT attendance FROM table_name_21 WHERE week < 5 AND date = "no game scheduled"
What was the attendance for weeks prior to 5 when there was no game scheduled?
CREATE TABLE table_name_21 (attendance VARCHAR, week VARCHAR, date VARCHAR)
SELECT cabinet FROM table_name_42 WHERE year > 1981 AND fractievoorzitter = "hans van mierlo" AND chair = "w.i.j.m. vrijhoef"
What is Cabinet, when Year is after 1981, when Fractievoorzitter is "Hans Van Mierlo", and when Chair is "W.I.J.M. Vrijhoef"?
CREATE TABLE table_name_42 (cabinet VARCHAR, chair VARCHAR, year VARCHAR, fractievoorzitter VARCHAR)
SELECT uci_points FROM table_name_88 WHERE team = "rabobank"
How many UCI points did Rabobank score?
CREATE TABLE table_name_88 (uci_points VARCHAR, team VARCHAR)
SELECT 1993 FROM table_name_7 WHERE 1992 = "sf" AND tournament = "paris"
What is 1993, when 1992 is "SF", and when Tournament is "Paris"?
CREATE TABLE table_name_7 (tournament VARCHAR)
SELECT result FROM table_17928023_1 WHERE game_site = "Schaefer Stadium"
For game site Schaefer Stadium, what were the results?
CREATE TABLE table_17928023_1 (result VARCHAR, game_site VARCHAR)
SELECT height_in_ft FROM table_name_2 WHERE school_club_team_country = "benetton treviso, italy"
What is the height of the player from Benetton Treviso, Italy?
CREATE TABLE table_name_2 (height_in_ft VARCHAR, school_club_team_country VARCHAR)
SELECT team FROM table_name_85 WHERE fin_pos = "7"
Which team had a driver with a finish position of 7?
CREATE TABLE table_name_85 (team VARCHAR, fin_pos VARCHAR)
SELECT MIN(points) AS won FROM table_26218783_7 WHERE player = "Victoria Azarenka"
What is the lowest points won from player victoria azarenka?
CREATE TABLE table_26218783_7 (points INTEGER, player VARCHAR)
SELECT record FROM table_name_48 WHERE event = "uw: ultimate fight minnesota"
What is the record at the UW: Ultimate Fight Minnesota?
CREATE TABLE table_name_48 (record VARCHAR, event VARCHAR)
SELECT COUNT(location) FROM table_2419754_1 WHERE nickname = "Billikens"
List the number of locations for the team known as the billikens.
CREATE TABLE table_2419754_1 (location VARCHAR, nickname VARCHAR)
SELECT AVG(attendance) FROM table_name_48 WHERE visitor = "philadelphia" AND date = "may 20"
How many Attendances that has a Visitor of philadelphia on may 20?
CREATE TABLE table_name_48 (attendance INTEGER, visitor VARCHAR, date VARCHAR)
SELECT station FROM table_name_81 WHERE genre = "talk music" AND language = "malay english"
What station has a genre of talk music and is in Malay English language?
CREATE TABLE table_name_81 (station VARCHAR, genre VARCHAR, language VARCHAR)
SELECT AVG(attendance) FROM table_name_16 WHERE visitor = "phoenix"
What is the average attendance for a game against Phoenix?
CREATE TABLE table_name_16 (attendance INTEGER, visitor VARCHAR)
SELECT T1.service_type_code FROM services AS T1 JOIN EVENTS AS T2 ON T1.service_id = T2.service_id WHERE T2.event_details = 'Success' INTERSECT SELECT T1.service_type_code FROM services AS T1 JOIN EVENTS AS T2 ON T1.service_id = T2.service_id WHERE T2.event_details = 'Fail'
Which services type had both successful and failure event details?
CREATE TABLE EVENTS (service_id VARCHAR, event_details VARCHAR); CREATE TABLE services (service_type_code VARCHAR, service_id VARCHAR)
SELECT position FROM table_name_59 WHERE player = "tiffany garofano (2)"
What is the position of player Tiffany Garofano (2)?
CREATE TABLE table_name_59 (position VARCHAR, player VARCHAR)
SELECT date FROM table_name_65 WHERE format = "vinyl" AND label = "mercury"
What is Date, when Format is Vinyl, and when Label is Mercury?
CREATE TABLE table_name_65 (date VARCHAR, format VARCHAR, label VARCHAR)
SELECT writer_s_ FROM table_name_29 WHERE episode = "18-09 (652)"
Which writer wrote episode 18-09 (652)?
CREATE TABLE table_name_29 (writer_s_ VARCHAR, episode VARCHAR)
SELECT record FROM table_27537518_9 WHERE opponent = "Carolina Hurricanes"
What was the record for the game where the opponent was the Carolina Hurricanes?
CREATE TABLE table_27537518_9 (record VARCHAR, opponent VARCHAR)
SELECT incumbent FROM table_name_10 WHERE party = "republican" AND district = "pennsylvania 9"
Who is the republican Incumbent for Pennsylvania 9?
CREATE TABLE table_name_10 (incumbent VARCHAR, party VARCHAR, district VARCHAR)
SELECT SUM(week) FROM table_name_40 WHERE date = "october 30, 1983"
Which week was on october 30, 1983?
CREATE TABLE table_name_40 (week INTEGER, date VARCHAR)
SELECT MIN(season) FROM table_17632217_1
What is the lowest season?
CREATE TABLE table_17632217_1 (season INTEGER)
SELECT outcome FROM table_25505246_8 WHERE partner = "Caroline Wozniacki"
How did the match end when she played with caroline wozniacki?
CREATE TABLE table_25505246_8 (outcome VARCHAR, partner VARCHAR)
SELECT rounds FROM table_name_33 WHERE engine_† = "ferrari 048"
What were the rounds on the Engine † of the Ferrari 048?
CREATE TABLE table_name_33 (rounds VARCHAR, engine_† VARCHAR)
SELECT method FROM table_name_29 WHERE opponent = "björn bregy"
What is the method against Björn Bregy?
CREATE TABLE table_name_29 (method VARCHAR, opponent VARCHAR)
SELECT service_name FROM table_name_60 WHERE owner = "utv"
What Service Name has UTV as the owner?
CREATE TABLE table_name_60 (service_name VARCHAR, owner VARCHAR)
SELECT label FROM table_name_42 WHERE catalog = "uici-1069"
What is the Label of the UICI-1069 Catalog?
CREATE TABLE table_name_42 (label VARCHAR, catalog VARCHAR)
SELECT SUM(matches) FROM table_name_9 WHERE rank > 10
What was the total matches that ranked above 10?
CREATE TABLE table_name_9 (matches INTEGER, rank INTEGER)
SELECT performer_1 FROM table_name_91 WHERE performer_2 = "compilation 2"
Performer 2 of compilation 2 is what performer 1?
CREATE TABLE table_name_91 (performer_1 VARCHAR, performer_2 VARCHAR)
SELECT home_team FROM table_name_39 WHERE away_team = "norwich city"
What is the home team against the away team Norwich City?
CREATE TABLE table_name_39 (home_team VARCHAR, away_team VARCHAR)
SELECT AVG(velocity) FROM flight WHERE pilot = 'Thompson'
What is the velocity of the pilot named 'Thompson'?
CREATE TABLE flight (velocity INTEGER, pilot VARCHAR)
SELECT incoming_manager FROM table_26914854_3 WHERE date_of_vacancy = "21 March 2011"
Who is the incoming manager when the date of vacancy was 21 march 2011?
CREATE TABLE table_26914854_3 (incoming_manager VARCHAR, date_of_vacancy VARCHAR)
SELECT languages FROM table_14670060_1 WHERE call_sign = "XEJAM"
What languages are spoken when call sign XEJAM is used?
CREATE TABLE table_14670060_1 (languages VARCHAR, call_sign VARCHAR)
SELECT winner_nominee_s_ FROM table_name_44 WHERE result = "nominated" AND film = "rugrats go wild"
Who is nominated for the film Rugrats Go Wild?
CREATE TABLE table_name_44 (winner_nominee_s_ VARCHAR, result VARCHAR, film VARCHAR)
SELECT name FROM table_1157867_2 WHERE notes = "Ex-industrial" AND builder = "Manning Wardle"
Which locomotives 12" x 17" are both ex-industrial and built by Manning Wardle?
CREATE TABLE table_1157867_2 (name VARCHAR, notes VARCHAR, builder VARCHAR)
SELECT 1 AS st_party FROM table_name_28 WHERE election = "1847"
Which 1st Party has an election in 1847?
CREATE TABLE table_name_28 (election VARCHAR)
SELECT status FROM table_name_52 WHERE co_contestant__yaar_vs_pyaar_ = "tina sachdev"
Which Status has a Co-contestant (Yaar vs. Pyaar) of tina sachdev?
CREATE TABLE table_name_52 (status VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)
SELECT title FROM table_name_99 WHERE doctor = "1st" AND published = "november 2001"
What title was published on November 2001 and has a 1st Doctor?
CREATE TABLE table_name_99 (title VARCHAR, doctor VARCHAR, published VARCHAR)
SELECT COUNT(driver___passenger) FROM table_17176509_4 WHERE position = 30
Name the driver/passenger for 30
CREATE TABLE table_17176509_4 (driver___passenger VARCHAR, position VARCHAR)
SELECT year FROM table_name_16 WHERE quarter_finalists = "£1,000" AND semi_finalists = "£1,500"
Which Year has a Quarter-Finalists of £1,000, and Semi-Finalists of £1,500?
CREATE TABLE table_name_16 (year VARCHAR, quarter_finalists VARCHAR, semi_finalists VARCHAR)
SELECT status FROM table_name_33 WHERE unit = "hamaoka-3"
What is the status of the Hamaoka-3 unit?
CREATE TABLE table_name_33 (status VARCHAR, unit VARCHAR)
SELECT MIN(earnings___) AS $__ FROM table_name_60 WHERE rank = 1 AND events < 22
Which Earnings ($) is the lowest one that has a Rank of 1, and Events smaller than 22?
CREATE TABLE table_name_60 (earnings___ INTEGER, rank VARCHAR, events VARCHAR)
SELECT SUM(draws) FROM table_name_72 WHERE against > 1228 AND wins < 1
What's the sum of draws for against larger than 1228 with fewer than 1 wins?
CREATE TABLE table_name_72 (draws INTEGER, against VARCHAR, wins VARCHAR)
SELECT media_debut FROM table_26615633_3 WHERE species = "Asian black bear"
what is the media debut for the asian black bear?
CREATE TABLE table_26615633_3 (media_debut VARCHAR, species VARCHAR)
SELECT MIN(matches) FROM table_27268238_4
What is the smallest amount of matches?
CREATE TABLE table_27268238_4 (matches INTEGER)
SELECT COUNT(total_medals) FROM table_name_42 WHERE ensemble = "james logan high school" AND silver_medals < 1
What was the total number of medals received by James Logan High School when it received less than 1 silver medal?
CREATE TABLE table_name_42 (total_medals VARCHAR, ensemble VARCHAR, silver_medals VARCHAR)
SELECT score FROM table_17355628_7 WHERE date = "January 18"
What is the score when the game took place on January 18?
CREATE TABLE table_17355628_7 (score VARCHAR, date VARCHAR)
SELECT SUM(year) FROM table_name_99 WHERE detroit__dtw_ = "$307.29"
For how many years did Detroit have a passenger fare of $307.29?
CREATE TABLE table_name_99 (year INTEGER, detroit__dtw_ VARCHAR)
SELECT title FROM table_25046766_3 WHERE original_airdate_uk = "October 7, 1965"
What was the title of the episode that aired on October 7, 1965?
CREATE TABLE table_25046766_3 (title VARCHAR, original_airdate_uk VARCHAR)
SELECT T1.lesson_id FROM Lessons AS T1 JOIN Staff AS T2 ON T1.staff_id = T2.staff_id WHERE T2.first_name = "Janessa" AND T2.last_name = "Sawayn" AND nickname LIKE "%s%"
List lesson id of all lessons taught by staff with first name as Janessa, last name as Sawayn and nickname containing letter 's'.
CREATE TABLE Lessons (lesson_id VARCHAR, staff_id VARCHAR); CREATE TABLE Staff (staff_id VARCHAR, first_name VARCHAR, last_name VARCHAR)
SELECT MAX(wins) FROM table_name_83 WHERE golden_rivers = "quambatook" AND against < 1129
What is the highest number of wins for Quambatook when Against is less than 1129?
CREATE TABLE table_name_83 (wins INTEGER, golden_rivers VARCHAR, against VARCHAR)
SELECT score FROM table_name_19 WHERE team = "@ chicago"
For the game with team of @ Chicago, what was the final score?
CREATE TABLE table_name_19 (score VARCHAR, team VARCHAR)
SELECT country___exonym__ FROM table_1008653_1 WHERE official_or_native_language_s___alphabet_script_ = "Dutch Papiamento"
What is the English name of the country whose official native language is Dutch Papiamento?
CREATE TABLE table_1008653_1 (country___exonym__ VARCHAR, official_or_native_language_s___alphabet_script_ VARCHAR)
SELECT position FROM table_name_62 WHERE round = "t" AND team = "minneapolis lakers"
What was the position of the team Minneapolis Lakers during round T?
CREATE TABLE table_name_62 (position VARCHAR, round VARCHAR, team VARCHAR)
SELECT location_attendance FROM table_name_62 WHERE score = "w 89–86 (ot)"
What was the location and attendance with a score of w 89–86 (ot)?
CREATE TABLE table_name_62 (location_attendance VARCHAR, score VARCHAR)
SELECT transaction_type_code FROM TRANSACTIONS GROUP BY transaction_type_code ORDER BY COUNT(*) DESC LIMIT 1
Show the transaction type code that occurs the most frequently.
CREATE TABLE TRANSACTIONS (transaction_type_code VARCHAR)
SELECT location FROM table_19210115_1 WHERE conference = "American Athletic conference"
Where is the University that plays in the American Athletic Conference?
CREATE TABLE table_19210115_1 (location VARCHAR, conference VARCHAR)
SELECT AVG(goals) FROM table_name_92 WHERE team = "zamora" AND average > 0.89
What Goals has a Team of zamora, and Average larger than 0.89?
CREATE TABLE table_name_92 (goals INTEGER, team VARCHAR, average VARCHAR)
SELECT frequency FROM table_name_74 WHERE branding = "cbc radio 2"
What is the branding frequency of cbc radio 2?
CREATE TABLE table_name_74 (frequency VARCHAR, branding VARCHAR)
SELECT nationality FROM table_name_10 WHERE player = "trevor cann"
What is Trevor Cann's nationality?
CREATE TABLE table_name_10 (nationality VARCHAR, player VARCHAR)
SELECT defending_forces FROM table_name_22 WHERE population = "650"
What defending forces have a population of 650?
CREATE TABLE table_name_22 (defending_forces VARCHAR, population VARCHAR)
SELECT result FROM table_1342218_17 WHERE incumbent = "Brent Spence"
What was the result of the election incumbent Brent Spence took place in?
CREATE TABLE table_1342218_17 (result VARCHAR, incumbent VARCHAR)
SELECT COUNT(DISTINCT state) FROM bank
Find the number of different states which banks are located at.
CREATE TABLE bank (state VARCHAR)
SELECT AVG(to_par) FROM table_name_6 WHERE player = "tom weiskopf"
What is the to par for Tom Weiskopf?
CREATE TABLE table_name_6 (to_par INTEGER, player VARCHAR)
SELECT per_capita_income FROM table_1447085_1 WHERE county = "Fayette county"
What is the per capita income for Fayette County?
CREATE TABLE table_1447085_1 (per_capita_income VARCHAR, county VARCHAR)
SELECT last_final_lost FROM table_name_84 WHERE wins = "3" AND last_win = "2001"
When was the final loss of the club last won in 2001 and has a total of 3 wins?
CREATE TABLE table_name_84 (last_final_lost VARCHAR, wins VARCHAR, last_win VARCHAR)
SELECT points FROM table_name_91 WHERE place = 9
What are the Points when the Place is 9?
CREATE TABLE table_name_91 (points VARCHAR, place VARCHAR)
SELECT club FROM table_name_48 WHERE tries_for = "100"
what is the club that as 100 tries?
CREATE TABLE table_name_48 (club VARCHAR, tries_for VARCHAR)