answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 484 |
|---|---|---|
SELECT MAX(played) FROM table_name_99 WHERE drawn < 1 AND position < 1 | What is the greatest played with a drawn less than 1 and a position of less than 1? | CREATE TABLE table_name_99 (played INTEGER, drawn VARCHAR, position VARCHAR) |
SELECT AVG(laps) FROM table_name_84 WHERE time_retired = "accident" AND manufacturer = "aprilia" AND grid = 27 | What is the average number of laps with an accident time/retired, aprilia manufacturer and a grid of 27? | CREATE TABLE table_name_84 (laps INTEGER, grid VARCHAR, time_retired VARCHAR, manufacturer VARCHAR) |
SELECT november_3 FROM table_25252080_3 WHERE january_15_16 = "151" | What number is shown for november 3 where january 15-16 is 151? | CREATE TABLE table_25252080_3 (november_3 VARCHAR, january_15_16 VARCHAR) |
SELECT country FROM table_name_70 WHERE name = "cordier" | What is the country of cordier? | CREATE TABLE table_name_70 (country VARCHAR, name VARCHAR) |
SELECT home_team AS score FROM table_name_80 WHERE venue = "kardinia park" | What was the home teams score when the VFL played at Kardinia Park? | CREATE TABLE table_name_80 (home_team VARCHAR, venue VARCHAR) |
SELECT torque FROM table_11167610_1 WHERE performance = "0–100km/h: 7.5s auto, VMax: km/h (mph)" | what's the torque where performance is 0–100km/h: 7.5s auto, vmax: km/h (mph) | CREATE TABLE table_11167610_1 (torque VARCHAR, performance VARCHAR) |
SELECT MAX(points) FROM table_name_5 WHERE year < 1954 | What is the highest number of points before 1954? | CREATE TABLE table_name_5 (points INTEGER, year INTEGER) |
SELECT COUNT(draw) FROM table_name_59 WHERE artist = "de spelbrekers" AND points < 0 | Can you tell me the total number of Draw that has the Artist of de spelbrekers, and the Points smaller than 0? | CREATE TABLE table_name_59 (draw VARCHAR, artist VARCHAR, points VARCHAR) |
SELECT hometown FROM table_name_83 WHERE school = "bishop luers high school" | When the School is Bishop Luers High School, what is the Hometown? | CREATE TABLE table_name_83 (hometown VARCHAR, school VARCHAR) |
SELECT variant__with_niqqud__ FROM table_name_84 WHERE phonetic_realisation = "[[[|u]]]" | When phonetic realisation is [[[|u]]], what is the variant with niqqud? | CREATE TABLE table_name_84 (variant__with_niqqud__ VARCHAR, phonetic_realisation VARCHAR) |
SELECT home_team AS score FROM table_name_47 WHERE venue = "windy hill" | What team has Windy Hill as their home venue | CREATE TABLE table_name_47 (home_team VARCHAR, venue VARCHAR) |
SELECT COUNT(points) FROM table_name_12 WHERE year > 1992 | How many points are there later than 1992? | CREATE TABLE table_name_12 (points VARCHAR, year INTEGER) |
SELECT score FROM table_name_79 WHERE date = "1/10/1974" | What was the score on 1/10/1974? | CREATE TABLE table_name_79 (score VARCHAR, date VARCHAR) |
SELECT SUM(april) FROM table_name_50 WHERE points = 95 AND record = "41–25–10–3" AND game < 79 | Which April has Points of 95, and a Record of 41–25–10–3, and a Game smaller than 79? | CREATE TABLE table_name_50 (april INTEGER, game VARCHAR, points VARCHAR, record VARCHAR) |
SELECT AVG(inegi_code) FROM table_name_6 WHERE municipal_seat = "mexicali" AND area__km2_ > 13 OFFSET 700 | What is the inegi code for mexicali with 13,700 km area? | CREATE TABLE table_name_6 (inegi_code INTEGER, municipal_seat VARCHAR, area__km2_ VARCHAR) |
SELECT MAX(total_population__2010_census_) FROM table_name_11 WHERE area__km_2__ < 147 OFFSET 307.00 | Which Total population (2010 census) has an Area (km 2) smaller than 147,307.00? | CREATE TABLE table_name_11 (total_population__2010_census_ INTEGER, area__km_2__ INTEGER) |
SELECT T1.id, T1.Name FROM web_client_accelerator AS T1 JOIN accelerator_compatible_browser AS T2 ON T2.accelerator_id = T1.id GROUP BY T1.id HAVING COUNT(*) >= 2 | What are the ids and names of the web accelerators that are compatible with two or more browsers? | CREATE TABLE accelerator_compatible_browser (accelerator_id VARCHAR); CREATE TABLE web_client_accelerator (id VARCHAR, Name VARCHAR) |
SELECT page_count FROM table_name_39 WHERE author = "stefano d'arrigo" | How many pages were in the book by Stefano D'Arrigo? | CREATE TABLE table_name_39 (page_count VARCHAR, author VARCHAR) |
SELECT against FROM table_name_76 WHERE date = "17/02/1979" | What is the against for 17/02/1979? | CREATE TABLE table_name_76 (against VARCHAR, date VARCHAR) |
SELECT record FROM table_17103645_10 WHERE date = "July 18" | Name the record for july 18 | CREATE TABLE table_17103645_10 (record VARCHAR, date VARCHAR) |
SELECT nhl_team FROM table_1473672_2 WHERE college_junior_club_team = "Oshawa Generals (OMJHL)" | Jack Lynch played for the oshawa generals (omjhl) before playing for what nhl team? | CREATE TABLE table_1473672_2 (nhl_team VARCHAR, college_junior_club_team VARCHAR) |
SELECT election FROM table_name_11 WHERE first_party = "conservative" AND first_member = "rowland smith" AND second_member = "sir henry wilmot, bt" | Which election has a conservative first party, Rowland Smith as first member, and Sir Henry Wilmot, Bt as second member? | CREATE TABLE table_name_11 (election VARCHAR, second_member VARCHAR, first_party VARCHAR, first_member VARCHAR) |
SELECT away_team FROM table_name_69 WHERE venue = "lake oval" | Who played in lake oval while away? | CREATE TABLE table_name_69 (away_team VARCHAR, venue VARCHAR) |
SELECT segment_c FROM table_15187735_8 WHERE segment_b = "Paint Rollers" | Name the segment c for paint rollers | CREATE TABLE table_15187735_8 (segment_c VARCHAR, segment_b VARCHAR) |
SELECT MIN(judges) FROM table_26375386_16 WHERE couple = "Danny and Frankie" | What was the lowest judge rank for danny and frankie? | CREATE TABLE table_26375386_16 (judges INTEGER, couple VARCHAR) |
SELECT MAX(aircraft_movements_2009) FROM table_13836704_4 WHERE change_2008_09 = "18.2%" | what is the maximum aircraft movements 2009 with change 2008/09 being 18.2% | CREATE TABLE table_13836704_4 (aircraft_movements_2009 INTEGER, change_2008_09 VARCHAR) |
SELECT date FROM table_name_40 WHERE attendance = "65,806" | When was the attendance 65,806? | CREATE TABLE table_name_40 (date VARCHAR, attendance VARCHAR) |
SELECT date FROM table_name_92 WHERE viewers = "4.4 million" | What is Date, when Viewers is 4.4 million? | CREATE TABLE table_name_92 (date VARCHAR, viewers VARCHAR) |
SELECT MIN(game) FROM table_17102076_10 WHERE location_attendance = "ARCO Arena 13,330" | Name the least game for arco arena 13,330 | CREATE TABLE table_17102076_10 (game INTEGER, location_attendance VARCHAR) |
SELECT 1953 FROM table_name_48 WHERE 1949 = "2" AND 1952 = "3" | What 1953 has 2 as a 1949, and 3 as 1952? | CREATE TABLE table_name_48 (Id VARCHAR) |
SELECT dates FROM table_name_27 WHERE lifetime_achievement = "jim jarmusch" | On what dates did Jim Jarmusch win the Lifetime Achievement? | CREATE TABLE table_name_27 (dates VARCHAR, lifetime_achievement VARCHAR) |
SELECT reserved_instruments FROM table_name_19 WHERE conduct_of_litigation = "yes" AND probate_activities = "yes" | What is Reserved Instruments, when Conduct of Litigation is Yes, and when Probate Activities is Yes? | CREATE TABLE table_name_19 (reserved_instruments VARCHAR, conduct_of_litigation VARCHAR, probate_activities VARCHAR) |
SELECT province FROM table_27369069_1 WHERE founded = 2005 | which providence's soccer stadium was founded in 2005? | CREATE TABLE table_27369069_1 (province VARCHAR, founded VARCHAR) |
SELECT MAX(the_year) FROM table_name_18 WHERE regular_season = "7th" | Which Year has a Regular Season of 7th? | CREATE TABLE table_name_18 (the_year INTEGER, regular_season VARCHAR) |
SELECT name FROM table_29871617_1 WHERE property = "Unknown" | Which chromosomes have an unknown property? | CREATE TABLE table_29871617_1 (name VARCHAR, property VARCHAR) |
SELECT record FROM table_name_5 WHERE opponent = "@ orioles" AND loss = "leal (5-4)" | What was the record where the opponent was @ Orioles and the loss was to Leal (5-4)? | CREATE TABLE table_name_5 (record VARCHAR, opponent VARCHAR, loss VARCHAR) |
SELECT MIN(year) FROM table_name_71 WHERE location = "cape town, south africa" | What is the earliest year that the tournament was played in Cape Town, South Africa? | CREATE TABLE table_name_71 (year INTEGER, location VARCHAR) |
SELECT reason_for_change FROM table_2417345_4 WHERE vacator = "George W. Greene (D)" | Name the reason for change when George W. Greene (D) was the vacator. | CREATE TABLE table_2417345_4 (reason_for_change VARCHAR, vacator VARCHAR) |
SELECT away_team FROM table_name_74 WHERE home_team = "newton heath" | Who was the away team against Newton Heath? | CREATE TABLE table_name_74 (away_team VARCHAR, home_team VARCHAR) |
SELECT marcus_guest FROM table_19930660_2 WHERE rufus_guest = "Rory McGrath" | Who was Marcus's guest in the episode when Rufus's guest was Rory McGrath? | CREATE TABLE table_19930660_2 (marcus_guest VARCHAR, rufus_guest VARCHAR) |
SELECT score FROM table_name_19 WHERE opponent = "@ athletics" AND record = "76-57" | Which score has an Opponent of @ athletics, and a Record of 76-57? | CREATE TABLE table_name_19 (score VARCHAR, opponent VARCHAR, record VARCHAR) |
SELECT MAX(martyred) FROM table_name_65 WHERE beatified > 1909 AND name = "laurent-marie-joseph imbert / st. imbert" AND canonised > 1984 | When was Laurent-Marie-Joseph Imbert / St. Imbert, who was beatified after 1909 and canonised after 1984, martyred? | CREATE TABLE table_name_65 (martyred INTEGER, canonised VARCHAR, beatified VARCHAR, name VARCHAR) |
SELECT theme FROM table_25374338_1 WHERE original_artist = "Noemi feat. Fiorella Mannoia" | What is the theme where the original artist is Noemi feat. Fiorella Mannoia? | CREATE TABLE table_25374338_1 (theme VARCHAR, original_artist VARCHAR) |
SELECT MAX(swimsuit) FROM table_name_69 WHERE average > 8.48 AND interview > 8.58 AND evening_gown > 8.82 AND state = "kansas" | What is the highest swimsuit a contestant from Kansas with an average larger than 8.48, an interview higher than 8.58, and an evening gown higher than 8.82 has? | CREATE TABLE table_name_69 (swimsuit INTEGER, state VARCHAR, evening_gown VARCHAR, average VARCHAR, interview VARCHAR) |
SELECT surface FROM table_22597626_2 WHERE championship = "US Open" AND year = 1979 | What is the surface made of if the year is 1979 and the championship is US Open? | CREATE TABLE table_22597626_2 (surface VARCHAR, championship VARCHAR, year VARCHAR) |
SELECT MAX(no) FROM table_15621965_17 WHERE position = "Guard" AND school_club_team = "Wake Forest" | What is the latest number of the guard position from the Wake Forest school team? | CREATE TABLE table_15621965_17 (no INTEGER, position VARCHAR, school_club_team VARCHAR) |
SELECT MIN(laps) FROM table_name_72 WHERE qual = "124.619" | What is Chitwood's lowest completed number of laps with a qualifying time of 124.619? | CREATE TABLE table_name_72 (laps INTEGER, qual VARCHAR) |
SELECT COUNT(compulsory) FROM table_name_42 WHERE voluntary = 38.7 AND total > 69.2 | What's the total compulsory when the total is more than 69.2 and the voluntary is 38.7? | CREATE TABLE table_name_42 (compulsory VARCHAR, voluntary VARCHAR, total VARCHAR) |
SELECT pos FROM table_name_64 WHERE year = "2003" AND event = "f" | What is the pos from 2003, and the f event? | CREATE TABLE table_name_64 (pos VARCHAR, year VARCHAR, event VARCHAR) |
SELECT agg FROM table_name_70 WHERE team_1 = "milan" | What is the agg when team 1 is Milan? | CREATE TABLE table_name_70 (agg VARCHAR, team_1 VARCHAR) |
SELECT content FROM table_15887683_3 WHERE n° = 204 | What's the content offered by the package number 204? | CREATE TABLE table_15887683_3 (content VARCHAR, n° VARCHAR) |
SELECT parish FROM table_16226584_1 WHERE name = "Highworth" | Which parishes have the highworth railroad? | CREATE TABLE table_16226584_1 (parish VARCHAR, name VARCHAR) |
SELECT home_team FROM table_name_70 WHERE crowd > 25 OFFSET 000 | What was the home team for the game with more than 25,000 crowd? | CREATE TABLE table_name_70 (home_team VARCHAR, crowd INTEGER) |
SELECT MIN(touchdowns) FROM table_25646820_2 WHERE player = "Joe Rogers" | Name the least touchdowns for joe rogers | CREATE TABLE table_25646820_2 (touchdowns INTEGER, player VARCHAR) |
SELECT year FROM table_name_6 WHERE playoffs = "1st round" AND league = "nasl indoor" | What year had a 1st round playoff in the NASL indoor league? | CREATE TABLE table_name_6 (year VARCHAR, playoffs VARCHAR, league VARCHAR) |
SELECT partial_thromboplastin_time FROM table_1099080_1 WHERE condition = "Factor X deficiency as seen in amyloid purpura" | What was the partial thromboplastin time for factor x deficiency as seen in amyloid purpura | CREATE TABLE table_1099080_1 (partial_thromboplastin_time VARCHAR, condition VARCHAR) |
SELECT COUNT(rank) FROM table_1218784_1 WHERE manager = "Rob McDonald" | What is the rank of manager Rob Mcdonald? | CREATE TABLE table_1218784_1 (rank VARCHAR, manager VARCHAR) |
SELECT date FROM table_name_96 WHERE film = "monsters" | When did the film 'Monsters' come out? | CREATE TABLE table_name_96 (date VARCHAR, film VARCHAR) |
SELECT airport FROM table_name_95 WHERE city = "milan" AND iata = "lin" | for milan and the iata of lin what is the airport? | CREATE TABLE table_name_95 (airport VARCHAR, city VARCHAR, iata VARCHAR) |
SELECT college FROM table_20898602_1 WHERE position = "Running back" | which college had a running back player | CREATE TABLE table_20898602_1 (college VARCHAR, position VARCHAR) |
SELECT COUNT(_number_of_prefectural_votes) FROM table_name_37 WHERE _percentage_of_prefectural_vote = "48.4%" AND _number_of_seats_won > 61 | What is the total number of # Of Prefectural Votes, when % Of Prefectural Vote is 48.4%, and when # Of Seats Won is greater than 61? | CREATE TABLE table_name_37 (_number_of_prefectural_votes VARCHAR, _percentage_of_prefectural_vote VARCHAR, _number_of_seats_won VARCHAR) |
SELECT SUM(attendance) FROM table_name_71 WHERE visitor = "nuggets" AND leading_scorer = "j.r. smith (28)" | How many people were in attendance when the visiting team was the Nuggets and the leading scorer was J.R. Smith (28)? | CREATE TABLE table_name_71 (attendance INTEGER, visitor VARCHAR, leading_scorer VARCHAR) |
SELECT appearance FROM table_name_80 WHERE polyphenyl_ether = "3- and 4-ring oxythio" | What does Polyphenyl Ether of 3- and 4-ring oxythio look like? | CREATE TABLE table_name_80 (appearance VARCHAR, polyphenyl_ether VARCHAR) |
SELECT country FROM table_name_89 WHERE player = "mike sullivan" | What country is player mike sullivan from? | CREATE TABLE table_name_89 (country VARCHAR, player VARCHAR) |
SELECT sub_parish__sogn_ FROM table_name_52 WHERE parish__prestegjeld_ = "hafslo parish" AND location_of_the_church = "urnes" | Which Sub-Parish (Sogn) is in the Parish (Prestegjeld) of hafslo parish and is located in the Church of Urnes? | CREATE TABLE table_name_52 (sub_parish__sogn_ VARCHAR, parish__prestegjeld_ VARCHAR, location_of_the_church VARCHAR) |
SELECT championship FROM table_name_8 WHERE opponent_in_the_final = "mario ančić" | Which championship had an oppenent of mario ančić in the final? | CREATE TABLE table_name_8 (championship VARCHAR, opponent_in_the_final VARCHAR) |
SELECT MIN(goals) FROM table_name_76 WHERE ranking < 4 AND years = "1996–13" | Who had fewer goals than 4 during the years of 1996–13? | CREATE TABLE table_name_76 (goals INTEGER, ranking VARCHAR, years VARCHAR) |
SELECT tournament FROM table_name_23 WHERE date = "6 sep 2009" | Which Tournament was on the Date 6 Sep 2009? | CREATE TABLE table_name_23 (tournament VARCHAR, date VARCHAR) |
SELECT TYPE FROM institution GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1 | Show the institution type with the largest number of institutions. | CREATE TABLE institution (TYPE VARCHAR) |
SELECT game_site FROM table_name_29 WHERE record = "2-3" | Where is the game site for the game that had a packers record of 2-3? | CREATE TABLE table_name_29 (game_site VARCHAR, record VARCHAR) |
SELECT winner FROM table_name_32 WHERE date = "29 may" | who won on 29 may? | CREATE TABLE table_name_32 (winner VARCHAR, date VARCHAR) |
SELECT AVG(appeared) FROM table_name_56 WHERE rr_w_rate < 0.75 AND result = "rr:08,09" | If the RR Rate is less than 0.75 with a result of RR:08,09, what is the average appeared? | CREATE TABLE table_name_56 (appeared INTEGER, rr_w_rate VARCHAR, result VARCHAR) |
SELECT leading_scorer FROM table_name_65 WHERE attendance = "gund arena 20,562" AND record = "20-10" | What is Leading Scorer, when Attendance is Gund Arena 20,562, and when Record is 20-10? | CREATE TABLE table_name_65 (leading_scorer VARCHAR, attendance VARCHAR, record VARCHAR) |
SELECT form_factor FROM table_27615520_1 WHERE bandwidth__gb_s_ = "10" | What is the shape distortion for the range frequency of 10? | CREATE TABLE table_27615520_1 (form_factor VARCHAR, bandwidth__gb_s_ VARCHAR) |
SELECT SUM(evening_gown) FROM table_name_4 WHERE interview < 8.77 AND swimsuit = 7.8 AND average < 8.2 | What is the sum of the evening gown scores where the interview score is less than 8.77, the swimsuit score is equal to 7.8, and the average score is less than 8.2? | CREATE TABLE table_name_4 (evening_gown INTEGER, average VARCHAR, interview VARCHAR, swimsuit VARCHAR) |
SELECT overall FROM table_name_12 WHERE nationality = "canada" AND round = 2 | What is the total for Canada during round 2? | CREATE TABLE table_name_12 (overall VARCHAR, nationality VARCHAR, round VARCHAR) |
SELECT home_team FROM table_name_32 WHERE venue = "victoria park" | Who was the home team that played in Victoria Park? | CREATE TABLE table_name_32 (home_team VARCHAR, venue VARCHAR) |
SELECT written_by FROM table_25716399_1 WHERE original_air_date = "July20,2007" | Who wrote the episode where the original air date is july20,2007? | CREATE TABLE table_25716399_1 (written_by VARCHAR, original_air_date VARCHAR) |
SELECT dance FROM table_name_16 WHERE result = "safe" AND week = 1 | What Dance in Week 1 resulted in Safe? | CREATE TABLE table_name_16 (dance VARCHAR, result VARCHAR, week VARCHAR) |
SELECT ncaat_record FROM table_18025024_7 WHERE date = "June 22" | What is the June 22 ncaat baseball record for Fresno State Bulldogs? | CREATE TABLE table_18025024_7 (ncaat_record VARCHAR, date VARCHAR) |
SELECT MIN(silver) FROM table_name_72 WHERE total > 3 AND bronze > 22 AND gold < 395 AND nation = "austria" | What is the lowest number of silver medals received by Austria when they receive more than 3 total medals, more than 22 bronze medals, and fewer than 395 gold medals? | CREATE TABLE table_name_72 (silver INTEGER, nation VARCHAR, gold VARCHAR, total VARCHAR, bronze VARCHAR) |
SELECT cardinal_direction FROM table_14850099_18 WHERE planet = "Venus" | What is the cardinal direction associated with Venus? | CREATE TABLE table_14850099_18 (cardinal_direction VARCHAR, planet VARCHAR) |
SELECT city FROM table_name_93 WHERE built = 1988 | What city was the building built in 1988? | CREATE TABLE table_name_93 (city VARCHAR, built VARCHAR) |
SELECT AVG(enrollment) FROM university WHERE founded < 1850 | What are the average enrollment size of the universities that are founded before 1850? | CREATE TABLE university (enrollment INTEGER, founded INTEGER) |
SELECT writer FROM table_name_8 WHERE actual_title = "mork & mindy" | What is the Writer with an Actual Title that is mork & mindy? | CREATE TABLE table_name_8 (writer VARCHAR, actual_title VARCHAR) |
SELECT SUM(total_games) FROM table_name_68 WHERE conference = "big ten" AND lost < 488 AND team = "nebraska" AND pct < 0.7014 | What were the total games in the Big Ten conference when Nebraska lost fewer than 488 games and had a Pct less than 0.7014? | CREATE TABLE table_name_68 (total_games INTEGER, pct VARCHAR, team VARCHAR, conference VARCHAR, lost VARCHAR) |
SELECT venue FROM table_name_7 WHERE notes = "400 m hurdles" AND competition = "european championships" | What venue did the European Championships' 400 m Hurdles take place? | CREATE TABLE table_name_7 (venue VARCHAR, notes VARCHAR, competition VARCHAR) |
SELECT episode FROM table_19805130_3 WHERE rank__night_ = "9" | What is the name of the episode with a night rank of 9? | CREATE TABLE table_19805130_3 (episode VARCHAR, rank__night_ VARCHAR) |
SELECT race_title FROM table_name_8 WHERE team = "jps team bmw" AND circuit = "oran park raceway" | What is the race title of the Oran Park raceway circuit with team jps team bmw? | CREATE TABLE table_name_8 (race_title VARCHAR, team VARCHAR, circuit VARCHAR) |
SELECT current_club FROM table_12962773_1 WHERE height = "2.09" | what's current club with height being 2.09 | CREATE TABLE table_12962773_1 (current_club VARCHAR, height VARCHAR) |
SELECT date FROM table_name_9 WHERE performance = "8.22.72" | On which date is there a performance of more than 8.22.72? | CREATE TABLE table_name_9 (date VARCHAR, performance VARCHAR) |
SELECT location FROM table_name_95 WHERE previous_conference = "independents" AND mascot = "hilltoppers" | Which Location has a Previous Conference of independents, and a Mascot of hilltoppers? | CREATE TABLE table_name_95 (location VARCHAR, previous_conference VARCHAR, mascot VARCHAR) |
SELECT rank FROM table_name_78 WHERE chassis = "cadillac northstar lmp02" | What is the rank of the cadillac northstar lmp02 chassis? | CREATE TABLE table_name_78 (rank VARCHAR, chassis VARCHAR) |
SELECT home_team FROM table_name_53 WHERE venue = "moorabbin oval" | Moorabbin oval is home to what team? | CREATE TABLE table_name_53 (home_team VARCHAR, venue VARCHAR) |
SELECT MIN(league) AS Cup FROM table_name_34 WHERE league = 434 | What is the lowest number of League Cups a player with a 434 league has? | CREATE TABLE table_name_34 (league INTEGER) |
SELECT res FROM table_name_86 WHERE opponent = "mark hunt" | The match against Mark Hunt had what result? | CREATE TABLE table_name_86 (res VARCHAR, opponent VARCHAR) |
SELECT MIN(tropical_lows) FROM table_name_41 WHERE season = "1993–94" AND tropical_cyclones < 11 | What is the least amount of tropical lows for the 1993–94 season with less than 11 tropical cyclones | CREATE TABLE table_name_41 (tropical_lows INTEGER, season VARCHAR, tropical_cyclones VARCHAR) |
SELECT party FROM table_name_10 WHERE results = "re-elected" AND first_elected > 1990 AND district = "minnesota 4" | What is Party, when Results is "Re-Elected", when First Elected is greater than 1990, and when District is "Minnesota 4"? | CREATE TABLE table_name_10 (party VARCHAR, district VARCHAR, results VARCHAR, first_elected VARCHAR) |
SELECT jasons_team FROM table_23292220_6 WHERE episode = "6x02" | Name all of Jason's teams that appeared on episode 6x02? | CREATE TABLE table_23292220_6 (jasons_team VARCHAR, episode VARCHAR) |
SELECT MAX(against) FROM table_name_35 WHERE drawn > 5 AND points > 18 | What's the highest against score that drew more than 5, and had more than 18 points? | CREATE TABLE table_name_35 (against INTEGER, drawn VARCHAR, points VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.