answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT Name FROM technician ORDER BY Age | List the names of technicians in ascending order of age. | CREATE TABLE technician (Name VARCHAR, Age VARCHAR) |
SELECT MAX(lost) FROM table_name_40 WHERE season > 1979 AND avg_attend = 16 OFFSET 605 | What is the maximum number of losses that the Minnesota Kicks had after 1979 with an average attendance of 16,605? | CREATE TABLE table_name_40 (lost INTEGER, season VARCHAR, avg_attend VARCHAR) |
SELECT MIN(year) FROM table_name_7 WHERE time = "12:49:08" | When was the time of 12:49:08 first set? | CREATE TABLE table_name_7 (year INTEGER, time VARCHAR) |
SELECT AVG(lead_margin) FROM table_name_86 WHERE dates_administered = "november 13-november 19, 2007" | Name the average Lead Margin on november 13-november 19, 2007? | CREATE TABLE table_name_86 (lead_margin INTEGER, dates_administered VARCHAR) |
SELECT district FROM table_1342233_42 WHERE incumbent = "Harold Earthman" | What district was Harold Earthman the incumbent in? | CREATE TABLE table_1342233_42 (district VARCHAR, incumbent VARCHAR) |
SELECT record FROM table_name_99 WHERE result = "loss" AND attendance > 56 OFFSET 648 | What is the record of the game that resulted in a loss with more than 56,648 people in attendance? | CREATE TABLE table_name_99 (record VARCHAR, result VARCHAR, attendance VARCHAR) |
SELECT 2011 FROM table_name_7 WHERE 2009 = "2r" AND tournament = "wimbledon" | Name the 2011 for 2009 being 2r at wimbledon | CREATE TABLE table_name_7 (tournament VARCHAR) |
SELECT call_sign FROM table_18536769_1 WHERE format = "hot adult contemporary" | When hot adult contemporary is the format what is the call sign? | CREATE TABLE table_18536769_1 (call_sign VARCHAR, format VARCHAR) |
SELECT MIN(game) FROM table_18904831_7 WHERE date = "August 20" | What was # of the first game played on August 20? | CREATE TABLE table_18904831_7 (game INTEGER, date VARCHAR) |
SELECT MAX(game) FROM table_name_35 WHERE opponent = "new york islanders" AND december > 10 | Which Game is the highest one that has an Opponent of new york islanders, and a December larger than 10? | CREATE TABLE table_name_35 (game INTEGER, opponent VARCHAR, december VARCHAR) |
SELECT player FROM table_name_70 WHERE round < 8 AND school_club_team = "louisville" | What player did louisville pick when the round was below 8? | CREATE TABLE table_name_70 (player VARCHAR, round VARCHAR, school_club_team VARCHAR) |
SELECT MAX(lost) FROM table_name_50 WHERE goals_against = 66 AND position < 15 | What is the most losses for positions under 15 and 66 goals against? | CREATE TABLE table_name_50 (lost INTEGER, goals_against VARCHAR, position VARCHAR) |
SELECT T1.staff_name, COUNT(*) FROM Staff AS T1 JOIN Engineer_Visits AS T2 ON T1.staff_id = T2.contact_staff_id GROUP BY T1.staff_name | How many engineers did each staff contact? List both the contact staff name and number of engineers contacted. | CREATE TABLE Engineer_Visits (contact_staff_id VARCHAR); CREATE TABLE Staff (staff_name VARCHAR, staff_id VARCHAR) |
SELECT college FROM table_name_37 WHERE player = "ben wearing" | What college did Ben Wearing play for? | CREATE TABLE table_name_37 (college VARCHAR, player VARCHAR) |
SELECT role FROM table_name_80 WHERE year = "1996" | What was the role in 1996? | CREATE TABLE table_name_80 (role VARCHAR, year VARCHAR) |
SELECT player FROM table_name_52 WHERE total = 281 | What golfer has 281 as their total? | CREATE TABLE table_name_52 (player VARCHAR, total VARCHAR) |
SELECT attendance FROM table_name_69 WHERE date = "november 1, 1993" | What Attendance has a Date that is november 1, 1993? | CREATE TABLE table_name_69 (attendance VARCHAR, date VARCHAR) |
SELECT year_joined FROM table_name_5 WHERE school = "jennings county" | What year did a school from Jennings County join? | CREATE TABLE table_name_5 (year_joined VARCHAR, school VARCHAR) |
SELECT COUNT(crowd) FROM table_name_59 WHERE round = "round 9" | What was the attendance at Round 9? | CREATE TABLE table_name_59 (crowd VARCHAR, round VARCHAR) |
SELECT title FROM table_name_82 WHERE episodes = "8" | What was the title with episode 8? | CREATE TABLE table_name_82 (title VARCHAR, episodes VARCHAR) |
SELECT score FROM table_name_99 WHERE home = "deportes savio" | What is the Score when Deportes Savio is the Home team? | CREATE TABLE table_name_99 (score VARCHAR, home VARCHAR) |
SELECT MAX(bronze) FROM table_name_73 WHERE nation = "south africa" AND total < 20 | What is the highest Bronze, when Nation is "South Africa", and when Total is less than 20? | CREATE TABLE table_name_73 (bronze INTEGER, nation VARCHAR, total VARCHAR) |
SELECT MAX(red_list) FROM table_name_70 WHERE family = "muridae" AND species_authority = "microtus pinetorum (le conte, 1830)" | What is the highest Red List for the muridae family and species Authority of microtus pinetorum (le conte, 1830)? | CREATE TABLE table_name_70 (red_list INTEGER, family VARCHAR, species_authority VARCHAR) |
SELECT MIN(rank) FROM table_name_89 WHERE matches < 285 AND name = "des dickson" AND goals < 219 | What was Des Dickson's lowest rank for matches smaller than 285 and less than 219 goals? | CREATE TABLE table_name_89 (rank INTEGER, goals VARCHAR, matches VARCHAR, name VARCHAR) |
SELECT T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid WHERE T2.balance < (SELECT AVG(balance) FROM checking) | Find the name of accounts whose checking balance is below the average checking balance. | CREATE TABLE accounts (name VARCHAR, custid VARCHAR); CREATE TABLE checking (balance INTEGER); CREATE TABLE checking (custid VARCHAR, balance INTEGER) |
SELECT venue FROM table_name_14 WHERE home_team = "carlton" | Where did Carlton play as the home team? | CREATE TABLE table_name_14 (venue VARCHAR, home_team VARCHAR) |
SELECT versus FROM table_name_82 WHERE bowling_figures_wickets_runs__overs_ = "5-33 (10)" | Who was the opponent during the competition in which the bowling figures were 5-33 (10)? | CREATE TABLE table_name_82 (versus VARCHAR, bowling_figures_wickets_runs__overs_ VARCHAR) |
SELECT gp_gs FROM table_name_52 WHERE season = "2009" | What was the GP-GS for the 2009 season? | CREATE TABLE table_name_52 (gp_gs VARCHAR, season VARCHAR) |
SELECT high_rebounds FROM table_17001658_10 WHERE high_assists = "D. J. Augustin (8)" | Who was the high rebound for the high assists of d. j. augustin (8)? | CREATE TABLE table_17001658_10 (high_rebounds VARCHAR, high_assists VARCHAR) |
SELECT played FROM table_name_63 WHERE points_for = "247" | What played has 247 as the points? | CREATE TABLE table_name_63 (played VARCHAR, points_for VARCHAR) |
SELECT MIN(kennedy_votes) FROM table_24115349_4 WHERE coakley__percentage = "66.2%" | How many votes did kennedy win when coakley won 66.2% | CREATE TABLE table_24115349_4 (kennedy_votes INTEGER, coakley__percentage VARCHAR) |
SELECT AVG(hoop) FROM table_name_37 WHERE all_around < 9.7 | What is the average hoop when the all around is less than 9.7? | CREATE TABLE table_name_37 (hoop INTEGER, all_around INTEGER) |
SELECT grand_final_television_commentator FROM table_name_20 WHERE year_s_ > 1959 AND grand_final_dual_television_commentator = "dave" AND spokesperson = "marie myriam" | What is the grand final television commentator status after 1959 when Dave was the grand final dual television commentator and Marie Myriam was the spokesperson? | CREATE TABLE table_name_20 (grand_final_television_commentator VARCHAR, spokesperson VARCHAR, year_s_ VARCHAR, grand_final_dual_television_commentator VARCHAR) |
SELECT nationality FROM table_1013129_11 WHERE player = "Shayne Wright" | What is the nationality of Shayne Wright? | CREATE TABLE table_1013129_11 (nationality VARCHAR, player VARCHAR) |
SELECT COUNT(number) FROM table_25401874_1 WHERE assists = 10 | How many numbers belong to the player with 10 assists? | CREATE TABLE table_25401874_1 (number VARCHAR, assists VARCHAR) |
SELECT MIN(not_outs) FROM table_name_8 WHERE average < 31.25 AND matches < 13 AND runs < 327 | What is the lowest Not Outs with an average lower than 31.25, fewer than 13 matches, and fewer than 327 runs? | CREATE TABLE table_name_8 (not_outs INTEGER, runs VARCHAR, average VARCHAR, matches VARCHAR) |
SELECT total FROM table_name_30 WHERE country = "united states" AND to_par < 14 AND player = "tom watson" | When the tom watson is playing for the United States and the To par is under 14, what's the total? | CREATE TABLE table_name_30 (total VARCHAR, player VARCHAR, country VARCHAR, to_par VARCHAR) |
SELECT outcome FROM table_name_88 WHERE partner = "kang haeng-suk" AND year = "1982" | What was the outcome in 1982 with Kang Haeng-Suk as partner? | CREATE TABLE table_name_88 (outcome VARCHAR, partner VARCHAR, year VARCHAR) |
SELECT MIN(pick__number) FROM table_name_9 WHERE college = "colorado" | What is Colorado College's lowest pick number? | CREATE TABLE table_name_9 (pick__number INTEGER, college VARCHAR) |
SELECT digital_psip FROM table_name_14 WHERE broadcast_channel > 15 AND call_sign = "cftu-dt" | What is the Digital PSIP for channels over 15 with callsign CFTU-DT? | CREATE TABLE table_name_14 (digital_psip VARCHAR, broadcast_channel VARCHAR, call_sign VARCHAR) |
SELECT match_date FROM table_22384475_1 WHERE winner = "West Indies" | What date did the West Indies win the match? | CREATE TABLE table_22384475_1 (match_date VARCHAR, winner VARCHAR) |
SELECT MAX(round) FROM table_name_68 WHERE school_club_team = "arizona" AND pick < 298 | Which Round has a School/Club Team of arizona, and a Pick smaller than 298? | CREATE TABLE table_name_68 (round INTEGER, school_club_team VARCHAR, pick VARCHAR) |
SELECT SUM(points) FROM table_name_16 WHERE performer = "partners in crime" | What is the total sum of points for songs performed by Partners in Crime? | CREATE TABLE table_name_16 (points INTEGER, performer VARCHAR) |
SELECT narrated_by FROM table_26168687_3 WHERE vessel_operator = "De Beers" | Who narrated when the vessel operator is de beers? | CREATE TABLE table_26168687_3 (narrated_by VARCHAR, vessel_operator VARCHAR) |
SELECT home_team FROM table_name_16 WHERE venue = "western oval" | Which team plays home in western oval venue? | CREATE TABLE table_name_16 (home_team VARCHAR, venue VARCHAR) |
SELECT COUNT(high_points) FROM table_17323092_7 WHERE location_attendance = "FedExForum 11,498" | How many players had high points in the location/attendance FedexForum 11,498 respectively? | CREATE TABLE table_17323092_7 (high_points VARCHAR, location_attendance VARCHAR) |
SELECT T2.Name FROM debate_people AS T1 JOIN people AS T2 ON T1.Negative = T2.People_ID GROUP BY T2.Name HAVING COUNT(*) >= 2 | Show the names of people who have been on the negative side of debates at least twice. | CREATE TABLE debate_people (Negative VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR) |
SELECT MIN(place) FROM table_26375386_28 WHERE couple = "Keiron & Brianne" | What is the least place when the couple is Keiron & Brianne? | CREATE TABLE table_26375386_28 (place INTEGER, couple VARCHAR) |
SELECT d_45_o FROM table_name_97 WHERE d_46_o = "r 31 √" | Name the D 45 O with D 46 O of r 31 √ | CREATE TABLE table_name_97 (d_45_o VARCHAR, d_46_o VARCHAR) |
SELECT runner_up FROM table_name_32 WHERE year = 1989 | Who was the runner-up in 1989? | CREATE TABLE table_name_32 (runner_up VARCHAR, year VARCHAR) |
SELECT COUNT(*) FROM tryout WHERE pPos = 'goalie' | How many students whose are playing the role of goalie? | CREATE TABLE tryout (pPos VARCHAR) |
SELECT MIN(game) FROM table_name_92 WHERE record = "0-1-0" | What is the last game of the season that has the record 0-1-0? | CREATE TABLE table_name_92 (game INTEGER, record VARCHAR) |
SELECT accession_number FROM table_27155678_2 WHERE genus_species = "Rhodopseudomonas palustris" | Name the accession number for rhodopseudomonas palustris | CREATE TABLE table_27155678_2 (accession_number VARCHAR, genus_species VARCHAR) |
SELECT date FROM table_name_87 WHERE ship = "hallbjorg" | Which Date has a Ship of hallbjorg? | CREATE TABLE table_name_87 (date VARCHAR, ship VARCHAR) |
SELECT teleplay FROM table_name_24 WHERE director = "george mccowan" AND season < 1.1400000000000001 AND first_broadcast = "april 3, 1981" | What is Teleplay, when Director is "George McCowan", when Season is less than 1.1400000000000001, and when First Broadcast is April 3, 1981? | CREATE TABLE table_name_24 (teleplay VARCHAR, first_broadcast VARCHAR, director VARCHAR, season VARCHAR) |
SELECT COUNT(goals_scored) FROM table_name_17 WHERE points > 11 AND goals_conceded = 18 AND played < 18 | What is the total goals scored with more than 11 points, 18 goals conceded, and played fewer than 18 times? | CREATE TABLE table_name_17 (goals_scored VARCHAR, played VARCHAR, points VARCHAR, goals_conceded VARCHAR) |
SELECT COUNT(round) FROM table_name_82 WHERE player = "matt roth" | What round was matt roth drafted? | CREATE TABLE table_name_82 (round VARCHAR, player VARCHAR) |
SELECT score FROM table_15780049_6 WHERE date = "January 11" | What was the games score on January 11? | CREATE TABLE table_15780049_6 (score VARCHAR, date VARCHAR) |
SELECT sponsor FROM table_name_46 WHERE winning_driver = "greg biffle" AND date = "april 14" | Who sponsored Greg Biffle's win on April 14? | CREATE TABLE table_name_46 (sponsor VARCHAR, winning_driver VARCHAR, date VARCHAR) |
SELECT method FROM table_name_98 WHERE event = "ufc 44" | The UFC 44 event has what method? | CREATE TABLE table_name_98 (method VARCHAR, event VARCHAR) |
SELECT 1 AS st_leg FROM table_name_5 WHERE team_2 = "athletic" | WHAT IS THE 1ST LEG WITH TEAM 2 AS ATHLETIC? | CREATE TABLE table_name_5 (team_2 VARCHAR) |
SELECT score FROM table_name_12 WHERE player = "andy north" | What is Score, when Player is "Andy North"? | CREATE TABLE table_name_12 (score VARCHAR, player VARCHAR) |
SELECT COUNT(episode) FROM table_24689168_5 WHERE viewers__millions_ = "11.47" | How many episodes had 11.47 million viewers? | CREATE TABLE table_24689168_5 (episode VARCHAR, viewers__millions_ VARCHAR) |
SELECT MAX(pick) FROM table_name_44 WHERE college = "virginia" | Who was the highest drafted player that attended college at Virginia? | CREATE TABLE table_name_44 (pick INTEGER, college VARCHAR) |
SELECT player FROM table_name_34 WHERE college = "northwestern" | What player belongs to Northwestern College? | CREATE TABLE table_name_34 (player VARCHAR, college VARCHAR) |
SELECT MAX(goals) FROM table_name_12 WHERE current_club = "real madrid" AND ratio < 1.08 AND rank < 5 | Which Goals have a Current Club of real madrid, and a Ratio smaller than 1.08, and a Rank smaller than 5? | CREATE TABLE table_name_12 (goals INTEGER, rank VARCHAR, current_club VARCHAR, ratio VARCHAR) |
SELECT marriage FROM table_name_84 WHERE became_queen = "30 october 1816 husband's accession" | How is the marriage of who became queen on 30 October 1816 husband's accession? | CREATE TABLE table_name_84 (marriage VARCHAR, became_queen VARCHAR) |
SELECT no8 FROM table_name_72 WHERE no9 = "telmo" | Who this the no. 8 team that has a no. 9 player, Telmo? | CREATE TABLE table_name_72 (no8 VARCHAR, no9 VARCHAR) |
SELECT MAX(bronze) FROM table_name_94 WHERE total = 9 | what is the most bronze when the total is 9? | CREATE TABLE table_name_94 (bronze INTEGER, total VARCHAR) |
SELECT name FROM manufacturers EXCEPT SELECT T2.name FROM products AS T1 JOIN manufacturers AS T2 ON T1.Manufacturer = T2.code WHERE T1.name = 'DVD drive' | Find the name of companies that do not make DVD drive. | CREATE TABLE manufacturers (name VARCHAR, code VARCHAR); CREATE TABLE products (Manufacturer VARCHAR, name VARCHAR); CREATE TABLE manufacturers (name VARCHAR) |
SELECT level FROM table_name_26 WHERE leading_scorer_1 = "tom greaves 8" | Which Level has a Leading scorer 1 of tom greaves 8? | CREATE TABLE table_name_26 (level VARCHAR, leading_scorer_1 VARCHAR) |
SELECT country FROM table_name_7 WHERE iata = "gva" | what is the country when the iata is gva? | CREATE TABLE table_name_7 (country VARCHAR, iata VARCHAR) |
SELECT COUNT(*) FROM Video_games WHERE gtype = "Massively multiplayer online game" | How many video games have type Massively multiplayer online game? | CREATE TABLE Video_games (gtype VARCHAR) |
SELECT COUNT(years_for_jazz) FROM table_11545282_6 WHERE school_club_team = "UTEP" | For how many players from UTEP can one calculate how many years they've played for Jazz? | CREATE TABLE table_11545282_6 (years_for_jazz VARCHAR, school_club_team VARCHAR) |
SELECT MIN(points) FROM table_name_90 WHERE year > 1963 | What is the lowest points of British Racing after 1963? | CREATE TABLE table_name_90 (points INTEGER, year INTEGER) |
SELECT cargo FROM table_name_40 WHERE ship_size = "aframax" | What cargo was contained in a ship size of aframax? | CREATE TABLE table_name_40 (cargo VARCHAR, ship_size VARCHAR) |
SELECT MIN(pick__number) FROM table_name_15 WHERE name = "john ayres" | What is the lowest pick # of John Ayres? | CREATE TABLE table_name_15 (pick__number INTEGER, name VARCHAR) |
SELECT tv_network_s_ FROM table_29799700_2 WHERE country = "Iran" | Which TV network has a country of origin of Iran? | CREATE TABLE table_29799700_2 (tv_network_s_ VARCHAR, country VARCHAR) |
SELECT event FROM table_name_11 WHERE winning_skip = "patti lank" | What event did Patti Lank have the winning skip? | CREATE TABLE table_name_11 (event VARCHAR, winning_skip VARCHAR) |
SELECT race FROM table_name_24 WHERE track = "pocono" AND date = "08-02-2008" | What race happened at pocono on 08-02-2008? | CREATE TABLE table_name_24 (race VARCHAR, track VARCHAR, date VARCHAR) |
SELECT high_points FROM table_name_25 WHERE game > 2 AND date = "april 29" | On April 29, with a game larger than 2, what is the high points? | CREATE TABLE table_name_25 (high_points VARCHAR, game VARCHAR, date VARCHAR) |
SELECT played FROM table_2208838_4 WHERE points = 927 | How many games were played by the player with 927 points? | CREATE TABLE table_2208838_4 (played VARCHAR, points VARCHAR) |
SELECT finish FROM table_name_33 WHERE to_par > 6 AND year_s__won < 1961 | What is Finish, when To Par is greater than 6, and when Year(s) Won is before 1961? | CREATE TABLE table_name_33 (finish VARCHAR, to_par VARCHAR, year_s__won VARCHAR) |
SELECT SUM(year) FROM table_name_97 WHERE player = "david rose" | What year was the player David Rose? | CREATE TABLE table_name_97 (year INTEGER, player VARCHAR) |
SELECT margin_of_victory FROM table_name_29 WHERE country = "south africa" | What is south africa's margin of victory? | CREATE TABLE table_name_29 (margin_of_victory VARCHAR, country VARCHAR) |
SELECT decision FROM table_27537518_9 WHERE record = "27-28-11" | Who made the decision on the game where the record was 27-28-11? | CREATE TABLE table_27537518_9 (decision VARCHAR, record VARCHAR) |
SELECT T2.Hardware_Model_name FROM chip_model AS T1 JOIN phone AS T2 ON T1.Model_name = T2.chip_model JOIN screen_mode AS T3 ON T2.screen_mode = T3.Graphics_mode WHERE T3.Type = "Text" OR T1.RAM_MiB > 32 | List the hardware model name for the phones that have screen mode type "Text" or RAM size greater than 32. | CREATE TABLE chip_model (Model_name VARCHAR, RAM_MiB VARCHAR); CREATE TABLE phone (Hardware_Model_name VARCHAR, chip_model VARCHAR, screen_mode VARCHAR); CREATE TABLE screen_mode (Graphics_mode VARCHAR, Type VARCHAR) |
SELECT record FROM table_name_59 WHERE game_site = "memorial stadium" AND date = "september 19, 1965" | What was the record at Memorial Stadium on September 19, 1965? | CREATE TABLE table_name_59 (record VARCHAR, game_site VARCHAR, date VARCHAR) |
SELECT purpose FROM table_name_37 WHERE elevation_ + _height = "0 + metres (ft)" AND location = "bikini, namu (charlie)" AND yield = "220 kt" | Which Purpose has an Elevation + Height of 0 + metres (ft), a Location of bikini, namu (charlie), and a Yield of 220 kt? | CREATE TABLE table_name_37 (purpose VARCHAR, yield VARCHAR, location VARCHAR, elevation_ VARCHAR, _height VARCHAR) |
SELECT elimination AS Move FROM table_name_35 WHERE eliminated_by = "batista" AND wrestler = "henry" | What Elimination Move is listed against Wrestler Henry, Eliminated by Batista? | CREATE TABLE table_name_35 (elimination VARCHAR, eliminated_by VARCHAR, wrestler VARCHAR) |
SELECT home_team FROM table_name_84 WHERE away_team = "hawthorn" | When the Away team was hawthorn, what's the Home team? | CREATE TABLE table_name_84 (home_team VARCHAR, away_team VARCHAR) |
SELECT record FROM table_name_78 WHERE date = "september 21" | What was the Record on September 21? | CREATE TABLE table_name_78 (record VARCHAR, date VARCHAR) |
SELECT COUNT(written_by) FROM table_20704243_3 WHERE directed_by = "Peter Winther" | How many were written by Peter Winther? | CREATE TABLE table_20704243_3 (written_by VARCHAR, directed_by VARCHAR) |
SELECT state FROM table_name_58 WHERE royal_house = "ying" | What is the state for the royal house of ying? | CREATE TABLE table_name_58 (state VARCHAR, royal_house VARCHAR) |
SELECT home_team FROM table_name_21 WHERE away_team = "lincoln city" | What is the home team that had an away team of lincoln city? | CREATE TABLE table_name_21 (home_team VARCHAR, away_team VARCHAR) |
SELECT COUNT(team__b_) FROM table_1594772_2 WHERE margin = "35 runs" AND winner = "India" | Name the number of team for 35 runs margin and india winner | CREATE TABLE table_1594772_2 (team__b_ VARCHAR, margin VARCHAR, winner VARCHAR) |
SELECT crowd FROM table_name_9 WHERE ground = "colonial stadium" AND home_team = "hawthorn" | How much is the crowd attending at colonial stadium where Hawthorn plays? | CREATE TABLE table_name_9 (crowd VARCHAR, ground VARCHAR, home_team VARCHAR) |
SELECT english FROM table_name_46 WHERE icelandic = "hlaupa" | What is the ENglish word for the Icelandic word hlaupa? | CREATE TABLE table_name_46 (english VARCHAR, icelandic VARCHAR) |
SELECT exposure_fusion FROM table_name_38 WHERE name = "panoramaplus x4" | What's the exposure fusion of Panoramaplus x4? | CREATE TABLE table_name_38 (exposure_fusion VARCHAR, name VARCHAR) |
SELECT school FROM table_name_28 WHERE mascot = "raiders" | Which School's Mascot is Raiders? | CREATE TABLE table_name_28 (school VARCHAR, mascot VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.