output stringlengths 18 557 | instruction stringlengths 22 540 |
|---|---|
SELECT AVG(civil_liberties_2012) FROM table_name_42 WHERE status_2011 = "not free" AND political_rights_2012 > 6 AND political_rights_2011 > 7 | CREATE TABLE table_name_42 (civil_liberties_2012 INTEGER, political_rights_2011 VARCHAR, status_2011 VARCHAR, political_rights_2012 VARCHAR), What is the average 2012 civil liberties value associated with a 2011 status of not free, political rights 2012 over 6, and political rights 2011 over 7? |
SELECT COUNT(civil_liberties_2011) FROM table_name_70 WHERE political_rights_2010 < 3 AND political_rights_2011 < 1 | CREATE TABLE table_name_70 (civil_liberties_2011 VARCHAR, political_rights_2010 VARCHAR, political_rights_2011 VARCHAR), What is the total number of civil liberties 2011 values having 2010 political rights values under 3 and 2011 political rights values under 1? |
SELECT oppose FROM table_name_47 WHERE unsure = "8%" AND poll_source = "wnbc/marist poll" | CREATE TABLE table_name_47 (oppose VARCHAR, unsure VARCHAR, poll_source VARCHAR), What percentage of people were opposed to the candidate based on the WNBC/Marist poll that showed 8% of people were unsure? |
SELECT oppose FROM table_name_22 WHERE poll_source = "time poll" AND unsure = "6%" | CREATE TABLE table_name_22 (oppose VARCHAR, poll_source VARCHAR, unsure VARCHAR), What percentage of people were opposed to the candidate based on the Time Poll poll that showed 6% of people were unsure? |
SELECT consider FROM table_name_21 WHERE poll_source = "newsweek poll" AND oppose = "32%" AND candidate = "rudy giuliani" | CREATE TABLE table_name_21 (consider VARCHAR, candidate VARCHAR, poll_source VARCHAR, oppose VARCHAR), What percentage of people said they would consider Rudy Giuliani as a candidate according to the Newsweek poll that showed 32% opposed him? |
SELECT result FROM table_name_12 WHERE venue = "stuttgart, west germany" AND goal < 9 | CREATE TABLE table_name_12 (result VARCHAR, venue VARCHAR, goal VARCHAR), What was the result of the game in Stuttgart, West Germany and a goal number of less than 9? |
SELECT record FROM table_name_10 WHERE opponent = "twins" AND date = "july 25" | CREATE TABLE table_name_10 (record VARCHAR, opponent VARCHAR, date VARCHAR), Which Record has an Opponent of twins, and a Date of july 25? |
SELECT per_capita_income FROM table_name_43 WHERE median_household_income = "$42,845" | CREATE TABLE table_name_43 (per_capita_income VARCHAR, median_household_income VARCHAR), How much is per capita income when median household income is $42,845? |
SELECT SUM(points) FROM table_name_91 WHERE score = "4–1" AND game < 39 | CREATE TABLE table_name_91 (points INTEGER, score VARCHAR, game VARCHAR), Which Points have a Score of 4–1, and a Game smaller than 39? |
SELECT SUM(january) FROM table_name_69 WHERE score = "7–4" AND game < 42 | CREATE TABLE table_name_69 (january INTEGER, score VARCHAR, game VARCHAR), Which January has a Score of 7–4, and a Game smaller than 42? |
SELECT COUNT(game) FROM table_name_9 WHERE score = "1–0" AND points < 66 | CREATE TABLE table_name_9 (game VARCHAR, score VARCHAR, points VARCHAR), How many games have a Score of 1–0, and Points smaller than 66? |
SELECT MIN(points) FROM table_name_26 WHERE score = "1–4" AND january < 18 | CREATE TABLE table_name_26 (points INTEGER, score VARCHAR, january VARCHAR), Which Points is the lowest one that has a Score of 1–4, and a January smaller than 18? |
SELECT borough_or_census_area FROM table_name_68 WHERE median_household_income = "$59,596" | CREATE TABLE table_name_68 (borough_or_census_area VARCHAR, median_household_income VARCHAR), Which borough or census area has a $59,596 median household income? |
SELECT COUNT(population) FROM table_name_59 WHERE median_family_income = "$71,278" | CREATE TABLE table_name_59 (population VARCHAR, median_family_income VARCHAR), What is the population of the area with a median family income of $71,278? |
SELECT outcome FROM table_name_21 WHERE venue = "danish open" AND year = "1985" | CREATE TABLE table_name_21 (outcome VARCHAR, venue VARCHAR, year VARCHAR), What was the Outcome of the Danish Open in 1985? |
SELECT venue FROM table_name_71 WHERE year = "1986" AND outcome = "1" | CREATE TABLE table_name_71 (venue VARCHAR, year VARCHAR, outcome VARCHAR), What was the Venue in 1986 with an Outcome of 1? |
SELECT outcome FROM table_name_11 WHERE event = "wd" AND year = "1983" | CREATE TABLE table_name_11 (outcome VARCHAR, event VARCHAR, year VARCHAR), What was the Outcome in 1983 of the WD Event? |
SELECT year FROM table_name_8 WHERE partner = "yoo sang-hee" AND venue = "german open" | CREATE TABLE table_name_8 (year VARCHAR, partner VARCHAR, venue VARCHAR), In what Year did the German Open have Yoo Sang-Hee as Partner? |
SELECT outcome FROM table_name_81 WHERE partner = "yoo sang-hee" AND venue = "malaysia open" | CREATE TABLE table_name_81 (outcome VARCHAR, partner VARCHAR, venue VARCHAR), What is the Outcome in the Malaysia Open with Partner Yoo Sang-Hee? |
SELECT partner FROM table_name_23 WHERE year = "asian games" | CREATE TABLE table_name_23 (partner VARCHAR, year VARCHAR), What is the Partner during the Asian Games Year? |
SELECT loss FROM table_name_91 WHERE date = "august 19" | CREATE TABLE table_name_91 (loss VARCHAR, date VARCHAR), What was the loss for August 19? |
SELECT municipality FROM table_name_94 WHERE rank = 44 | CREATE TABLE table_name_94 (municipality VARCHAR, rank VARCHAR), What Municipality has a Rank of 44? |
SELECT SUM(rank) FROM table_name_85 WHERE municipality = "winnipeg" AND area__km_2__ > 464.01 | CREATE TABLE table_name_85 (rank INTEGER, municipality VARCHAR, area__km_2__ VARCHAR), What is the total Rank that has a Municipality of Winnipeg, an Area (KM 2) that's larger than 464.01? |
SELECT MAX(area__km_2__) FROM table_name_96 WHERE province = "ontario" AND status = "town" AND municipality = "minto" AND rank < 84 | CREATE TABLE table_name_96 (area__km_2__ INTEGER, rank VARCHAR, municipality VARCHAR, province VARCHAR, status VARCHAR), What is the highest Area (KM 2) for the Province of Ontario, that has the Status of Town, a Municipality of Minto, and a Rank that's smaller than 84? |
SELECT SUM(rank) FROM table_name_6 WHERE area__km_2__ = 1050.14 | CREATE TABLE table_name_6 (rank INTEGER, area__km_2__ VARCHAR), What's the total of Rank that has an Area (KM 2) of 1050.14? |
SELECT status FROM table_name_19 WHERE province = "ontario" AND rank = 86 | CREATE TABLE table_name_19 (status VARCHAR, province VARCHAR, rank VARCHAR), What is the listed Status that has the Province of Ontario and Rank of 86? |
SELECT event FROM table_name_31 WHERE reign = "2" AND days_held = "35" | CREATE TABLE table_name_31 (event VARCHAR, reign VARCHAR, days_held VARCHAR), What type of event had the wrestler with a reign of 2 and held the title for 35 days? |
SELECT location FROM table_name_41 WHERE wrestler = "super parka" AND reign = "2" | CREATE TABLE table_name_41 (location VARCHAR, wrestler VARCHAR, reign VARCHAR), Where did the wrestler, super parka, with the title with a reign of 2? |
SELECT reign FROM table_name_16 WHERE days_held = "35" AND wrestler = "super kendo" | CREATE TABLE table_name_16 (reign VARCHAR, days_held VARCHAR, wrestler VARCHAR), What is the reign for super kendo who held it for 35 days? |
SELECT fcc_info FROM table_name_67 WHERE erp_w = "100 watts" | CREATE TABLE table_name_67 (fcc_info VARCHAR, erp_w VARCHAR), Which FCC info has an ERP W of 100 watts? |
SELECT frequency_mhz FROM table_name_7 WHERE call_sign = "k218be" | CREATE TABLE table_name_7 (frequency_mhz VARCHAR, call_sign VARCHAR), Which Frequency MHz has a Call Sign of K218BE? |
SELECT erp_w FROM table_name_15 WHERE frequency_mhz = "88.5 fm" | CREATE TABLE table_name_15 (erp_w VARCHAR, frequency_mhz VARCHAR), Which ERP W has a Frequency MHz of 88.5 FM? |
SELECT name FROM table_name_62 WHERE nationality = "spain" AND ranking > 3 | CREATE TABLE table_name_62 (name VARCHAR, nationality VARCHAR, ranking VARCHAR), What is the name of the player from Spain with a rank lower than 3? |
SELECT region FROM table_name_19 WHERE catalog = "570 734-2" | CREATE TABLE table_name_19 (region VARCHAR, catalog VARCHAR), Which region had a catalog number of 570 734-2? |
SELECT region FROM table_name_8 WHERE format = "cd maxi" | CREATE TABLE table_name_8 (region VARCHAR, format VARCHAR), Which region had a release format of CD Maxi? |
SELECT region FROM table_name_20 WHERE format = "cd maxi" | CREATE TABLE table_name_20 (region VARCHAR, format VARCHAR), Which region had a release format of CD Maxi? |
SELECT game_site FROM table_name_98 WHERE attendance = "11,309" | CREATE TABLE table_name_98 (game_site VARCHAR, attendance VARCHAR), Where did the Jet's play with an attendance of 11,309? |
SELECT result FROM table_name_34 WHERE opponent = "bye" | CREATE TABLE table_name_34 (result VARCHAR, opponent VARCHAR), What's the result of the game against Bye? |
SELECT result FROM table_name_53 WHERE week = 15 | CREATE TABLE table_name_53 (result VARCHAR, week VARCHAR), What's the Result for week 15? |
SELECT appointment FROM table_name_79 WHERE credentials_presented = "jul 2, 1969" | CREATE TABLE table_name_79 (appointment VARCHAR, credentials_presented VARCHAR), What day was the appointment when Credentials Presented was jul 2, 1969? |
SELECT credentials_presented FROM table_name_59 WHERE state = "new jersey" AND status = "foreign service officer" | CREATE TABLE table_name_59 (credentials_presented VARCHAR, state VARCHAR, status VARCHAR), When were the credentials presented for new jersey with a status of foreign service officer? |
SELECT title FROM table_name_90 WHERE name = "david campbell mulford" | CREATE TABLE table_name_90 (title VARCHAR, name VARCHAR), What is the title for david campbell mulford? |
SELECT state FROM table_name_47 WHERE appointment = "jul 12, 2001" | CREATE TABLE table_name_47 (state VARCHAR, appointment VARCHAR), What state has an appointment for jul 12, 2001? |
SELECT credentials_presented FROM table_name_35 WHERE state = "vermont" | CREATE TABLE table_name_35 (credentials_presented VARCHAR, state VARCHAR), What day were credentials presented for vermont? |
SELECT class FROM table_name_57 WHERE weight = 203 | CREATE TABLE table_name_57 (class VARCHAR, weight VARCHAR), Which Class has a Weight of 203? |
SELECT team_1 FROM table_name_43 WHERE team_2 = "mount cameroon fc" | CREATE TABLE table_name_43 (team_1 VARCHAR, team_2 VARCHAR), What is the team 1 with team 2 Mount Cameroon FC? |
SELECT 2 AS nd_leg FROM table_name_99 WHERE team_1 = "dolphins" | CREATE TABLE table_name_99 (team_1 VARCHAR), What is the 2nd leg of team 1 Dolphins? |
SELECT distance__miles_ FROM table_name_68 WHERE winner = "no race" AND year > 1909 | CREATE TABLE table_name_68 (distance__miles_ VARCHAR, winner VARCHAR, year VARCHAR), When the winner was No Race in a year after 1909, what was the distance? |
SELECT winner FROM table_name_21 WHERE trainer = "no race" | CREATE TABLE table_name_21 (winner VARCHAR, trainer VARCHAR), What horse won with a trainer of "no race"? |
SELECT jockey FROM table_name_41 WHERE winner = "helioptic" | CREATE TABLE table_name_41 (jockey VARCHAR, winner VARCHAR), Who was the jockey for the winning horse Helioptic? |
SELECT time FROM table_name_94 WHERE winner = "salford ii" | CREATE TABLE table_name_94 (time VARCHAR, winner VARCHAR), What was the time for the winning horse Salford ii? |
SELECT time FROM table_name_49 WHERE winner = "kentucky ii" | CREATE TABLE table_name_49 (time VARCHAR, winner VARCHAR), What was the winning time for the winning horse, Kentucky ii? |
SELECT COUNT(position) FROM table_name_1 WHERE lost < 1 | CREATE TABLE table_name_1 (position VARCHAR, lost INTEGER), What was the position with the total number less than 1? |
SELECT SUM(gold) FROM table_name_36 WHERE rank = "6" AND total > 3 | CREATE TABLE table_name_36 (gold INTEGER, rank VARCHAR, total VARCHAR), What is the sum of golds for ranks of 6 and totals over 3? |
SELECT AVG(silver) FROM table_name_35 WHERE gold > 2 AND rank = "1" AND bronze > 0 | CREATE TABLE table_name_35 (silver INTEGER, bronze VARCHAR, gold VARCHAR, rank VARCHAR), What is the average silver for golds over 2, ranks of 1, and bronzes over 0? |
SELECT COUNT(total) FROM table_name_57 WHERE silver < 2 AND bronze > 0 AND gold > 1 | CREATE TABLE table_name_57 (total VARCHAR, gold VARCHAR, silver VARCHAR, bronze VARCHAR), What is the number of totals that have silvers under 2, bronzes over 0, and golds over 1? |
SELECT COUNT(gold) FROM table_name_61 WHERE total = 1 AND bronze < 1 AND nation = "west germany" | CREATE TABLE table_name_61 (gold VARCHAR, nation VARCHAR, total VARCHAR, bronze VARCHAR), What is the total number of golds having a total of 1, bronzes of 0, and from West Germany? |
SELECT SUM(bronze) FROM table_name_43 WHERE silver > 5 AND gold < 20 | CREATE TABLE table_name_43 (bronze INTEGER, silver VARCHAR, gold VARCHAR), What is the sum of bronzes having silvers over 5 and golds under 20? |
SELECT result FROM table_name_71 WHERE attendance > 67 OFFSET 702 | CREATE TABLE table_name_71 (result VARCHAR, attendance INTEGER), What is the result of the game with an attendance greater than 67,702? |
SELECT COUNT(losses) FROM table_name_10 WHERE ballarat_fl = "melton south" AND against > 1468 | CREATE TABLE table_name_10 (losses VARCHAR, ballarat_fl VARCHAR, against VARCHAR), How many Losses have a Ballarat FL of melton south, and an Against larger than 1468? |
SELECT AVG(against) FROM table_name_15 WHERE byes < 2 | CREATE TABLE table_name_15 (against INTEGER, byes INTEGER), How many Against has Byes smaller than 2? |
SELECT COUNT(against) FROM table_name_4 WHERE ballarat_fl = "darley" AND wins > 8 | CREATE TABLE table_name_4 (against VARCHAR, ballarat_fl VARCHAR, wins VARCHAR), How many Against has a Ballarat FL of darley and Wins larger than 8? |
SELECT AVG(byes) FROM table_name_16 WHERE against = 1076 AND wins < 13 | CREATE TABLE table_name_16 (byes INTEGER, against VARCHAR, wins VARCHAR), How many Byes have Against of 1076 and Wins smaller than 13? |
SELECT COUNT(total_passengers) FROM table_name_28 WHERE annual_change = "28.8%" AND rank < 8 | CREATE TABLE table_name_28 (total_passengers VARCHAR, annual_change VARCHAR, rank VARCHAR), What is the total number of Total Passengers when the annual change is 28.8% and the rank is less than 8? |
SELECT SUM(total_passengers) FROM table_name_9 WHERE annual_change = "9.7%" AND rank < 6 | CREATE TABLE table_name_9 (total_passengers INTEGER, annual_change VARCHAR, rank VARCHAR), What is the sum of Total Passengers when the annual change is 9.7% and the rank is less than 6? |
SELECT MAX(total_passengers) FROM table_name_49 WHERE annual_change = "18.3%" AND rank < 11 | CREATE TABLE table_name_49 (total_passengers INTEGER, annual_change VARCHAR, rank VARCHAR), What is the highest Total Passengers when the annual change is 18.3%, and the rank is less than 11? |
SELECT location FROM table_name_32 WHERE annual_change = "7.6%" | CREATE TABLE table_name_32 (location VARCHAR, annual_change VARCHAR), What location has an annual change of 7.6% |
SELECT result FROM table_name_7 WHERE score = "1–0" AND goal = 16 | CREATE TABLE table_name_7 (result VARCHAR, score VARCHAR, goal VARCHAR), Which Result has a Score of 1–0, and a Goal of 16? |
SELECT score FROM table_name_21 WHERE result = "2–1" AND competition = "friendly" AND goal < 17 | CREATE TABLE table_name_21 (score VARCHAR, goal VARCHAR, result VARCHAR, competition VARCHAR), Which Score has a Result of 2–1, and a Competition of friendly, and a Goal smaller than 17? |
SELECT score FROM table_name_96 WHERE date = "october 8, 2005" AND venue = "estadio alfonso lastras, san luis potosí, mexico" | CREATE TABLE table_name_96 (score VARCHAR, date VARCHAR, venue VARCHAR), Which Score has a Date of october 8, 2005, and a Venue of estadio alfonso lastras, san luis potosí, mexico? |
SELECT competition FROM table_name_45 WHERE venue = "estadio alfonso lastras, san luis potosí, mexico" AND goal > 15 | CREATE TABLE table_name_45 (competition VARCHAR, venue VARCHAR, goal VARCHAR), Which Competition has a Venue of estadio alfonso lastras, san luis potosí, mexico, and a Goal larger than 15? |
SELECT area__hectare_ FROM table_name_22 WHERE parish = "worth" | CREATE TABLE table_name_22 (area__hectare_ VARCHAR, parish VARCHAR), What is the area for Worth Parish? |
SELECT week__number FROM table_name_88 WHERE original_artist = "phil collins" | CREATE TABLE table_name_88 (week__number VARCHAR, original_artist VARCHAR), What is the week number with Phil Collins as the original artist? |
SELECT order__number FROM table_name_16 WHERE week__number = "top 20 (10 women)" | CREATE TABLE table_name_16 (order__number VARCHAR, week__number VARCHAR), What is the order number that has top 20 (10 women) as the week number? |
SELECT original_artist FROM table_name_88 WHERE week__number = "top 9" | CREATE TABLE table_name_88 (original_artist VARCHAR, week__number VARCHAR), What is the original artist of top 9 as the week number? |
SELECT week__number FROM table_name_12 WHERE theme = "dolly parton" | CREATE TABLE table_name_12 (week__number VARCHAR, theme VARCHAR), What is the week number that has Dolly Parton as the theme? |
SELECT original_artist FROM table_name_69 WHERE order__number = "11" | CREATE TABLE table_name_69 (original_artist VARCHAR, order__number VARCHAR), What is the original artist that has 11 as the order number? |
SELECT order__number FROM table_name_97 WHERE original_artist = "aretha franklin" | CREATE TABLE table_name_97 (order__number VARCHAR, original_artist VARCHAR), What is the order number that has Aretha Franklin as the original artist? |
SELECT format FROM table_name_81 WHERE date = 1993 AND catalog = "cleo 2481-2" | CREATE TABLE table_name_81 (format VARCHAR, date VARCHAR, catalog VARCHAR), Which Format has a Date of 1993, and a Catalog of cleo 2481-2? |
SELECT label FROM table_name_82 WHERE date < 2008 AND catalog = "fall cd 006" | CREATE TABLE table_name_82 (label VARCHAR, date VARCHAR, catalog VARCHAR), Which Label has a Date smaller than 2008, and a Catalog of fall cd 006? |
SELECT SUM(round) FROM table_name_88 WHERE position = "center" | CREATE TABLE table_name_88 (round INTEGER, position VARCHAR), What is the sum of Round with a Position that is center? |
SELECT SUM(round) FROM table_name_89 WHERE pick = 55 | CREATE TABLE table_name_89 (round INTEGER, pick VARCHAR), What is the sum of Round with a Pick that is 55? |
SELECT MAX(wins) FROM table_name_77 WHERE losses < 4 AND ties > 0 | CREATE TABLE table_name_77 (wins INTEGER, losses VARCHAR, ties VARCHAR), What is the most wins when the number of losses was less than 4 and there was more than 0 ties? |
SELECT team FROM table_name_37 WHERE losses < 2 AND pos > 1 | CREATE TABLE table_name_37 (team VARCHAR, losses VARCHAR, pos VARCHAR), Which team had fewer than 2 losses and a position number more than 1? |
SELECT season FROM table_name_97 WHERE name = "marcio lassiter" | CREATE TABLE table_name_97 (season VARCHAR, name VARCHAR), What season had Marcio Lassiter? |
SELECT season FROM table_name_89 WHERE acquisition_via = "free agency" AND number > 9 | CREATE TABLE table_name_89 (season VARCHAR, acquisition_via VARCHAR, number VARCHAR), What season had an acquisition of free agency, and was higher than 9? |
SELECT number FROM table_name_54 WHERE acquisition_via = "rookie draft" AND school_club_team = "cal state fullerton" | CREATE TABLE table_name_54 (number VARCHAR, acquisition_via VARCHAR, school_club_team VARCHAR), What number has an acquisition via the Rookie Draft, and is part of a School/club team at Cal State Fullerton? |
SELECT MAX(rank) FROM table_name_29 WHERE total < 15 AND bronze > 2 AND gold = 0 AND silver = 1 | CREATE TABLE table_name_29 (rank INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR, bronze VARCHAR), What is the highest rank of the medal total less than 15, more than 2 bronzes, 0 gold and 1 silver? |
SELECT location FROM table_name_59 WHERE founded > 1889 AND team_nickname = "broncos" | CREATE TABLE table_name_59 (location VARCHAR, founded VARCHAR, team_nickname VARCHAR), What is the location of the team nicknamed Broncos, which was founded after 1889? |
SELECT location FROM table_name_23 WHERE founded > 1890 AND institution = "university of montana" | CREATE TABLE table_name_23 (location VARCHAR, founded VARCHAR, institution VARCHAR), What is the location of the University of Montana, which was founded after 1890? |
SELECT landfall FROM table_name_85 WHERE saffir_simpson_category = 1 AND year = 1999 | CREATE TABLE table_name_85 (landfall VARCHAR, saffir_simpson_category VARCHAR, year VARCHAR), Which landfall was in category 1 for Saffir-Simpson in 1999? |
SELECT MIN(v_mph_) FROM table_name_36 WHERE saffir_simpson_category = 4 AND year = 2005 | CREATE TABLE table_name_36 (v_mph_ INTEGER, saffir_simpson_category VARCHAR, year VARCHAR), What was the lowest V(mph) for a Saffir-Simpson of 4 in 2005? |
SELECT MAX(saffir_simpson_category) FROM table_name_8 WHERE nhc_advisory_number = "18" | CREATE TABLE table_name_8 (saffir_simpson_category INTEGER, nhc_advisory_number VARCHAR), What was the highest SaffirSimpson with an NHC advisory of 18? |
SELECT athlete FROM table_name_82 WHERE rank > 15 AND result < 7.68 AND group = "b" AND nationality = "great britain" | CREATE TABLE table_name_82 (athlete VARCHAR, nationality VARCHAR, group VARCHAR, rank VARCHAR, result VARCHAR), Which athlete's rank is more than 15 when the result is less than 7.68, the group is b, and the nationality listed is Great Britain? |
SELECT launch_date FROM table_name_11 WHERE space_agency = "nasa" AND name = "wide field infrared explorer (wire)" | CREATE TABLE table_name_11 (launch_date VARCHAR, space_agency VARCHAR, name VARCHAR), When did NASA launch the wide field infrared explorer (wire)? |
SELECT space_agency FROM table_name_17 WHERE name = "herschel space observatory" | CREATE TABLE table_name_17 (space_agency VARCHAR, name VARCHAR), Which space agency launched the herschel space observatory? |
SELECT lead FROM table_name_98 WHERE third = "david nedohin" | CREATE TABLE table_name_98 (lead VARCHAR, third VARCHAR), What lead has the third David Nedohin? |
SELECT builder FROM table_name_93 WHERE completed > 1889 | CREATE TABLE table_name_93 (builder VARCHAR, completed INTEGER), Which builder completed after 1889? |
SELECT builder FROM table_name_84 WHERE completed < 1890 AND launched = "9 june 1888" | CREATE TABLE table_name_84 (builder VARCHAR, completed VARCHAR, launched VARCHAR), Which builder completed before 1890 and launched on 9 june 1888? |
SELECT name FROM table_name_75 WHERE builder = "chatham" AND laid_down = "25 april 1887" | CREATE TABLE table_name_75 (name VARCHAR, builder VARCHAR, laid_down VARCHAR), What is the name of the boat that was built by Chatham and Laid down of 25 april 1887? |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.