answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 484 |
|---|---|---|
SELECT name FROM table_name_42 WHERE team = "forsythe racing" AND best = "1:00.099" | Who is the driver for the Forsythe Racing team that has the best time of 1:00.099? | CREATE TABLE table_name_42 (name VARCHAR, team VARCHAR, best VARCHAR) |
SELECT COUNT(laps) FROM table_name_82 WHERE car__number > 9 AND driver = "jeff burton" AND points > 118 | How many laps did Jeff Burton have when he drove car with a # over 9 and more than 118 points? | CREATE TABLE table_name_82 (laps VARCHAR, points VARCHAR, car__number VARCHAR, driver VARCHAR) |
SELECT film_title_used_in_nomination FROM table_name_78 WHERE language = "spanish" AND country = "peru" | Name the film title that is spanish from peru | CREATE TABLE table_name_78 (film_title_used_in_nomination VARCHAR, language VARCHAR, country VARCHAR) |
SELECT home_team AS score FROM table_name_2 WHERE home_team = "footscray" | What was Footscray's score when it played as the home team? | CREATE TABLE table_name_2 (home_team VARCHAR) |
SELECT tournament FROM table_name_99 WHERE opponent_in_the_final = "samantha stosur" | What tournament has Samantha Stosur as the opponent in the final? | CREATE TABLE table_name_99 (tournament VARCHAR, opponent_in_the_final VARCHAR) |
SELECT last_5_meetings FROM table_16201038_5 WHERE overall_record = "UM, 2-1" | What are the outcomes of the last 5 meetings where the overall record is UM, 2-1? | CREATE TABLE table_16201038_5 (last_5_meetings VARCHAR, overall_record VARCHAR) |
SELECT AVG(total_amount_purchased), AVG(total_value_purchased) FROM Product_Suppliers WHERE supplier_id = (SELECT supplier_id FROM Product_Suppliers GROUP BY supplier_id ORDER BY COUNT(*) DESC LIMIT 1) | What are the average amount purchased and value purchased for the supplier who supplies the most products. | CREATE TABLE Product_Suppliers (total_amount_purchased INTEGER, total_value_purchased INTEGER, supplier_id VARCHAR) |
SELECT ont FROM table_name_5 WHERE nb = "10" AND normal_total = "77" | Name the Ont of N.B. of 10 and normal total of 77 | CREATE TABLE table_name_5 (ont VARCHAR, nb VARCHAR, normal_total VARCHAR) |
SELECT new_points FROM table_27615896_18 WHERE rk = 26 | How many new points were earned by rk 26? | CREATE TABLE table_27615896_18 (new_points VARCHAR, rk VARCHAR) |
SELECT score FROM table_name_60 WHERE home = "cavaliers" AND leading_scorer = "lebron james (46)" | What is the score of the home game for the Cavaliers where Lebron James (46) was the lead scorer? | CREATE TABLE table_name_60 (score VARCHAR, home VARCHAR, leading_scorer VARCHAR) |
SELECT COUNT(total_votes) FROM table_name_71 WHERE election > 2009 AND candidates_fielded > 61 | Can you tell me the total number of Total votes that has the Election larger than 2009, and the Candidates fielded larger than 61? | CREATE TABLE table_name_71 (total_votes VARCHAR, election VARCHAR, candidates_fielded VARCHAR) |
SELECT icao FROM table_name_51 WHERE city = "xi'an" | I want the ICAO for city of xi'an | CREATE TABLE table_name_51 (icao VARCHAR, city VARCHAR) |
SELECT date_of_inauguration FROM table_name_78 WHERE length_of_retirement = "00,624 days" | What is the date of the inauguration with a Length of retirement of 00,624 days? | CREATE TABLE table_name_78 (date_of_inauguration VARCHAR, length_of_retirement VARCHAR) |
SELECT registration FROM table_22180353_1 WHERE type = "T 6 G" | What is every registration for the type of T 6 G? | CREATE TABLE table_22180353_1 (registration VARCHAR, type VARCHAR) |
SELECT T1.role_description, T2.staff_id FROM Staff_Roles AS T1 JOIN Project_Staff AS T2 ON T1.role_code = T2.role_code JOIN Project_outcomes AS T3 ON T2.project_id = T3.project_id GROUP BY T2.staff_id ORDER BY COUNT(*) DESC LIMIT 1 | Show the role description and the id of the project staff involved in most number of project outcomes? | CREATE TABLE Project_outcomes (project_id VARCHAR); CREATE TABLE Project_Staff (staff_id VARCHAR, role_code VARCHAR, project_id VARCHAR); CREATE TABLE Staff_Roles (role_description VARCHAR, role_code VARCHAR) |
SELECT nominating_festival FROM table_name_80 WHERE director_s_ = "iao lethem" | Which nominating festival nominated Iao Lethem's film? | CREATE TABLE table_name_80 (nominating_festival VARCHAR, director_s_ VARCHAR) |
SELECT MAX(games) FROM table_name_64 WHERE assists > 10 | What's the highest amount of Games recorded that have more than 10 assists? | CREATE TABLE table_name_64 (games INTEGER, assists INTEGER) |
SELECT attendance FROM table_name_27 WHERE result = "won 1-0" | Name the attendance with result of won 1-0 | CREATE TABLE table_name_27 (attendance VARCHAR, result VARCHAR) |
SELECT MIN(innings) FROM table_name_89 WHERE sr = 72.05 AND balls_faced < 297 | What is the smallest number of innings with a strike rate of 72.05 and under 297 balls faced? | CREATE TABLE table_name_89 (innings INTEGER, sr VARCHAR, balls_faced VARCHAR) |
SELECT report FROM table_15511178_3 WHERE rd = 8 | Did the round 8 race get reported | CREATE TABLE table_15511178_3 (report VARCHAR, rd VARCHAR) |
SELECT house_colour FROM table_1942683_1 WHERE house_name = "Kupe" | What is the house colour associated with the house name of Kupe? | CREATE TABLE table_1942683_1 (house_colour VARCHAR, house_name VARCHAR) |
SELECT school_club_team FROM table_name_97 WHERE round < 5 AND pick > 1 AND player = "reggie mckenzie" | Which School/Club Team has a Round smaller than 5, a Pick larger than 1, and a Player of reggie mckenzie? | CREATE TABLE table_name_97 (school_club_team VARCHAR, player VARCHAR, round VARCHAR, pick VARCHAR) |
SELECT composer FROM table_28005100_1 WHERE title = "Ain Shams" | Who was the composer of ain shams? | CREATE TABLE table_28005100_1 (composer VARCHAR, title VARCHAR) |
SELECT COUNT(DISTINCT T1.injury) FROM injury_accident AS T1 JOIN game AS T2 ON T1.game_id = T2.id WHERE T2.season > 2010 | How many distinct kinds of injuries happened after season 2010? | CREATE TABLE injury_accident (injury VARCHAR, game_id VARCHAR); CREATE TABLE game (id VARCHAR, season INTEGER) |
SELECT district FROM table_1341663_44 WHERE party = "Republican" | Which district is republican? | CREATE TABLE table_1341663_44 (district VARCHAR, party VARCHAR) |
SELECT days, _hours, _minutes FROM table_name_81 WHERE dates = "21 – 26 october" | What is the Days, hours, minutes for 21 – 26 October? | CREATE TABLE table_name_81 (days VARCHAR, _hours VARCHAR, _minutes VARCHAR, dates VARCHAR) |
SELECT country FROM table_name_96 WHERE tournament = "indian wells masters" | For the Indian Wells Masters tournament, what was the country? | CREATE TABLE table_name_96 (country VARCHAR, tournament VARCHAR) |
SELECT College FROM match_season WHERE POSITION = "Midfielder" INTERSECT SELECT College FROM match_season WHERE POSITION = "Defender" | Which college have both players with position midfielder and players with position defender? | CREATE TABLE match_season (College VARCHAR, POSITION VARCHAR) |
SELECT truck_s_ FROM table_24535095_2 WHERE crew_chief = "Eric Phillips" | Name the truck for eric phillips | CREATE TABLE table_24535095_2 (truck_s_ VARCHAR, crew_chief VARCHAR) |
SELECT away_team FROM table_name_81 WHERE venue = "junction oval" | Who was the away team at junction oval? | CREATE TABLE table_name_81 (away_team VARCHAR, venue VARCHAR) |
SELECT winning_score FROM table_name_7 WHERE runner_s__up = "ernie els" | What is the winning score for the runner-up Ernie Els? | CREATE TABLE table_name_7 (winning_score VARCHAR, runner_s__up VARCHAR) |
SELECT rank FROM table_name_32 WHERE director = "danny devito" | What is the rank of the film directed by danny devito? | CREATE TABLE table_name_32 (rank VARCHAR, director VARCHAR) |
SELECT DISTINCT t3.policy_type_code FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id JOIN available_policies AS t3 ON t2.policy_id = t3.policy_id WHERE t1.customer_name = (SELECT t1.customer_name FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id G... | What are all the policy types of the customer that has the most policies listed? | CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE available_policies (policy_type_code VARCHAR, policy_id VARCHAR); CREATE TABLE customers_policies (customer_id VARCHAR, policy_id VARCHAR) |
SELECT game_1 FROM table_name_18 WHERE game_2 = "bob lindner" | What game 1 has bob lindner as game 2? | CREATE TABLE table_name_18 (game_1 VARCHAR, game_2 VARCHAR) |
SELECT model FROM table_name_20 WHERE builder__family_ = "zhuzhou" AND power_output__kw_ = "9600" | What model has a builder of zhuzhou, and a power output of 9600 (kw)? | CREATE TABLE table_name_20 (model VARCHAR, builder__family_ VARCHAR, power_output__kw_ VARCHAR) |
SELECT COUNT(founded) FROM table_name_29 WHERE main_campus_location = "liberal" | What is the total Founded with a Main Campus Location of liberal? | CREATE TABLE table_name_29 (founded VARCHAR, main_campus_location VARCHAR) |
SELECT t1.Effective_Date FROM claims AS t1 JOIN settlements AS t2 ON t1.claim_id = t2.claim_id GROUP BY t1.claim_id ORDER BY SUM(t2.settlement_amount) DESC LIMIT 1 | What is the effective date of the claim that has the largest amount of total settlement? | CREATE TABLE settlements (claim_id VARCHAR, settlement_amount INTEGER); CREATE TABLE claims (Effective_Date VARCHAR, claim_id VARCHAR) |
SELECT record_set FROM table_name_30 WHERE actor = "walter brennan" AND year < 1941 | What record was set by walter brennan before 1941? | CREATE TABLE table_name_30 (record_set VARCHAR, actor VARCHAR, year VARCHAR) |
SELECT SUM(match) FROM table_name_91 WHERE result = "0:3 (0:2)" AND opponent = "fcr 2001 duisburg" AND attnd > 1 OFFSET 490 | Which match had more than 1,490 people in attendance to watch FCR 2001 Duisburg have a result of 0:3 (0:2)? | CREATE TABLE table_name_91 (match INTEGER, attnd VARCHAR, result VARCHAR, opponent VARCHAR) |
SELECT MIN(year) FROM table_name_60 WHERE chassis = "mp4-17d" AND points < 142 | What is the earliest year with a mp4-17d chassis and less than 142 points. | CREATE TABLE table_name_60 (year INTEGER, chassis VARCHAR, points VARCHAR) |
SELECT wheelbase FROM table_name_20 WHERE body_styles = "sport coupe (4p.)" | What wheelbase has sport coupe (4p.) as the body style? | CREATE TABLE table_name_20 (wheelbase VARCHAR, body_styles VARCHAR) |
SELECT other FROM table_11381701_3 WHERE symbian___series_40 = "0.40%" | When Symbian/Series 40 is 0.40%, what is the percentage of "other"? | CREATE TABLE table_11381701_3 (other VARCHAR, symbian___series_40 VARCHAR) |
SELECT celebrity FROM table_name_23 WHERE famous_for = "rapper" | Which celebrity was famous for being a rapper? | CREATE TABLE table_name_23 (celebrity VARCHAR, famous_for VARCHAR) |
SELECT t3.title FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid JOIN inst AS t4 ON t2.instid = t4.instid WHERE t4.country = "USA" AND t2.authorder = 2 AND t1.lname = "Turon" | Which paper is published in an institution in "USA" and have "Turon" as its second author? | CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR, instid VARCHAR, authorder VARCHAR); CREATE TABLE authors (authid VARCHAR, lname VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR); CREATE TABLE inst (instid VARCHAR, country VARCHAR) |
SELECT attendance FROM table_name_89 WHERE tie_no = 1 | How many were in Attendance during a Tie no of 1? | CREATE TABLE table_name_89 (attendance VARCHAR, tie_no VARCHAR) |
SELECT spacewalkers FROM table_22385461_8 WHERE end__utc_ = "October 30, 2007 15:53" | What are the names of the spacewalkers for end (UTC) October 30, 2007 15:53? | CREATE TABLE table_22385461_8 (spacewalkers VARCHAR, end__utc_ VARCHAR) |
SELECT date FROM table_name_86 WHERE venue = "mcg" | What was the date of the match played at MCG? | CREATE TABLE table_name_86 (date VARCHAR, venue VARCHAR) |
SELECT AVG(room_count) FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T1.booking_status_code = "Provisional" | Show the average room count of the apartments that have booking status code "Provisional". | CREATE TABLE Apartment_Bookings (apt_id VARCHAR, booking_status_code VARCHAR); CREATE TABLE Apartments (apt_id VARCHAR) |
SELECT boxscore FROM table_name_82 WHERE loss = "capuano (5–5)" | Which box score has a Loss of capuano (5–5)? | CREATE TABLE table_name_82 (boxscore VARCHAR, loss VARCHAR) |
SELECT time FROM table_name_75 WHERE team = "suzuki" AND rider = "peter berwick" | What was the time for Peter Berwick of Team Suzuki? | CREATE TABLE table_name_75 (time VARCHAR, team VARCHAR, rider VARCHAR) |
SELECT MAX(capacity) FROM table_10601843_2 WHERE stadium = "Otkrytie Arena" | What is the maximum capacity of the Otkrytie Arena stadium? | CREATE TABLE table_10601843_2 (capacity INTEGER, stadium VARCHAR) |
SELECT name, price FROM products | Select the names and the prices of all the products in the store. | CREATE TABLE products (name VARCHAR, price VARCHAR) |
SELECT work FROM table_name_91 WHERE result = "won" AND year > 2002 | what is the work when the result is won and the year is after 2002? | CREATE TABLE table_name_91 (work VARCHAR, result VARCHAR, year VARCHAR) |
SELECT COUNT(matches) FROM table_name_15 WHERE prize_money = "£1,000,000" | How many matches were there in the round with £1,000,000 in prize money? | CREATE TABLE table_name_15 (matches VARCHAR, prize_money VARCHAR) |
SELECT T1.course_name FROM courses AS T1 JOIN student_course_registrations AS T2 ON T1.course_id = T2.course_Id GROUP BY T1.course_id ORDER BY COUNT(*) DESC LIMIT 1 | which course has most number of registered students? | CREATE TABLE courses (course_name VARCHAR, course_id VARCHAR); CREATE TABLE student_course_registrations (course_Id VARCHAR) |
SELECT release_date FROM table_name_36 WHERE writer = "goss, james james goss" AND company = "audiogo" | What is the release date of the album written by Goss, James James Goss under Audiogo? | CREATE TABLE table_name_36 (release_date VARCHAR, writer VARCHAR, company VARCHAR) |
SELECT record FROM table_name_29 WHERE result = "l 13–30" | Which Record has a Result of l 13–30? | CREATE TABLE table_name_29 (record VARCHAR, result VARCHAR) |
SELECT week_1_sept_2 FROM table_name_72 WHERE week_3_sept_14 = "south florida (3-0)" | Which Week 1 Sept 2 has a Week 3 Sept 14 of south florida (3-0)? | CREATE TABLE table_name_72 (week_1_sept_2 VARCHAR, week_3_sept_14 VARCHAR) |
SELECT winning_driver FROM table_name_42 WHERE race_name = "viii gran premio di siracusa" | Who is the Winning Driver in the race viii gran premio di siracusa? | CREATE TABLE table_name_42 (winning_driver VARCHAR, race_name VARCHAR) |
SELECT known_for FROM table_name_34 WHERE entered = "day 1" AND celebrity = "freddie starr" | What was Freddie Starr, who entered on Day 1, known for? | CREATE TABLE table_name_34 (known_for VARCHAR, entered VARCHAR, celebrity VARCHAR) |
SELECT MIN(earnings___) AS $__ FROM table_name_91 WHERE events = 22 AND rank < 4 | Events of 22, and a Rank smaller than 4 involved which of the lowest earnings ($)? | CREATE TABLE table_name_91 (earnings___ INTEGER, events VARCHAR, rank VARCHAR) |
SELECT date FROM table_name_58 WHERE venue = "princes park" | If the Venue was princes park, which Date did the game take place on? | CREATE TABLE table_name_58 (date VARCHAR, venue VARCHAR) |
SELECT votes FROM table_name_32 WHERE date = "november 10" | How many votes were there on November 10? | CREATE TABLE table_name_32 (votes VARCHAR, date VARCHAR) |
SELECT vessel_name FROM table_name_56 WHERE flag = "malta" AND type = "panamax" AND class = "gl" AND built > 2010 | What is the name of the Malta vessel built after 2010 that is a GL class Panamax vessel? | CREATE TABLE table_name_56 (vessel_name VARCHAR, built VARCHAR, class VARCHAR, flag VARCHAR, type VARCHAR) |
SELECT manufacturer FROM table_name_76 WHERE year_made = "1883" | What manufacturer has a year made of 1883? | CREATE TABLE table_name_76 (manufacturer VARCHAR, year_made VARCHAR) |
SELECT COUNT(lost) FROM table_17625749_1 WHERE tries_for = "109" | Name the number of lost where tries for is 109 | CREATE TABLE table_17625749_1 (lost VARCHAR, tries_for VARCHAR) |
SELECT home_team AS score FROM table_name_40 WHERE venue = "glenferrie oval" | What is the home team's score in the game played at glenferrie oval? | CREATE TABLE table_name_40 (home_team VARCHAR, venue VARCHAR) |
SELECT place FROM table_name_1 WHERE country = "united states" AND to_par = "e" | What place is the player from the United States with a to par of e? | CREATE TABLE table_name_1 (place VARCHAR, country VARCHAR, to_par VARCHAR) |
SELECT purse___us$__ FROM table_name_37 WHERE track = "sunland park" | What is the Purse in Sunland Park Track? | CREATE TABLE table_name_37 (purse___us$__ VARCHAR, track VARCHAR) |
SELECT poll_source FROM table_name_98 WHERE undecided = "5%" AND jim_demint__r_ = "58%" | Which poll source determined undecided of 5% and Jim DeMint (R) of 58%? | CREATE TABLE table_name_98 (poll_source VARCHAR, undecided VARCHAR, jim_demint__r_ VARCHAR) |
SELECT AVG(total) FROM table_name_13 WHERE county = "kilkenny" AND tally = "1–4" AND rank > 10 | Which Total has a County of kilkenny, and a Tally of 1–4, and a Rank larger than 10? | CREATE TABLE table_name_13 (total INTEGER, rank VARCHAR, county VARCHAR, tally VARCHAR) |
SELECT title__original_ FROM table_1481865_1 WHERE number_of_season = 3 | What is the original title of season number 3? | CREATE TABLE table_1481865_1 (title__original_ VARCHAR, number_of_season VARCHAR) |
SELECT order__number FROM table_26250189_1 WHERE theme = "The Rolling Stones" | What was Katie's order number when the theme was The Rolling Stones? | CREATE TABLE table_26250189_1 (order__number VARCHAR, theme VARCHAR) |
SELECT partner FROM table_name_28 WHERE surface = "clay" AND outcome = "runner-up" AND score = "4–6, 1–6" | Who was the partner when the surface was clay, and outcome was runner-up, with a score of 4–6, 1–6? | CREATE TABLE table_name_28 (partner VARCHAR, score VARCHAR, surface VARCHAR, outcome VARCHAR) |
SELECT country FROM table_name_74 WHERE score = 70 - 79 - 74 - 68 = 291 | What country was the player from with a score of 70-79-74-68=291? | CREATE TABLE table_name_74 (country VARCHAR, score VARCHAR) |
SELECT loss FROM table_name_48 WHERE record = "38-53" | Name the loss with record of 38-53 | CREATE TABLE table_name_48 (loss VARCHAR, record VARCHAR) |
SELECT capacity FROM table_name_97 WHERE rank < 31 AND city = "belém" | What is the capacity of the stadium with a rank lower than 31 located in the city of Belém ? | CREATE TABLE table_name_97 (capacity VARCHAR, rank VARCHAR, city VARCHAR) |
SELECT MIN(no_in_series) FROM table_2618142_1 | the first episode in this season had what number in the series? | CREATE TABLE table_2618142_1 (no_in_series INTEGER) |
SELECT march_27_29 FROM table_1708610_3 WHERE november_3 = "133" | Name the march 27-29 for november 3 being 133 | CREATE TABLE table_1708610_3 (march_27_29 VARCHAR, november_3 VARCHAR) |
SELECT SUM(events_played) FROM table_name_82 WHERE cuts_made < 0 | What is the sum of Events played when the cuts made is less than 0? | CREATE TABLE table_name_82 (events_played INTEGER, cuts_made INTEGER) |
SELECT penalty FROM table_name_89 WHERE time = "29:17" | What was a penalty given for at time 29:17? | CREATE TABLE table_name_89 (penalty VARCHAR, time VARCHAR) |
SELECT date FROM table_2167226_3 WHERE winning_score = 74 - 67 - 71 - 73 = 285 | What is the date of the winning score 74-67-71-73=285? | CREATE TABLE table_2167226_3 (date VARCHAR, winning_score VARCHAR) |
SELECT miss_universe_philippines FROM table_name_86 WHERE second_runner_up = "regina hahn" | Who won Miss Universe Philippines when Regina Hahn was second runner-up? | CREATE TABLE table_name_86 (miss_universe_philippines VARCHAR, second_runner_up VARCHAR) |
SELECT tie_no FROM table_name_34 WHERE away_team = "wigan athletic" | What is the Tie number of when Wigan Athletic was the away team? | CREATE TABLE table_name_34 (tie_no VARCHAR, away_team VARCHAR) |
SELECT production_code FROM table_27776266_1 WHERE us_viewers__million_ = "14.79" | What was the production code of the episode with an audience of 14.79 million in the US? | CREATE TABLE table_27776266_1 (production_code VARCHAR, us_viewers__million_ VARCHAR) |
SELECT MIN(evening_gown) FROM table_name_63 WHERE interview > 9.164 AND swimsuit < 9.35 AND average < 9.233 | Which is the smallest evening gown score when the interview score was more than 9.164, the swimsuit stat was less than 9.35, and the average is less than 9.233? | CREATE TABLE table_name_63 (evening_gown INTEGER, average VARCHAR, interview VARCHAR, swimsuit VARCHAR) |
SELECT away_team FROM table_name_33 WHERE score = "4–2" | Which Away team has a Score of 4–2? | CREATE TABLE table_name_33 (away_team VARCHAR, score VARCHAR) |
SELECT inchicore_class FROM table_name_60 WHERE gswr_class < 268 AND type = "0-4-2t" | What Inchicore Class has a GSWR Class smaller than 268, and a Type of 0-4-2t? | CREATE TABLE table_name_60 (inchicore_class VARCHAR, gswr_class VARCHAR, type VARCHAR) |
SELECT COUNT(london) FROM table_10402018_1 WHERE us_tour = "Babs Rubenstein" | How many characters is by Babs Rubenstein? | CREATE TABLE table_10402018_1 (london VARCHAR, us_tour VARCHAR) |
SELECT nation FROM table_name_84 WHERE record = "15.16 m" | Which Nation has a Record of 15.16 m? | CREATE TABLE table_name_84 (nation VARCHAR, record VARCHAR) |
SELECT surface FROM table_name_68 WHERE date = "january 2, 2006" | Which Surface has a Date of january 2, 2006? | CREATE TABLE table_name_68 (surface VARCHAR, date VARCHAR) |
SELECT COUNT(1958 AS _uta) FROM "t" AS able_name_49 WHERE class = "t" | In the Class T, what is the total of the 1958 UTA? | CREATE TABLE t (Id VARCHAR) |
SELECT MAX(founded) FROM table_name_94 WHERE joined = "2011" | What is the most recently founded school that joined in 2011? | CREATE TABLE table_name_94 (founded INTEGER, joined VARCHAR) |
SELECT result FROM table_28418916_3 WHERE opponents_conference = "MAC (East)" | What was the result when then opponents conference was Mac (east)? | CREATE TABLE table_28418916_3 (result VARCHAR, opponents_conference VARCHAR) |
SELECT result FROM table_name_53 WHERE first_elected = "1898" | When someone was first elected in 1898 what was the result? | CREATE TABLE table_name_53 (result VARCHAR, first_elected VARCHAR) |
SELECT home_team AS score FROM table_name_60 WHERE away_team = "carlton" | What is the home team score that played away team carlton? | CREATE TABLE table_name_60 (home_team VARCHAR, away_team VARCHAR) |
SELECT malayalam FROM table_name_61 WHERE മലയാളം = "വെള്ളി" | WHAT IS THE MALAYAM WITH മലയാളം of വെള്ളി? | CREATE TABLE table_name_61 (malayalam VARCHAR, മലയാളം VARCHAR) |
SELECT written_by FROM table_26198709_1 WHERE us_viewers__million_ = "18.07" | Who wrote the episode with 18.07 million viewers? | CREATE TABLE table_26198709_1 (written_by VARCHAR, us_viewers__million_ VARCHAR) |
SELECT MAX(atp_wins) FROM table_22839669_12 WHERE money_list_rank = 4 | How many atp wins did he have when his money list rank was 4? | CREATE TABLE table_22839669_12 (atp_wins INTEGER, money_list_rank VARCHAR) |
SELECT COUNT(evening_gown) FROM table_12094300_1 WHERE state = "District of Columbia" | How many times did district of Columbia receive a score for evening gown? | CREATE TABLE table_12094300_1 (evening_gown VARCHAR, state VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.