question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
What is the date of the match where Jeriome Robertson lost? | CREATE TABLE table_name_86 (date VARCHAR, loss VARCHAR) | SELECT date FROM table_name_86 WHERE loss = "jeriome robertson" |
what is 2010 when 2011 is 2r and 2008 is 2r? | CREATE TABLE table_name_46 (Id VARCHAR) | SELECT 2010 FROM table_name_46 WHERE 2011 = "2r" AND 2008 = "2r" |
What District was Incumbent Steve Israel First elected after 1998 in the Democratic party? | CREATE TABLE table_name_1 (district VARCHAR, incumbent VARCHAR, first_elected VARCHAR, party VARCHAR) | SELECT district FROM table_name_1 WHERE first_elected > 1998 AND party = "democratic" AND incumbent = "steve israel" |
Kaimganj has what reserved for (SC / ST /None)? | CREATE TABLE table_name_87 (reserved_for___sc___st__none_ VARCHAR, name VARCHAR) | SELECT reserved_for___sc___st__none_ FROM table_name_87 WHERE name = "kaimganj" |
What is the race with a 10f distance and mollison as the winner or 2nd? | CREATE TABLE table_name_12 (race VARCHAR, distance VARCHAR, winner_or_2nd VARCHAR) | SELECT race FROM table_name_12 WHERE distance = "10f" AND winner_or_2nd = "mollison" |
What year at the US Open Cup quarterfinals, were the playoffs in the semifinals for the USL second division? | CREATE TABLE table_1939202_2 (year VARCHAR, us_open_cup VARCHAR, league VARCHAR, playoffs VARCHAR) | SELECT year FROM table_1939202_2 WHERE league = "USL Second division" AND playoffs = "Semifinals" AND us_open_cup = "Quarterfinals" |
Name the left of the Lady Pilots. | CREATE TABLE table_10577579_3 (left VARCHAR, women’s_nickname VARCHAR) | SELECT left FROM table_10577579_3 WHERE women’s_nickname = "Lady Pilots" |
What is the overall place that has 170d 11h 31m 10s as the combined elapsed time? | CREATE TABLE table_name_47 (overall_place VARCHAR, combined_elapsed_time VARCHAR) | SELECT overall_place FROM table_name_47 WHERE combined_elapsed_time = "170d 11h 31m 10s" |
What round did the event UFC 86 take place? | CREATE TABLE table_name_31 (round VARCHAR, event VARCHAR) | SELECT round FROM table_name_31 WHERE event = "ufc 86" |
How many viewers in millions watched the episode with the number 10.18? | CREATE TABLE table_25391981_20 (viewers__millions_ VARCHAR, episode_number VARCHAR) | SELECT viewers__millions_ FROM table_25391981_20 WHERE episode_number = "10.18" |
What is Score, when Player is "Dow Finsterwald"? | CREATE TABLE table_name_76 (score VARCHAR, player VARCHAR) | SELECT score FROM table_name_76 WHERE player = "dow finsterwald" |
What is the home of the team with a 16-8 record? | CREATE TABLE table_name_81 (home VARCHAR, record VARCHAR) | SELECT home FROM table_name_81 WHERE record = "16-8" |
Name the rank of birmingham airport | CREATE TABLE table_13836704_8 (rank INTEGER, airport VARCHAR) | SELECT MAX(rank) FROM table_13836704_8 WHERE airport = "Birmingham airport" |
Who was the visiting team when the leading scorer was Jones : 20? | CREATE TABLE table_name_9 (visitor VARCHAR, leading_scorer VARCHAR) | SELECT visitor FROM table_name_9 WHERE leading_scorer = "jones : 20" |
how many times is the money list rank 221 and cuts more than 2? | CREATE TABLE table_name_97 (tournaments_played VARCHAR, money_list_rank VARCHAR, cuts_made VARCHAR) | SELECT COUNT(tournaments_played) FROM table_name_97 WHERE money_list_rank = "221" AND cuts_made > 2 |
Find the name of accounts whose checking balance is higher than corresponding saving balance. | CREATE TABLE savings (custid VARCHAR, balance INTEGER); CREATE TABLE accounts (name VARCHAR, custid VARCHAR); CREATE TABLE checking (custid VARCHAR, balance INTEGER) | SELECT T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid WHERE T2.balance > T3.balance |
What was Bernhard Langer's highest score? | CREATE TABLE table_name_93 (score INTEGER, player VARCHAR) | SELECT MAX(score) FROM table_name_93 WHERE player = "bernhard langer" |
What is the average round of the number 16 pick? | CREATE TABLE table_name_72 (round INTEGER, pick VARCHAR) | SELECT AVG(round) FROM table_name_72 WHERE pick = "16" |
Name the home team score for brisbane lions | CREATE TABLE table_16388439_3 (home_team VARCHAR) | SELECT home_team AS score FROM table_16388439_3 WHERE home_team = "Brisbane Lions" |
Which year did the team receive more than 0 points? | CREATE TABLE table_name_65 (year INTEGER, points INTEGER) | SELECT AVG(year) FROM table_name_65 WHERE points > 0 |
What year did the company have a balance sheet total of €125,359,000? | CREATE TABLE table_name_69 (year VARCHAR, balance_sheet_total VARCHAR) | SELECT COUNT(year) FROM table_name_69 WHERE balance_sheet_total = "€125,359,000" |
What is the born-died that has office of 13 September 1229 as the entered? | CREATE TABLE table_name_8 (born_died VARCHAR, entered_office VARCHAR) | SELECT born_died FROM table_name_8 WHERE entered_office = "13 september 1229" |
Find the name of the source user with the highest average trust score. | CREATE TABLE useracct (name VARCHAR, u_id VARCHAR); CREATE TABLE trust (source_u_id VARCHAR) | SELECT T1.name FROM useracct AS T1 JOIN trust AS T2 ON T1.u_id = T2.source_u_id GROUP BY T2.source_u_id ORDER BY AVG(trust) DESC LIMIT 1 |
What Title has a Presentation of Credentials of October 4, 1988? | CREATE TABLE table_name_90 (title VARCHAR, presentation_of_credentials VARCHAR) | SELECT title FROM table_name_90 WHERE presentation_of_credentials = "october 4, 1988" |
What is the average attendance for the game on September 26, 1976? | CREATE TABLE table_name_48 (attendance INTEGER, date VARCHAR) | SELECT AVG(attendance) FROM table_name_48 WHERE date = "september 26, 1976" |
How many points were scored by the player with 79 goals and who played 38 games? | CREATE TABLE table_name_32 (points VARCHAR, goals VARCHAR, games VARCHAR) | SELECT points FROM table_name_32 WHERE goals = "79" AND games = "38" |
What name has a spread of 69? | CREATE TABLE table_name_96 (name VARCHAR, spread VARCHAR) | SELECT name FROM table_name_96 WHERE spread = 69 |
Which division do the Toronto Raptors belong in? | CREATE TABLE table_name_87 (division VARCHAR, team VARCHAR) | SELECT division FROM table_name_87 WHERE team = "toronto raptors" |
What is To par, when Margin of Victory is "2 Strokes", and when Tournament is "Women's British Open"? | CREATE TABLE table_name_36 (to_par VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR) | SELECT to_par FROM table_name_36 WHERE margin_of_victory = "2 strokes" AND tournament = "women's british open" |
What was the nationality of the player Pat Garrity? | CREATE TABLE table_name_28 (nationality VARCHAR, player VARCHAR) | SELECT nationality FROM table_name_28 WHERE player = "pat garrity" |
Who was the artist that issued the single on 19 January? | CREATE TABLE table_name_67 (artist VARCHAR, issue_date_s_ VARCHAR) | SELECT artist FROM table_name_67 WHERE issue_date_s_ = "19 january" |
What is the sum of total values for Rd 7 less than 8? | CREATE TABLE table_name_53 (total INTEGER, rd_7 INTEGER) | SELECT SUM(total) FROM table_name_53 WHERE rd_7 < 8 |
Can you tell me the lowest Rank that has the Constituency of strathkelvin and bearsden? | CREATE TABLE table_name_64 (rank INTEGER, constituency VARCHAR) | SELECT MIN(rank) FROM table_name_64 WHERE constituency = "strathkelvin and bearsden" |
When the player gained below 1,405 yards and lost over 390 yards, what's the sum of the long yards? | CREATE TABLE table_name_59 (long INTEGER, loss VARCHAR, gain VARCHAR) | SELECT SUM(long) FROM table_name_59 WHERE loss > 390 AND gain < 1 OFFSET 405 |
What is 2006, when Team is "Tacuary"? | CREATE TABLE table_name_13 (team VARCHAR) | SELECT 2006 FROM table_name_13 WHERE team = "tacuary" |
Partnering of franco ferreiro had what tournament? | CREATE TABLE table_name_20 (tournament VARCHAR, partnering VARCHAR) | SELECT tournament FROM table_name_20 WHERE partnering = "franco ferreiro" |
On what date was the score 1-2 at Athens Olympic Stadium? | CREATE TABLE table_name_37 (date VARCHAR, score VARCHAR, venue VARCHAR) | SELECT date FROM table_name_37 WHERE score = "1-2" AND venue = "athens olympic stadium" |
What was the week number when a game was played on November 19, 1967? | CREATE TABLE table_name_15 (week INTEGER, date VARCHAR) | SELECT MIN(week) FROM table_name_15 WHERE date = "november 19, 1967" |
What was the epicenter latitude for the quake that started at 17:09? | CREATE TABLE table_25643046_1 (epicentre__lat VARCHAR, _s_ VARCHAR, origin_time VARCHAR) | SELECT epicentre__lat, _s_ FROM table_25643046_1 WHERE origin_time = "17:09" |
What was the nominated work after 2006, that was awarded the Drama Desk award and the Outstanding featured actor in a musical? | CREATE TABLE table_name_68 (nominated_work VARCHAR, category VARCHAR, year VARCHAR, award VARCHAR) | SELECT nominated_work FROM table_name_68 WHERE year > 2006 AND award = "drama desk award" AND category = "outstanding featured actor in a musical" |
How long is the UK's Ballochmyle Viaduct? | CREATE TABLE table_name_97 (longest_span_in_s_metre___feet__ VARCHAR, land VARCHAR, name VARCHAR) | SELECT longest_span_in_s_metre___feet__ FROM table_name_97 WHERE land = "uk" AND name = "ballochmyle viaduct" |
What day was the winning score –16 (67-70-69-66=272)? | CREATE TABLE table_name_16 (date VARCHAR, winning_score VARCHAR) | SELECT date FROM table_name_16 WHERE winning_score = –16(67 - 70 - 69 - 66 = 272) |
Which Player has a Score of 67 in united states? | CREATE TABLE table_name_17 (player VARCHAR, score VARCHAR, country VARCHAR) | SELECT player FROM table_name_17 WHERE score = 67 AND country = "united states" |
Tell me the time for martin kampmann | CREATE TABLE table_name_90 (time VARCHAR, opponent VARCHAR) | SELECT time FROM table_name_90 WHERE opponent = "martin kampmann" |
What is the Order and Title with a Nationality with roman, and an Elector with matteo orsini rosso? | CREATE TABLE table_name_6 (order_and_title VARCHAR, nationality VARCHAR, elector VARCHAR) | SELECT order_and_title FROM table_name_6 WHERE nationality = "roman" AND elector = "matteo orsini rosso" |
Which CPU chip(s) is used in the Classic type hardware? | CREATE TABLE table_name_71 (cpu_chip VARCHAR, type VARCHAR) | SELECT cpu_chip FROM table_name_71 WHERE type = "classic" |
What transfer fee did Birmingham City get on 30 June 2010? | CREATE TABLE table_name_4 (transfer_fee VARCHAR, ends VARCHAR, moving_from VARCHAR) | SELECT transfer_fee FROM table_name_4 WHERE ends = "30 june 2010" AND moving_from = "birmingham city" |
What is Ground, when Away Team is Sydney? | CREATE TABLE table_name_73 (ground VARCHAR, away_team VARCHAR) | SELECT ground FROM table_name_73 WHERE away_team = "sydney" |
What is Beohari's reserved for (SC/ST/None)? | CREATE TABLE table_name_31 (reserved_for___sc___st__none_ VARCHAR, name VARCHAR) | SELECT reserved_for___sc___st__none_ FROM table_name_31 WHERE name = "beohari" |
What is the area of the community with a census ranking of 636 of 5,008? | CREATE TABLE table_name_97 (area_km_2 INTEGER, census_ranking VARCHAR) | SELECT AVG(area_km_2) FROM table_name_97 WHERE census_ranking = "636 of 5,008" |
Where was the game held where Hawthorn was the away team? | CREATE TABLE table_name_46 (venue VARCHAR, away_team VARCHAR) | SELECT venue FROM table_name_46 WHERE away_team = "hawthorn" |
What was the record for game 59? | CREATE TABLE table_name_61 (record VARCHAR, game VARCHAR) | SELECT record FROM table_name_61 WHERE game = 59 |
When was sniffles and the bookworm released? | CREATE TABLE table_name_81 (release_date VARCHAR, title VARCHAR) | SELECT release_date FROM table_name_81 WHERE title = "sniffles and the bookworm" |
What is the Sub-Parish (Sokn) that was built in 1957 in the location of Stavang? | CREATE TABLE table_name_30 (sub_parish__sokn_ VARCHAR, year_built VARCHAR, location_of_the_church VARCHAR) | SELECT sub_parish__sokn_ FROM table_name_30 WHERE year_built = "1957" AND location_of_the_church = "stavang" |
What is the maximum 1985 GDP for the region where 1990 GDP is less than 267, 2000 GDP is 333 and 2005 GDP is less than 658? | CREATE TABLE table_name_88 (Id VARCHAR) | SELECT MAX(1985) FROM table_name_88 WHERE 1990 < 267 AND 2000 = 333 AND 2005 < 658 |
What visitor has tim duncan (16) as the leading scorer? | CREATE TABLE table_name_18 (visitor VARCHAR, leading_scorer VARCHAR) | SELECT visitor FROM table_name_18 WHERE leading_scorer = "tim duncan (16)" |
Who was the 1st member that was elected in 1541/42? | CREATE TABLE table_name_44 (elected VARCHAR) | SELECT 1 AS st_member FROM table_name_44 WHERE elected = "1541/42" |
What was the total enrollment 08-09 of Franklin County? | CREATE TABLE table_name_93 (enrollment_08_09 VARCHAR, school VARCHAR) | SELECT COUNT(enrollment_08_09) FROM table_name_93 WHERE school = "franklin county" |
Which title placed in rank 7? | CREATE TABLE table_name_7 (title VARCHAR, rank VARCHAR) | SELECT title FROM table_name_7 WHERE rank = 7 |
Name the least points | CREATE TABLE table_22824319_3 (points INTEGER) | SELECT MIN(points) FROM table_22824319_3 |
List the torque possible when the stroke is 88.4mm? | CREATE TABLE table_21021796_1 (torque VARCHAR, stroke VARCHAR) | SELECT torque FROM table_21021796_1 WHERE stroke = "88.4mm" |
For the race held at the Cleveland Burke Lakefront Airport circuit, with winning driver Emerson Fittipaldi and pole position Michael Andretti, what was the winning team? | CREATE TABLE table_name_15 (winning_team VARCHAR, circuit VARCHAR, winning_driver VARCHAR, pole_position VARCHAR) | SELECT winning_team FROM table_name_15 WHERE winning_driver = "emerson fittipaldi" AND pole_position = "michael andretti" AND circuit = "cleveland burke lakefront airport" |
In the game against Essendon at home, what did the away team score? | CREATE TABLE table_name_95 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_95 WHERE home_team = "essendon" |
If the race time is 2:00:33, what is the average speed? | CREATE TABLE table_2260452_1 (average_speed__mph_ VARCHAR, race_time VARCHAR) | SELECT average_speed__mph_ FROM table_2260452_1 WHERE race_time = "2:00:33" |
Which away team has an attendance of more than 17,000? | CREATE TABLE table_name_30 (away_team VARCHAR, crowd INTEGER) | SELECT away_team FROM table_name_30 WHERE crowd > 17 OFFSET 000 |
If the PCT is 0.514, what was the minimum OTL? | CREATE TABLE table_1888165_1 (Otl INTEGER, PCt VARCHAR) | SELECT MIN(Otl) FROM table_1888165_1 WHERE PCt = 0.514 |
What was the method of the bout lasting 4:15? | CREATE TABLE table_name_82 (method VARCHAR, time VARCHAR) | SELECT method FROM table_name_82 WHERE time = "4:15" |
What year was the start 33? | CREATE TABLE table_name_97 (year INTEGER, start VARCHAR) | SELECT SUM(year) FROM table_name_97 WHERE start = "33" |
What kind of brakes for the model type rb 4at with 16x8.0jj (front) 16x8.0jj (rear) wheels and 225/50r16 92v(front) 225/50r16 92v(rear) tyres? | CREATE TABLE table_250230_2 (brakes VARCHAR, model VARCHAR, wheels VARCHAR, tyres VARCHAR) | SELECT brakes FROM table_250230_2 WHERE wheels = "16x8.0JJ (front) 16x8.0JJ (rear)" AND tyres = "225/50R16 92V(front) 225/50R16 92V(rear)" AND model = "Type RB 4AT" |
What is the name of the episode that had 8.51 million viewers? | CREATE TABLE table_26139405_1 (title VARCHAR, viewers__in_millions_ VARCHAR) | SELECT title FROM table_26139405_1 WHERE viewers__in_millions_ = "8.51" |
where did obama get 41.3% | CREATE TABLE table_20424014_1 (county VARCHAR, obama__percentage VARCHAR) | SELECT county FROM table_20424014_1 WHERE obama__percentage = "41.3%" |
What is Shot Pct., when Stolen Ends is 2? | CREATE TABLE table_name_67 (shot_pct VARCHAR, stolen_ends VARCHAR) | SELECT shot_pct FROM table_name_67 WHERE stolen_ends = 2 |
What was the total for the golfer who had a To par of +10 and year won of 1971? | CREATE TABLE table_name_9 (total INTEGER, to_par VARCHAR, year_s__won VARCHAR) | SELECT SUM(total) FROM table_name_9 WHERE to_par = "+10" AND year_s__won = "1971" |
What's the name of the church in Stavang? | CREATE TABLE table_178381_1 (church_name VARCHAR, location_of_the_church VARCHAR) | SELECT church_name FROM table_178381_1 WHERE location_of_the_church = "Stavang" |
What was the venue when the home team was Essendon? | CREATE TABLE table_name_53 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_53 WHERE home_team = "essendon" |
What was the English title fo the film that was a nominee? | CREATE TABLE table_27423508_1 (english_title VARCHAR, result VARCHAR) | SELECT english_title FROM table_27423508_1 WHERE result = "Nominee" |
How many primary conferences were held in Allendale, Michigan? | CREATE TABLE table_27361255_1 (primary_conference VARCHAR, location VARCHAR) | SELECT COUNT(primary_conference) FROM table_27361255_1 WHERE location = "Allendale, Michigan" |
What loss has 4-2 as the record? | CREATE TABLE table_name_73 (loss VARCHAR, record VARCHAR) | SELECT loss FROM table_name_73 WHERE record = "4-2" |
What is Coverage (Transmitter Site), when Power (kW) is "10kW", and when Callsign is "DYFX-TV"? | CREATE TABLE table_name_14 (coverage__transmitter_site_ VARCHAR, power__kw_ VARCHAR, callsign VARCHAR) | SELECT coverage__transmitter_site_ FROM table_name_14 WHERE power__kw_ = "10kw" AND callsign = "dyfx-tv" |
What is the score of the match on October 5, 1990? | CREATE TABLE table_name_82 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_82 WHERE date = "october 5, 1990" |
how many number is located at registration f-bvff? | CREATE TABLE table_1997759_1 (number VARCHAR, registration VARCHAR) | SELECT COUNT(number) FROM table_1997759_1 WHERE registration = "F-BVFF" |
What is the issue date of the volume with the minimum weeks on top? | CREATE TABLE volume (Issue_Date VARCHAR, Weeks_on_Top VARCHAR) | SELECT Issue_Date FROM volume ORDER BY Weeks_on_Top LIMIT 1 |
Which Alliance Constituency has Seamus Close, position 2 and an election smaller than 1997? | CREATE TABLE table_name_41 (constituency VARCHAR, candidate VARCHAR, position VARCHAR, party VARCHAR, election VARCHAR) | SELECT constituency FROM table_name_41 WHERE party = "alliance" AND election < 1997 AND position = 2 AND candidate = "seamus close" |
What was the film title nominated from the Sweden? | CREATE TABLE table_name_16 (film_title_used_in_nomination VARCHAR, country VARCHAR) | SELECT film_title_used_in_nomination FROM table_name_16 WHERE country = "sweden" |
What is the mascot for the school founded in 1923 with the school colors of blue, red & white? | CREATE TABLE table_12434380_1 (mascot VARCHAR, founded VARCHAR, school_colors VARCHAR) | SELECT mascot FROM table_12434380_1 WHERE founded = 1923 AND school_colors = "Blue, Red & White" |
What is the party with the candidates newt gingrich (r) 59.1% dock h. davis (d) 40.9%? | CREATE TABLE table_1341640_11 (party VARCHAR, candidates VARCHAR) | SELECT party FROM table_1341640_11 WHERE candidates = "Newt Gingrich (R) 59.1% Dock H. Davis (D) 40.9%" |
I want to know the lowest ligue 1 titles for position in 2012-13 of 010 12th and number of seasons in ligue 1 more than 56 | CREATE TABLE table_name_80 (ligue_1_titles INTEGER, position_in_2012_13 VARCHAR, number_of_seasons_in_ligue_1 VARCHAR) | SELECT MIN(ligue_1_titles) FROM table_name_80 WHERE position_in_2012_13 = "010 12th" AND number_of_seasons_in_ligue_1 > 56 |
What is the highest number of wins when draws are larger than 1, and byes are larger than 0? | CREATE TABLE table_name_59 (wins INTEGER, draws VARCHAR, byes VARCHAR) | SELECT MAX(wins) FROM table_name_59 WHERE draws > 1 AND byes > 0 |
What is the distinct service types that are provided by the organization which has detail 'Denesik and Sons Party'? | CREATE TABLE services (service_type_code VARCHAR, organization_id VARCHAR); CREATE TABLE organizations (organization_id VARCHAR, organization_details VARCHAR) | SELECT DISTINCT T1.service_type_code FROM services AS T1 JOIN organizations AS T2 ON T1.organization_id = T2.organization_id WHERE T2.organization_details = 'Denesik and Sons Party' |
How much tonnage has a Fate of sunk, and a Flag of great britain, and a Date of 26 september 1940, and Deaths of 2? | CREATE TABLE table_name_83 (tonnage___grt__ INTEGER, deaths VARCHAR, date VARCHAR, fate VARCHAR, flag VARCHAR) | SELECT SUM(tonnage___grt__) FROM table_name_83 WHERE fate = "sunk" AND flag = "great britain" AND date = "26 september 1940" AND deaths = 2 |
What is the Name of the Special Stage with a 2.40km length and S. Loeb as Winner? | CREATE TABLE table_name_45 (name VARCHAR, length VARCHAR, winner VARCHAR) | SELECT name FROM table_name_45 WHERE length = "2.40km" AND winner = "s. loeb" |
Who had the highest points of the game on March 24? | CREATE TABLE table_name_39 (high_points VARCHAR, date VARCHAR) | SELECT high_points FROM table_name_39 WHERE date = "march 24" |
How many goals on average had 644 matches and a rank bigger than 3? | CREATE TABLE table_name_94 (goals INTEGER, matches VARCHAR, rank VARCHAR) | SELECT AVG(goals) FROM table_name_94 WHERE matches = 644 AND rank > 3 |
What Team has a Class of 350cc, with less than 13 points in 1959? | CREATE TABLE table_name_93 (team VARCHAR, year VARCHAR, class VARCHAR, points VARCHAR) | SELECT team FROM table_name_93 WHERE class = "350cc" AND points < 13 AND year = 1959 |
What were the pick numbers of the defensive tackles chosen by the New Orleans Saints in the 1983 draft? | CREATE TABLE table_2508633_4 (position VARCHAR, nfl_team VARCHAR) | SELECT position FROM table_2508633_4 WHERE nfl_team = "New Orleans Saints" |
What years does Kakahi school, with a decile of 3, have? | CREATE TABLE table_name_9 (years VARCHAR, decile VARCHAR, name VARCHAR) | SELECT years FROM table_name_9 WHERE decile = 3 AND name = "kakahi school" |
What is the train name of the rail with a daily frequency and Jammutawi as the destination? | CREATE TABLE table_name_61 (train_name VARCHAR, frequency__inbound_outbound_ VARCHAR, destination VARCHAR) | SELECT train_name FROM table_name_61 WHERE frequency__inbound_outbound_ = "daily" AND destination = "jammutawi" |
What tournament took place after 1986 and had a final score of 7–6, 3–6, 6–2? | CREATE TABLE table_name_26 (tournament VARCHAR, date VARCHAR, score_in_the_final VARCHAR) | SELECT tournament FROM table_name_26 WHERE date > 1986 AND score_in_the_final = "7–6, 3–6, 6–2" |
When 5.5 is the l-band what is the v-band? | CREATE TABLE table_186468_1 (v_band VARCHAR, k_band VARCHAR) | SELECT v_band FROM table_186468_1 WHERE k_band = "5.5" |
Name the series with game of game 6 | CREATE TABLE table_name_58 (series VARCHAR, game VARCHAR) | SELECT series FROM table_name_58 WHERE game = "game 6" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.