sql stringlengths 9 2.37k | table stringclasses 9
values | query stringlengths 51 503 |
|---|---|---|
SELECT MAX No. in season FROM table WHERE Title = "Authority Vested" | CREATE TABLE INST, Here is a database schema( table schema); | What episode is titled "Authority Vested"?.It is not neccessary to use all the tables. |
SELECT dorm_name, gender FROM dorm WHERE student_capacity > 300 OR student_capacity < 100 | CREATE TABLE INST, Here is a database schema( table schema); | Find the name and gender type of the dorms whose capacity is greater than 300 or less than 100.It is not neccessary to use all the tables. |
SELECT league FROM table_name_48 WHERE venue = "billesley common" | CREATE TABLE INST, Here is a database schema( table schema); | What kind of League has a Venue of billesley common?It is not neccessary to use all the tables. |
SELECT lab.labresulttime FROM lab WHERE lab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '002-58884')) AND DATETIME(lab.labresulttime, 'start of month') = DATETIME(CURRENT_T... | CREATE TABLE INST, Here is a database schema( table schema); | when was the first laboratory test patient 002-58884 received last month?It is not neccessary to use all the tables. |
SELECT UserLink AS "user_link", Rep, NumBadges, COUNT(*) AS "numquestions" FROM (SELECT * FROM (SELECT Users.Id AS "userlink", Users.Reputation AS "rep", COUNT(*) AS "numbadges" FROM Users INNER JOIN Badges ON Users.Id = Badges.UserId WHERE Badges.Class = 1 GROUP BY Users.Id, Users.Reputation) AS UserByBadge ORDER BY N... | CREATE TABLE INST, Here is a database schema( table schema); | Users ranked by number of badges (all kinds).It is not neccessary to use all the tables. |
SELECT SUM Games FROM table WHERE Points difference = 18 - 33 AND Points < 4 | CREATE TABLE INST, Here is a database schema( table schema); | Points difference of 18 - 33, and a Points smaller than 4 is the total of what sum of games?.It is not neccessary to use all the tables. |
SELECT first_season_in_the_serie_a FROM table_2454589_1 WHERE last_title = "2006" | CREATE TABLE INST, Here is a database schema( table schema); | Name the first season in the series for 2006It is not neccessary to use all the tables. |
SELECT Points for FROM table WHERE Drawn = 2 AND Losing bonus = 5 | CREATE TABLE INST, Here is a database schema( table schema); | How many points drew 2 with a losing bonus of 5?.It is not neccessary to use all the tables. |
SELECT Score FROM table WHERE Att. = 354 | CREATE TABLE INST, Here is a database schema( table schema); | What was the score for the matchup having attendance of 354?.It is not neccessary to use all the tables. |
SELECT report FROM table_15511178_3 WHERE rd = 8 | CREATE TABLE INST, Here is a database schema( table schema); | Did the round 8 race get reportedIt is not neccessary to use all the tables. |
SELECT Player FROM table WHERE Year(s) won = 1985 | CREATE TABLE INST, Here is a database schema( table schema); | What player won 1985?.It is not neccessary to use all the tables. |
SELECT COUNT(director) FROM table_23141790_1 WHERE original_title = "Vesničko má středisková" | CREATE TABLE INST, Here is a database schema( table schema); | Name the total number of director for vesničko má střediskováIt is not neccessary to use all the tables. |
SELECT state_s__on_the_ballot FROM table_name_98 WHERE candidate = "jack herer" | CREATE TABLE INST, Here is a database schema( table schema); | Name the staes on the ballot for jack hererIt is not neccessary to use all the tables. |
SELECT Entrant FROM table WHERE Year = 1967 | CREATE TABLE INST, Here is a database schema( table schema); | What is the entrant for 1967?.It is not neccessary to use all the tables. |
SELECT Winner FROM table WHERE Date = october 7 | CREATE TABLE INST, Here is a database schema( table schema); | Who is the winner for the match on October 7?.It is not neccessary to use all the tables. |
SELECT COUNT(district) FROM table_17503169_1 WHERE republican = "Bob Goodlatte" | CREATE TABLE INST, Here is a database schema( table schema); | How many districts had republican Bob Goodlatte as a candidate?It is not neccessary to use all the tables. |
SELECT year__ceremony_ FROM table_10321805_1 WHERE original_title = "La leggenda del santo bevitore" | CREATE TABLE INST, Here is a database schema( table schema); | What year was a movie with the original title La Leggenda del Santo Bevitore submitted?It is not neccessary to use all the tables. |
SELECT composition FROM table_11464746_1 WHERE colours = "Green" | CREATE TABLE INST, Here is a database schema( table schema); | What is the green house made of?It is not neccessary to use all the tables. |
SELECT Stadium FROM table WHERE Payout ( US$ ) = $3 Million | CREATE TABLE INST, Here is a database schema( table schema); | Which stadium has a payout of $3 million?.It is not neccessary to use all the tables. |
SELECT COUNT Wins FROM table WHERE Goals against < 32 | CREATE TABLE INST, Here is a database schema( table schema); | What was the number of wins with goals against of less than 32?.It is not neccessary to use all the tables. |
SELECT COUNT Gold FROM table WHERE Rank = 6 AND Bronze > 0 | CREATE TABLE INST, Here is a database schema( table schema); | Gold that has a Rank of 6, and a Bronze larger than 0 had what total number of gold?.It is not neccessary to use all the tables. |
SELECT COUNT(week) FROM table_name_36 WHERE venue = "memorial stadium" AND attendance < 41 OFFSET 252 | CREATE TABLE INST, Here is a database schema( table schema); | What is the number of weeks where the venue was memorial stadium and the attendance was less than 41252?It is not neccessary to use all the tables. |
SELECT Nickname FROM school_details WHERE Division <> "Division 1" | CREATE TABLE INST, Here is a database schema( table schema); | Show the nicknames of schools that are not in division 1.It is not neccessary to use all the tables. |
SELECT COUNT(party) FROM table_1342249_11 WHERE incumbent = "Stephen Pace" | CREATE TABLE INST, Here is a database schema( table schema); | How many parties does incumbent stephen pace represent?It is not neccessary to use all the tables. |
SELECT COUNT Nation FROM table WHERE Name = FMS International | CREATE TABLE INST, Here is a database schema( table schema); | How many nations do the FMS international team represent?.It is not neccessary to use all the tables. |
SELECT MAX Withdrawn FROM table WHERE Previous Class = j69 AND Previous Number(s) < 68532 AND Converted > 1959 | CREATE TABLE INST, Here is a database schema( table schema); | Which Withdrawn has a Previous Class of j69, and a Previous Number(s) smaller than 68532, and a Converted larger than 1959?.It is not neccessary to use all the tables. |
SELECT Name of ship FROM table WHERE Fate = sunk at AND Time = 01:00 | CREATE TABLE INST, Here is a database schema( table schema); | Which ship was sunk at 01:00?.It is not neccessary to use all the tables. |
SELECT Heavy vehicle (3/4 axles) FROM table WHERE Name = Verkeerdevlei Toll Plaza | CREATE TABLE INST, Here is a database schema( table schema); | What is the toll for heavy vehicles with 3/4 axles at Verkeerdevlei toll plaza?.It is not neccessary to use all the tables. |
SELECT player FROM table_name_63 WHERE venue = "esher" | CREATE TABLE INST, Here is a database schema( table schema); | Who is the player associated with the Esher venue?It is not neccessary to use all the tables. |
SELECT document_name FROM documents GROUP BY document_type_code ORDER BY COUNT(*) DESC LIMIT 3 INTERSECT SELECT document_name FROM documents GROUP BY document_structure_code ORDER BY COUNT(*) DESC LIMIT 3 | CREATE TABLE INST, Here is a database schema( table schema); | Find the list of documents that are both in the most three popular type and have the most three popular structure.It is not neccessary to use all the tables. |
SELECT COUNT Violent FROM table WHERE Forcible rape = 1156 | CREATE TABLE INST, Here is a database schema( table schema); | How many violent catagories are listed for the year forcible rapes were 1156? .It is not neccessary to use all the tables. |
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.age < "61" AND lab."CATEGORY" = "Hematology" | CREATE TABLE INST, Here is a database schema( table schema); | give me the number of patients whose age is less than 61 and lab test category is hematology?It is not neccessary to use all the tables. |
SELECT horse FROM table_name_69 WHERE result = "66.452" | CREATE TABLE INST, Here is a database schema( table schema); | What horse has a 66.452 result?It is not neccessary to use all the tables. |
SELECT round FROM table_name_32 WHERE method = "decision (unanimous)" AND event = "ufc 145" | CREATE TABLE INST, Here is a database schema( table schema); | Which Round has a Method of decision (unanimous) and an Event of ufc 145?It is not neccessary to use all the tables. |
SELECT "Date" FROM table_71367 WHERE "Result" = 'eng by 23 runs' | CREATE TABLE INST, Here is a database schema( table schema); | Name the date for result of eng by 23 runsIt is not neccessary to use all the tables. |
SELECT COUNT(pf) FROM table_25176088_2 WHERE stolen_ends = 3 | CREATE TABLE INST, Here is a database schema( table schema); | What are the number of points for associated with exactly 3 stolen ends?It is not neccessary to use all the tables. |
SELECT AVG(against) FROM table_name_92 WHERE position < 1 | CREATE TABLE INST, Here is a database schema( table schema); | What is the mean number of against when the position is less than 1?It is not neccessary to use all the tables. |
SELECT fastest_lap FROM table_19908651_3 WHERE pole_position = "Emerson Fittipaldi" AND winning_driver = "Paul Tracy" | CREATE TABLE INST, Here is a database schema( table schema); | Who did the fastest lap in the race won by Paul Tracy with Emerson Fittipaldi at the pole position?It is not neccessary to use all the tables. |
SELECT Birth FROM table WHERE Death = 18 october 1335 | CREATE TABLE INST, Here is a database schema( table schema); | What is the birth date of the person who died on 18 October 1335?.It is not neccessary to use all the tables. |
SELECT MAX(rank) FROM table_name_47 WHERE director = "john woo" | CREATE TABLE INST, Here is a database schema( table schema); | what is the highest rank for director john woo?It is not neccessary to use all the tables. |
SELECT Position FROM table WHERE Player = Maksim Botin | CREATE TABLE INST, Here is a database schema( table schema); | What is Maksim Botin's position? .It is not neccessary to use all the tables. |
SELECT SUM(points) FROM table_name_25 WHERE player = "shawn mceachern" AND goals < 79 | CREATE TABLE INST, Here is a database schema( table schema); | How many points does Shawn Mceachern with less than 79 goals?It is not neccessary to use all the tables. |
SELECT Series Ep. FROM table WHERE Netflix = S02E08 | CREATE TABLE INST, Here is a database schema( table schema); | Name the series ep for s02e08.It is not neccessary to use all the tables. |
SELECT time___et__ FROM table_14433719_1 WHERE opponent = "at Denver Broncos" | CREATE TABLE INST, Here is a database schema( table schema); | What time in eastern standard time was game held at denver broncos?It is not neccessary to use all the tables. |
SELECT COUNT(starts) FROM table_name_47 WHERE driver = "nasser al-attiyah" AND points > 1 | CREATE TABLE INST, Here is a database schema( table schema); | What's the total starts with more points than 1 and the driver is Nasser Al-Attiyah?It is not neccessary to use all the tables. |
SELECT MIN Bronze FROM table WHERE Gold < 6 AND Nation = italy AND Total > 10 | CREATE TABLE INST, Here is a database schema( table schema); | What is the lowest bronze medal count for Italy with fewer than 6 gold medals and greater than 10 total medals?.It is not neccessary to use all the tables. |
SELECT COUNT("nation") FROM table_204_183 WHERE "bronze" > 3 | CREATE TABLE INST, Here is a database schema( table schema); | how many countries won more than 3 bronze metals ?It is not neccessary to use all the tables. |
SELECT home FROM table_name_56 WHERE record = "21–45–8–5" | CREATE TABLE INST, Here is a database schema( table schema); | Who was the home team when the record was 21–45–8–5?It is not neccessary to use all the tables. |
SELECT Constructor FROM table WHERE Grid > 21 AND Time/Retired = suspension | CREATE TABLE INST, Here is a database schema( table schema); | Who built the 21 grid car that retired due to suspension?.It is not neccessary to use all the tables. |
SELECT "Conference" FROM table_40317 WHERE "Awards" = 'vancouver grizzlies' | CREATE TABLE INST, Here is a database schema( table schema); | Where the Vancouver Grizzlies is the awards, what is the conference?It is not neccessary to use all the tables. |
SELECT Points % FROM table WHERE Total W-L-H = 1-2-2 | CREATE TABLE INST, Here is a database schema( table schema); | WHAT IS THE POINTS PERCENTAGE WITH A TOTAL OF 1-2-2 RECORD?.It is not neccessary to use all the tables. |
SELECT MAX League Cup FROM table WHERE Player = steed malbranque | CREATE TABLE INST, Here is a database schema( table schema); | What is the highest League Cup with a Player that is steed malbranque?.It is not neccessary to use all the tables. |
SELECT Song FROM table WHERE Language = french | CREATE TABLE INST, Here is a database schema( table schema); | What song was in french?.It is not neccessary to use all the tables. |
SELECT COUNT Opponent FROM table WHERE Result = Loss | CREATE TABLE INST, Here is a database schema( table schema); | Name the number opponent for loss result.It is not neccessary to use all the tables. |
SELECT MIN Goals Against FROM table WHERE Points 1 = 18 AND Drawn > 8 | CREATE TABLE INST, Here is a database schema( table schema); | What is the smallest number of goals against when there are 1 of 18 points, and more than 8 are drawn?.It is not neccessary to use all the tables. |
SELECT COUNT Year FROM table WHERE Laps = 71 | CREATE TABLE INST, Here is a database schema( table schema); | How many years was the number of laps 71?.It is not neccessary to use all the tables. |
SELECT date FROM table_name_47 WHERE site = "umbc field" | CREATE TABLE INST, Here is a database schema( table schema); | What date was the game held at UMBC Field?It is not neccessary to use all the tables. |
SELECT callsign FROM table_name_8 WHERE area_served = "tamworth" AND frequency = "0 88.9" | CREATE TABLE INST, Here is a database schema( table schema); | What is the Callsign with an Area of tamworth and frequency of 0 88.9?It is not neccessary to use all the tables. |
SELECT MAX(attendance) FROM table_name_84 WHERE date = "december 16, 1962" | CREATE TABLE INST, Here is a database schema( table schema); | What is the largest attendance that has December 16 1962 as the date?It is not neccessary to use all the tables. |
SELECT max. power at rpm FROM table WHERE displacement = 1968cc AND engine name = 2.0 tdi | CREATE TABLE INST, Here is a database schema( table schema); | What is the maximum power at rpm for the engine named 2.0 TDI that has a 1968cc displacement?.It is not neccessary to use all the tables. |
SELECT position FROM table_name_61 WHERE country = "canada" AND pick = "8" | CREATE TABLE INST, Here is a database schema( table schema); | What position was picked for Canada on Pick 8?It is not neccessary to use all the tables. |
SELECT MAX(series__number) FROM table_17356106_1 WHERE directed_by = "Arthur Albert" | CREATE TABLE INST, Here is a database schema( table schema); | If Arthur Albert is the director what is the maximum series number?It is not neccessary to use all the tables. |
SELECT Format FROM table WHERE Local title = Fort Boyard: Ultimate Challenge | CREATE TABLE INST, Here is a database schema( table schema); | What was the production format for the series with the local title Fort Boyard: Ultimate Challenge?.It is not neccessary to use all the tables. |
SELECT status FROM table_name_79 WHERE country = "eng" AND name = "farquharson" | CREATE TABLE INST, Here is a database schema( table schema); | What is the status of the ENG Country with the name of Farquharson?It is not neccessary to use all the tables. |
SELECT label FROM table_name_22 WHERE catalog = "rtradcd491" AND date = "september 20, 2008" | CREATE TABLE INST, Here is a database schema( table schema); | What is the Label of the September 20, 2008 release with Catalog number RTRADCD491?It is not neccessary to use all the tables. |
SELECT Romaji Title FROM table WHERE Japanese Title = 菊次郎とさき 3 | CREATE TABLE INST, Here is a database schema( table schema); | Which romaji title, has Japanese title of 菊次郎とさき 3?.It is not neccessary to use all the tables. |
SELECT team FROM table_name_74 WHERE home_city = "velika" | CREATE TABLE INST, Here is a database schema( table schema); | What team has a home city of Velika?It is not neccessary to use all the tables. |
SELECT Venue FROM table WHERE Result = 2-1 | CREATE TABLE INST, Here is a database schema( table schema); | What is the Venue when the result was 2-1?.It is not neccessary to use all the tables. |
SELECT Champions FROM table WHERE Last/Current driver(s) September 22, 2013 = Vladimir Arabadzhiev ( 2010 ) | CREATE TABLE INST, Here is a database schema( table schema); | How many champions were there when the last driver for September 22, 2013 was vladimir arabadzhiev ( 2010 )?.It is not neccessary to use all the tables. |
SELECT format FROM table_name_41 WHERE catalog = "rtradcd491" AND date = "september 22, 2008" | CREATE TABLE INST, Here is a database schema( table schema); | What is the Format of the September 22, 2008 release with Catalog number RTRADCD491?It is not neccessary to use all the tables. |
SELECT time FROM table_name_14 WHERE set_3 = "25–16" | CREATE TABLE INST, Here is a database schema( table schema); | What time has a Set 3 of 25–16?It is not neccessary to use all the tables. |
SELECT COUNT Area (km²) FROM table WHERE Population (2007 estimation) = 7996 | CREATE TABLE INST, Here is a database schema( table schema); | How many places of whatever size have a 2007 population estimation of 7996?.It is not neccessary to use all the tables. |
SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, date_day, days, flight WHERE ((((((flight.arrival_time < 41 OR flight.time_elapsed >= 60) AND flight.departure_time > flight.arrival_time) AND date_day.day_number = 24 AND da... | CREATE TABLE INST, Here is a database schema( table schema); | which flights arrive in ST. LOUIS from ST. PAUL on thursday morningIt is not neccessary to use all the tables. |
SELECT player FROM table_name_74 WHERE to_par = "–2" AND score = 69 - 73 = 142 | CREATE TABLE INST, Here is a database schema( table schema); | Name the Player who has a To par of –2 and a Score of 69-73=142?It is not neccessary to use all the tables. |
SELECT Russian Name FROM table WHERE 2005 (RUB) = 139995 | CREATE TABLE INST, Here is a database schema( table schema); | What is the Russian name for the area with 139995 RUB in 2005?.It is not neccessary to use all the tables. |
SELECT Runner-up FROM table WHERE Year = 1901 | CREATE TABLE INST, Here is a database schema( table schema); | Who is the runner-up in 1901?.It is not neccessary to use all the tables. |
SELECT Home FROM table WHERE Attendance > 1189 AND Away = real juventud | CREATE TABLE INST, Here is a database schema( table schema); | Who was the home team when real juventud was the away team when there were more than 1189 in attendance?.It is not neccessary to use all the tables. |
SELECT written_by FROM table_15717093_1 WHERE us_viewers__millions_ = "15.85" | CREATE TABLE INST, Here is a database schema( table schema); | Who was the writer when there were 15.85 million US viewers?It is not neccessary to use all the tables. |
SELECT Result FROM table WHERE Date = 3 march 2004 | CREATE TABLE INST, Here is a database schema( table schema); | What is the result of the match on 3 March 2004?.It is not neccessary to use all the tables. |
SELECT COUNT(third_year) FROM table_12148147_2 WHERE first_year = "Pag-unawa" | CREATE TABLE INST, Here is a database schema( table schema); | How many classes are taken in the third year when pag-unawa was taken in the first year?It is not neccessary to use all the tables. |
SELECT Muslim (% of Total population) FROM table WHERE Registered Mosques = 614 | CREATE TABLE INST, Here is a database schema( table schema); | What was the percentage of muslims during a time where there were 614 registered mosques?.It is not neccessary to use all the tables. |
SELECT Road Team FROM table WHERE Home Team = philadelphia AND Result = 105-102 | CREATE TABLE INST, Here is a database schema( table schema); | What is the road team of the game with Philadelphia as the home team with a result of 105-102?.It is not neccessary to use all the tables. |
SELECT t1.customer_name FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id JOIN order_items AS t3 ON t2.order_id = t3.order_id GROUP BY t1.customer_name ORDER BY SUM(t3.order_quantity) DESC LIMIT 1 | CREATE TABLE INST, Here is a database schema( table schema); | What is the name of the customer that has purchased the most items?It is not neccessary to use all the tables. |
SELECT "Garfield Episode 2" FROM table_22395 WHERE "U.S. Acres Episode" = 'The Bunny Rabbits is Coming!' | CREATE TABLE INST, Here is a database schema( table schema); | what is the 2nd garfield episode where u.s. acres episode is the bunny rabbits is coming!It is not neccessary to use all the tables. |
SELECT "Event" FROM table_37427 WHERE "Name" = 'rashid sidek' | CREATE TABLE INST, Here is a database schema( table schema); | What event did Rashid Sidek participate in?It is not neccessary to use all the tables. |
SELECT spokespersons FROM table_name_7 WHERE commentator = "pierre tchernia" AND voting_order = 11 | CREATE TABLE INST, Here is a database schema( table schema); | During the voting order 11 when the commentator was pierre tchernia who was the spokesperson?It is not neccessary to use all the tables. |
SELECT Nationality FROM table WHERE Player = john flatters | CREATE TABLE INST, Here is a database schema( table schema); | What is John Flatters' nationality?.It is not neccessary to use all the tables. |
SELECT MIN(gross_capacity__mw_) FROM table_213088_1 WHERE net_capacity__mw_ = 1380 | CREATE TABLE INST, Here is a database schema( table schema); | What is the gross capacity where the net capacity is 1380?It is not neccessary to use all the tables. |
SELECT COUNT(crowd) FROM table_name_46 WHERE away_team = "collingwood" | CREATE TABLE INST, Here is a database schema( table schema); | How big was the crowd when collingwood visited?It is not neccessary to use all the tables. |
SELECT AVG(isolation__km_) FROM table_name_83 WHERE municipality = "sunndal" AND elevation__m_ > 1850 | CREATE TABLE INST, Here is a database schema( table schema); | What is the average Isolation in the municipality of Sunndal at an elevation of more than 1850?It is not neccessary to use all the tables. |
SELECT laid_down FROM table_name_26 WHERE pennant = "u21" | CREATE TABLE INST, Here is a database schema( table schema); | What date was the U21 pennant laid down?It is not neccessary to use all the tables. |
SELECT position FROM table_name_82 WHERE round > 15 AND overall = 411 | CREATE TABLE INST, Here is a database schema( table schema); | What position is the round higher than 15 and has an overall of 411.It is not neccessary to use all the tables. |
SELECT Population (1931) in 1,000s FROM table WHERE Voivodeship or city = lubelskie | CREATE TABLE INST, Here is a database schema( table schema); | Name the population in 1931 for lubelskie.It is not neccessary to use all the tables. |
SELECT AVG("Total passengers") FROM table_7275 WHERE "Code" = 'mad' AND "Cargo traffic" < '359,362,155' | CREATE TABLE INST, Here is a database schema( table schema); | Can you tell me the average Total passengers that has the Code of mad, and the Cargo traffic smaller than 359,362,155?It is not neccessary to use all the tables. |
SELECT AVG(attendance) FROM table_name_72 WHERE game < 1 | CREATE TABLE INST, Here is a database schema( table schema); | What is the average attendance of game 1?It is not neccessary to use all the tables. |
SELECT Tournament FROM table WHERE Date = 1993 AND Score in the final = 6–2, 2–6, 7–5 | CREATE TABLE INST, Here is a database schema( table schema); | Which Tournament is in 1993 with a Score in the final of 6–2, 2–6, 7–5?.It is not neccessary to use all the tables. |
SELECT COUNT Sd FROM table WHERE Status = Quarterfinals lost to Novak Djokovic [1] | CREATE TABLE INST, Here is a database schema( table schema); | What is the total number of sd listings where the status is quarterfinals lost to Novak Djokovic [1]?.It is not neccessary to use all the tables. |
SELECT "Set 3" FROM table_58654 WHERE "Total" = '78–92' | CREATE TABLE INST, Here is a database schema( table schema); | What is the set 3 when the total is 78 92?It is not neccessary to use all the tables. |
SELECT copies_sold FROM table_name_85 WHERE oricon_position > 1 AND year = 1988 | CREATE TABLE INST, Here is a database schema( table schema); | How many copies were sold where the position is lager than 1 in 1988?It is not neccessary to use all the tables. |
SELECT saka_era FROM table_169955_1 WHERE sign_of_zodiac = "Pisces" | CREATE TABLE INST, Here is a database schema( table schema); | Name the saka era for sign of zodiac being piscesIt is not neccessary to use all the tables. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.