answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT COUNT(*) FROM products WHERE product_price > (SELECT AVG(product_price) FROM products) | How many products have a price higher than the average? | CREATE TABLE products (product_price INTEGER) |
SELECT result FROM table_name_56 WHERE date = "september 1, 1996" | What is the Result of the game on September 1, 1996? | CREATE TABLE table_name_56 (result VARCHAR, date VARCHAR) |
SELECT classroom, COUNT(*) FROM list WHERE grade = "4" GROUP BY classroom | Report the total number of students for each fourth-grade classroom. | CREATE TABLE list (classroom VARCHAR, grade VARCHAR) |
SELECT class_aA FROM table_name_52 WHERE class_a = "rule" AND school_year = "1995-96" | Name the class AA with class A of rule and school year of 1995-96 | CREATE TABLE table_name_52 (class_aA VARCHAR, class_a VARCHAR, school_year VARCHAR) |
SELECT years FROM table_name_45 WHERE soap_opera = "un posto al sole" AND actor = "riccardo polizzy carbonelli" | What are the years that have un posto al sole as the soap opera, with riccardo polizzy carbonelli as the actor? | CREATE TABLE table_name_45 (years VARCHAR, soap_opera VARCHAR, actor VARCHAR) |
SELECT ground FROM table_16388230_1 WHERE away_team = "Richmond" | The away team of Richmond played on what grounds? | CREATE TABLE table_16388230_1 (ground VARCHAR, away_team VARCHAR) |
SELECT total_deaths FROM table_name_78 WHERE israeli_and_or_foreigner_wounded = "0" AND other_deaths = "0" AND total_casualties = "1" | What is the total number of deaths of the attack with 0 Israelis or foreigners wounded, 0 other deaths, and a total casualty of 1? | CREATE TABLE table_name_78 (total_deaths VARCHAR, total_casualties VARCHAR, israeli_and_or_foreigner_wounded VARCHAR, other_deaths VARCHAR) |
SELECT name FROM people ORDER BY date_of_birth | List all people names in the order of their date of birth from old to young. | CREATE TABLE people (name VARCHAR, date_of_birth VARCHAR) |
SELECT name FROM table_name_61 WHERE route_of_administration = "oral or iv" AND investigation = "thyroid imaging thyroid metastases imaging" | What Name is administered by oral or iv, and is being investigated for thyroid imaging thyroid metastases imaging? | CREATE TABLE table_name_61 (name VARCHAR, route_of_administration VARCHAR, investigation VARCHAR) |
SELECT score FROM table_name_76 WHERE date = "february 16" | what is the score on february 16? | CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR) |
SELECT tournament FROM table_name_46 WHERE black = "kramnik" AND result = "½–½" AND moves = 40 | What is Tournament, when Black is "Kramnik", when Result is "½–½", and when Moves is "40"? | CREATE TABLE table_name_46 (tournament VARCHAR, moves VARCHAR, black VARCHAR, result VARCHAR) |
SELECT surface FROM table_name_45 WHERE opponent = "chris evert-lloyd" | Which Surface had an Opponent of chris evert-lloyd? | CREATE TABLE table_name_45 (surface VARCHAR, opponent VARCHAR) |
SELECT MAX(height__m_) FROM table_name_98 WHERE prominence__m_ = 3 OFFSET 118 | What is the largest height when the prominence is 3,118? | CREATE TABLE table_name_98 (height__m_ INTEGER, prominence__m_ VARCHAR) |
SELECT SUM(year) FROM table_name_68 WHERE entrant = "scuderia ferrari" AND chassis = "ferrari 312/66" | What was the sum of the years, when the entrant was Scuderia Ferrari, and when the Chassis was Ferrari 312/66? | CREATE TABLE table_name_68 (year INTEGER, entrant VARCHAR, chassis VARCHAR) |
SELECT fastest_lap FROM table_22379931_2 WHERE pole_position = "Benoît Tréluyer" | Who has the fastest lap where Benoît Tréluyer got the pole position? | CREATE TABLE table_22379931_2 (fastest_lap VARCHAR, pole_position VARCHAR) |
SELECT location FROM table_name_71 WHERE floors < 27 AND building = "150 elgin" | Which Location has Floors smaller than 27, and a Building of 150 elgin? | CREATE TABLE table_name_71 (location VARCHAR, floors VARCHAR, building VARCHAR) |
SELECT MAX(pennant_number) FROM table_name_61 WHERE ships_in_class = "pori" | What is the highest pennant number with ships in pori class? | CREATE TABLE table_name_61 (pennant_number INTEGER, ships_in_class VARCHAR) |
SELECT location FROM table_name_8 WHERE home_team = "mexico" AND date = "11 april 2013" | What is the location of 11 April 2013 and Mexico Home team? | CREATE TABLE table_name_8 (location VARCHAR, home_team VARCHAR, date VARCHAR) |
SELECT college FROM table_14655985_1 WHERE position = "Placekicker" | what's the college with position being placekicker | CREATE TABLE table_14655985_1 (college VARCHAR, position VARCHAR) |
SELECT county FROM table_name_81 WHERE mascot = "bruins" | Which county has the mascot of Bruins? | CREATE TABLE table_name_81 (county VARCHAR, mascot VARCHAR) |
SELECT MIN(drawn) FROM table_name_52 WHERE points < 4 AND lost > 4 | What is the smallest number of drawn games when there are fewer than 4 points and more than 4 lost games? | CREATE TABLE table_name_52 (drawn INTEGER, points VARCHAR, lost VARCHAR) |
SELECT MAX(average) FROM table_name_19 WHERE rank > 4 AND celebrity = "natalia lesz" | What is the highest average of celebrity Natalia Lesz, who is ranked greater than 4? | CREATE TABLE table_name_19 (average INTEGER, rank VARCHAR, celebrity VARCHAR) |
SELECT round FROM table_name_37 WHERE opponent = "kim eun-ha" | Which Round has kim eun-ha as an Opponent? | CREATE TABLE table_name_37 (round VARCHAR, opponent VARCHAR) |
SELECT score FROM table_name_7 WHERE team_1 = "stade lavallois (d1)" | What was the score for Team 1 of Stade Lavallois (d1)? | CREATE TABLE table_name_7 (score VARCHAR, team_1 VARCHAR) |
SELECT MIN(league_cup) FROM table_name_9 WHERE championship = 4 | What is the lowest number of league cups with 4 championships? | CREATE TABLE table_name_9 (league_cup INTEGER, championship VARCHAR) |
SELECT position FROM table_name_47 WHERE team_defense_rank > 3 AND year < 1992 AND team_performance = "lost super bowl xxv" | What was the position of the player whose team lost super bowl xxv before 1992, with a team defense rank larger than 3? | CREATE TABLE table_name_47 (position VARCHAR, team_performance VARCHAR, team_defense_rank VARCHAR, year VARCHAR) |
SELECT school FROM table_name_53 WHERE previous_conference = "lost river" AND enrollment = "a" | Which school has an enrollment of A and had lost river as their previous conference? | CREATE TABLE table_name_53 (school VARCHAR, previous_conference VARCHAR, enrollment VARCHAR) |
SELECT tournament FROM table_name_74 WHERE 2012 = "a" AND 2011 = "a" | What's the tournament name when they had an A in 2011 & 2012? | CREATE TABLE table_name_74 (tournament VARCHAR) |
SELECT AVG(debut_year) FROM table_name_76 WHERE goals = 0 AND years_at_club = "1963" AND games > 5 | Which Debut year has Goals of 0, and Years at club of 1963, and Games larger than 5? | CREATE TABLE table_name_76 (debut_year INTEGER, games VARCHAR, goals VARCHAR, years_at_club VARCHAR) |
SELECT rank FROM table_name_52 WHERE name = "point hyllie" | What is the rank of Point Hyllie? | CREATE TABLE table_name_52 (rank VARCHAR, name VARCHAR) |
SELECT sensor FROM table_name_53 WHERE sensor_resolution = "355x288" AND camera = "naturalpoint trackir 3" | What was the sensor with a resolution of 355x288 for a Naturalpoint Trackir 3? | CREATE TABLE table_name_53 (sensor VARCHAR, sensor_resolution VARCHAR, camera VARCHAR) |
SELECT congress FROM table_name_92 WHERE _number_of_cosponsors < 23 AND date_introduced = "june 30, 2005" | What Congress had less than 23 cosponsors and had June 30, 2005 as the date of introduction of the bill? | CREATE TABLE table_name_92 (congress VARCHAR, _number_of_cosponsors VARCHAR, date_introduced VARCHAR) |
SELECT channel FROM table_name_82 WHERE description = "public broadcaster" | What channel has a description of the public broadcaster? | CREATE TABLE table_name_82 (channel VARCHAR, description VARCHAR) |
SELECT AVG(elevation__ft_) FROM table_name_77 WHERE range = "unaka mountains" AND peak_name = "roan high bluff" AND isolation > 1.54 | WHAT IS THE ELEVATION OF THE UNAKA MOUNTAINS, IN ROAN HIGH BLUFF PEAK, AND ISOLATION LARGER THAN 1.54? | CREATE TABLE table_name_77 (elevation__ft_ INTEGER, isolation VARCHAR, range VARCHAR, peak_name VARCHAR) |
SELECT competition FROM table_name_19 WHERE result = "win" AND score = "3-1" | What is the competition that had a win result and a score of 3-1? | CREATE TABLE table_name_19 (competition VARCHAR, result VARCHAR, score VARCHAR) |
SELECT 1997 FROM table_name_61 WHERE 2002 = "a" AND 2003 = "1r" | What was the 1997 value when 2002 was A and 2003 was 1R? | CREATE TABLE table_name_61 (Id VARCHAR) |
SELECT premiere FROM table_name_95 WHERE finale < 41 AND peak < 40 AND average > 31 AND chinese_title = "學警雄心" | What premiere has a finale of less than 41, peak less than 40, average above 31, and a Chinese title of 學警雄心? | CREATE TABLE table_name_95 (premiere VARCHAR, chinese_title VARCHAR, average VARCHAR, finale VARCHAR, peak VARCHAR) |
SELECT date FROM table_name_43 WHERE pole_position = "jack brabham" AND circuit = "spa-francorchamps" | What is the date of the race when Jack Brabham is in the pole position and the circuit is Spa-Francorchamps? | CREATE TABLE table_name_43 (date VARCHAR, pole_position VARCHAR, circuit VARCHAR) |
SELECT independent_regional_force FROM table_2651755_1 WHERE democratic_coalition = "(R) Jorge Tarud ( PPD )" | Who is the independent regional force when democratic coalition is (r) jorge tarud ( ppd )? | CREATE TABLE table_2651755_1 (independent_regional_force VARCHAR, democratic_coalition VARCHAR) |
SELECT date FROM table_name_3 WHERE runner_s__up = "bernhard langer" AND tournament = "at&t championship" | Which Date has a Runner(s)-up of bernhard langer, and a Tournament of at&t championship? | CREATE TABLE table_name_3 (date VARCHAR, runner_s__up VARCHAR, tournament VARCHAR) |
SELECT date FROM table_name_82 WHERE catalogue = "540 3622" | What date has a catalogue of 540 3622? | CREATE TABLE table_name_82 (date VARCHAR, catalogue VARCHAR) |
SELECT competition FROM table_name_54 WHERE year > 1982 AND opponent = "parramatta eels" | What competition did Parramatta Eels join after 1982? | CREATE TABLE table_name_54 (competition VARCHAR, year VARCHAR, opponent VARCHAR) |
SELECT region FROM table_name_36 WHERE city = "austin" | In what region is the city of Austin? | CREATE TABLE table_name_36 (region VARCHAR, city VARCHAR) |
SELECT COUNT(platforms) FROM table_name_41 WHERE stations = "waddon railway station" | Name the total number of platforms that waddon railway station has | CREATE TABLE table_name_41 (platforms VARCHAR, stations VARCHAR) |
SELECT T1.title, T2.inventory_id FROM film AS T1 JOIN inventory AS T2 ON T1.film_id = T2.film_id JOIN rental AS T3 ON T2.inventory_id = T3.inventory_id GROUP BY T2.inventory_id ORDER BY COUNT(*) DESC LIMIT 1 | What is the film title and inventory id of the item in the inventory which was rented most frequently? | CREATE TABLE film (title VARCHAR, film_id VARCHAR); CREATE TABLE inventory (inventory_id VARCHAR, film_id VARCHAR); CREATE TABLE rental (inventory_id VARCHAR) |
SELECT school FROM table_name_91 WHERE pick < 125 AND player = "will allen" | What school did draft pick before 125, will allen go to? | CREATE TABLE table_name_91 (school VARCHAR, pick VARCHAR, player VARCHAR) |
SELECT COUNT(gross_tonnage) FROM table_name_51 WHERE entered_service = "1903" | I want the total number of gross tonnage when entered service was 1903 | CREATE TABLE table_name_51 (gross_tonnage VARCHAR, entered_service VARCHAR) |
SELECT status FROM table_1634376_1 WHERE _number = "K-223" | What is the status of vessel number K-223? | CREATE TABLE table_1634376_1 (status VARCHAR, _number VARCHAR) |
SELECT COUNT(population__2011_) FROM table_2562572_12 WHERE settlement = "Mladenovo" | How many populations are listed for mladenovo? | CREATE TABLE table_2562572_12 (population__2011_ VARCHAR, settlement VARCHAR) |
SELECT no_4 FROM table_name_29 WHERE no_7 = "aiden" AND no_3 = "james" | What name was in the number 4 spot when Aiden was number 7 and James was number 3? | CREATE TABLE table_name_29 (no_4 VARCHAR, no_7 VARCHAR, no_3 VARCHAR) |
SELECT 2010 FROM table_name_36 WHERE 2001 = "grand slam tournaments" | Which 2010 Tournament has a 2001 of grand slam tournaments? | CREATE TABLE table_name_36 (Id VARCHAR) |
SELECT AVG(a_score) FROM table_name_50 WHERE b_score = 9.05 AND position > 6 | What was the A Score when the B Score was 9.05, and position was larger than 6? | CREATE TABLE table_name_50 (a_score INTEGER, b_score VARCHAR, position VARCHAR) |
SELECT new_entries_this_round FROM table_19089486_1 WHERE round = "Third round" | Name the new entries this round for third round | CREATE TABLE table_19089486_1 (new_entries_this_round VARCHAR, round VARCHAR) |
SELECT MAX(goals¹) FROM table_24565004_19 WHERE period = "1972 – 1975, 1976 – 1982" | Name the most goals for 1972 – 1975, 1976 – 1982 | CREATE TABLE table_24565004_19 (goals¹ INTEGER, period VARCHAR) |
SELECT MAX(capacity) FROM table_name_30 WHERE club = "f.c. igea virtus barcellona" | What was the largest capacity when the club was F.C. Igea Virtus Barcellona? | CREATE TABLE table_name_30 (capacity INTEGER, club VARCHAR) |
SELECT diameter__km_ FROM table_16799784_7 WHERE latitude = "40.5S" | what is the diameter (km) of feature of latitude 40.5s | CREATE TABLE table_16799784_7 (diameter__km_ VARCHAR, latitude VARCHAR) |
SELECT position FROM table_name_29 WHERE nfl_club = "pittsburgh steelers" | What is the position of the pittsburgh steelers? | CREATE TABLE table_name_29 (position VARCHAR, nfl_club VARCHAR) |
SELECT district FROM table_name_21 WHERE first_elected > 1858 | Which District has a First elected larger than 1858? | CREATE TABLE table_name_21 (district VARCHAR, first_elected INTEGER) |
SELECT COUNT(bronze) FROM table_name_31 WHERE total = 1 AND nation = "spain (esp)" AND gold > 0 | How many bronzes have 1 as the total, with spain (esp) as the nation, and a gold greater than 0? | CREATE TABLE table_name_31 (bronze VARCHAR, gold VARCHAR, total VARCHAR, nation VARCHAR) |
SELECT date FROM table_name_73 WHERE visitor = "toronto" AND points < 49 AND record = "18-17-7" | What date does visitor team Toronto score less than 49 points and has record of 18-17-7? | CREATE TABLE table_name_73 (date VARCHAR, record VARCHAR, visitor VARCHAR, points VARCHAR) |
SELECT opponent FROM table_name_94 WHERE score = "6–4, 6–2" AND surface = "clay" | Who is the opponent when the score was 6–4, 6–2 and the surface was clay? | CREATE TABLE table_name_94 (opponent VARCHAR, score VARCHAR, surface VARCHAR) |
SELECT place FROM table_name_83 WHERE money___$__ = 150 AND player = "bobby cruickshank" | Which Place that has Money of 150, and a Player of bobby cruickshank? | CREATE TABLE table_name_83 (place VARCHAR, money___$__ VARCHAR, player VARCHAR) |
SELECT teams FROM table_name_84 WHERE league = "regionalliga süd" | Which team had a league of regionalliga süd? | CREATE TABLE table_name_84 (teams VARCHAR, league VARCHAR) |
SELECT intercepted_by_patriot FROM table_23014685_1 WHERE area_damaged = "Parking lot" | Was the missile intercepted by patriot when the parking lot was damaged? | CREATE TABLE table_23014685_1 (intercepted_by_patriot VARCHAR, area_damaged VARCHAR) |
SELECT film_title_used_in_nomination FROM table_name_40 WHERE language = "norwegian" | Name the film title that was norwegian | CREATE TABLE table_name_40 (film_title_used_in_nomination VARCHAR, language VARCHAR) |
SELECT team FROM table_name_71 WHERE fans_took = "288" | Which team had fans took of 288? | CREATE TABLE table_name_71 (team VARCHAR, fans_took VARCHAR) |
SELECT directedby FROM table_20726262_5 WHERE production_code = "4WAB05" | Who directed the episode with a production code of 4WAB05? | CREATE TABLE table_20726262_5 (directedby VARCHAR, production_code VARCHAR) |
SELECT indiana FROM table_18461045_1 WHERE michigan = "Midland Northeast LL Midland" | What was the little league team from Indiana when the little league team from Michigan was Midland Northeast LL Midland? | CREATE TABLE table_18461045_1 (indiana VARCHAR, michigan VARCHAR) |
SELECT mintage FROM table_name_15 WHERE theme = "santa claus" | What was the mintage when the theme was Santa Claus? | CREATE TABLE table_name_15 (mintage VARCHAR, theme VARCHAR) |
SELECT airport FROM table_name_34 WHERE country = "russia" AND iata = "aer" | What is the name of the airport located in Russia with an IATA of AER? | CREATE TABLE table_name_34 (airport VARCHAR, country VARCHAR, iata VARCHAR) |
SELECT venue FROM table_name_28 WHERE away_team = "carlton" | What was the venue when Carlton was the away team? | CREATE TABLE table_name_28 (venue VARCHAR, away_team VARCHAR) |
SELECT T2.roomName FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId WHERE firstname LIKE '%ROY%' | Find the name of rooms booked by some customers whose first name contains ROY. | CREATE TABLE Reservations (Room VARCHAR); CREATE TABLE Rooms (roomName VARCHAR, RoomId VARCHAR) |
SELECT nfl_team FROM table_2508633_6 WHERE player = "Eric Williams" | Name the nfl team for eric williams | CREATE TABLE table_2508633_6 (nfl_team VARCHAR, player VARCHAR) |
SELECT position FROM table_name_96 WHERE spread > -319 AND country = "united states" AND win_loss = "11-13" AND name = "gabriel, marty" | What position has a spread greater than -319, and United States as the country, a win loss of 11-13, and gabriel, marty as the name? | CREATE TABLE table_name_96 (position VARCHAR, name VARCHAR, win_loss VARCHAR, spread VARCHAR, country VARCHAR) |
SELECT authors FROM table_name_13 WHERE novelty = "gen et sp nov" AND name = "lanthanocephalus" | What is Authors, when Novelty is Gen Et Sp Nov, and when Name is Lanthanocephalus? | CREATE TABLE table_name_13 (authors VARCHAR, novelty VARCHAR, name VARCHAR) |
SELECT MAX(isolation__km_) FROM table_name_61 WHERE elevation__m_ < 1320 AND municipality = "hinnøya" | What is the highest Isolation (km) when the elevation was smaller than 1320, and a Municipality of hinnøya? | CREATE TABLE table_name_61 (isolation__km_ INTEGER, elevation__m_ VARCHAR, municipality VARCHAR) |
SELECT MIN(no_in_series) FROM table_name_60 WHERE no_in_season = 11 | What episode number is the first episode of season 11 in Melrose Place? | CREATE TABLE table_name_60 (no_in_series INTEGER, no_in_season VARCHAR) |
SELECT AVG(number_of_languages) FROM table_name_23 WHERE frequency = "monthly" AND publisher = "hearst corporation" | What is the mean number of languages for the monthly frequency when the publisher is the hearst corporation? | CREATE TABLE table_name_23 (number_of_languages INTEGER, frequency VARCHAR, publisher VARCHAR) |
SELECT AVG(rank) FROM table_name_88 WHERE points < "166".96 AND places = "166" | What is the rank for points less than 166.96, and a Places of 166? | CREATE TABLE table_name_88 (rank INTEGER, points VARCHAR, places VARCHAR) |
SELECT series_finale FROM table_name_56 WHERE translation = "ოჰ ეს ცრემლები / პარალელური საიდუმლო" | What series finale has the translation ოჰ ეს ცრემლები / პარალელური საიდუმლო? | CREATE TABLE table_name_56 (series_finale VARCHAR, translation VARCHAR) |
SELECT date FROM table_name_91 WHERE score = "7–0" | On what date was the game that had a score of 7–0? | CREATE TABLE table_name_91 (date VARCHAR, score VARCHAR) |
SELECT republican_ticket FROM table_name_17 WHERE socialist_ticket = "louis waldman" | What is the name on the Republican ticket when the Socialist ticket was louis waldman? | CREATE TABLE table_name_17 (republican_ticket VARCHAR, socialist_ticket VARCHAR) |
SELECT T2.department_name, T1.department_id FROM Degree_Programs AS T1 JOIN Departments AS T2 ON T1.department_id = T2.department_id GROUP BY T1.department_id ORDER BY COUNT(*) DESC LIMIT 1 | Which department offers the most number of degrees? List department name and id. | CREATE TABLE Degree_Programs (department_id VARCHAR); CREATE TABLE Departments (department_name VARCHAR, department_id VARCHAR) |
SELECT record FROM table_name_40 WHERE date = "march 27" | What was the record on March 27? | CREATE TABLE table_name_40 (record VARCHAR, date VARCHAR) |
SELECT result FROM table_name_79 WHERE year = 1995 | What was the result in 1995? | CREATE TABLE table_name_79 (result VARCHAR, year VARCHAR) |
SELECT high_rebounds FROM table_13480122_5 WHERE high_assists = "Scottie Pippen (9)" | who is the the high rebounds with high assbeingts being scottie pippen (9) | CREATE TABLE table_13480122_5 (high_rebounds VARCHAR, high_assists VARCHAR) |
SELECT year_s__won FROM table_name_25 WHERE finish = "68" | Which year was won with a finish of 68 | CREATE TABLE table_name_25 (year_s__won VARCHAR, finish VARCHAR) |
SELECT score FROM table_name_50 WHERE date = "september 21" | WHAT SCORE WAS ON SEPTEMBER 21? | CREATE TABLE table_name_50 (score VARCHAR, date VARCHAR) |
SELECT final__bronze_medal_match FROM table_18602462_21 WHERE quarterfinals = "Houdet ( FRA ) W 6-2, 6-1" | When houdet ( fra ) w 6-2, 6-1 is the quarterfinals what is the final/bronze medal match? | CREATE TABLE table_18602462_21 (final__bronze_medal_match VARCHAR, quarterfinals VARCHAR) |
SELECT COUNT(earpads) FROM table_1601027_1 WHERE headphone_class = "Prestige" AND us_msrp = "$79" | How many values for earpads correspond to the headphone class Prestige and a US MSRP of $79? | CREATE TABLE table_1601027_1 (earpads VARCHAR, headphone_class VARCHAR, us_msrp VARCHAR) |
SELECT tyre FROM table_name_99 WHERE chassis = "56" | What is the tyre with a 56 chassis? | CREATE TABLE table_name_99 (tyre VARCHAR, chassis VARCHAR) |
SELECT area__acres__ FROM table_30120556_1 WHERE civil_parish = "Kilworth" AND townland = "Monadrishane" | What is the area of the civil parish kilworth and townland monadrishane? | CREATE TABLE table_30120556_1 (area__acres__ VARCHAR, civil_parish VARCHAR, townland VARCHAR) |
SELECT athletes FROM table_name_86 WHERE run_2 = "1:24.77" | What is Athletes, when Run 2 is 1:24.77? | CREATE TABLE table_name_86 (athletes VARCHAR, run_2 VARCHAR) |
SELECT config_core_1 FROM table_26860595_2 WHERE processing_power_gflops = "432" | What is the config core 1 of the model with a processing power GFLOPs of 432? | CREATE TABLE table_26860595_2 (config_core_1 VARCHAR, processing_power_gflops VARCHAR) |
SELECT date FROM table_name_72 WHERE visiting_team = "denver broncos" | Name the date for visiting team of denver broncos | CREATE TABLE table_name_72 (date VARCHAR, visiting_team VARCHAR) |
SELECT tonnage_grt FROM table_name_40 WHERE ship = "author" | what is the tonnage grt of the ship author? | CREATE TABLE table_name_40 (tonnage_grt VARCHAR, ship VARCHAR) |
SELECT score FROM table_name_47 WHERE date = "august 17, 2005" | What score was given at the August 17, 2005 match? | CREATE TABLE table_name_47 (score VARCHAR, date VARCHAR) |
SELECT location FROM table_27409644_1 WHERE club = "Lootos Põlva" | Where is lootos põlva from? | CREATE TABLE table_27409644_1 (location VARCHAR, club VARCHAR) |
SELECT first_publisher FROM table_name_31 WHERE year < 1999 | What is the First Publisher prior to 1999? | CREATE TABLE table_name_31 (first_publisher VARCHAR, year INTEGER) |
SELECT no FROM table_12962773_2 WHERE current_club = "Ironi Nahariya" | What are the numbers of the players currently playing for Ironi Nahariya? | CREATE TABLE table_12962773_2 (no VARCHAR, current_club VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.