sql stringlengths 9 2.37k | table stringclasses 9
values | query stringlengths 51 503 |
|---|---|---|
SELECT COUNT(incumbent) FROM table_1341640_11 WHERE district = "Georgia 6" | CREATE TABLE INST, Here is a database schema( table schema); | How many incumbents were for district georgia 6?It is not neccessary to use all the tables. |
SELECT written_by FROM table_27169029_1 WHERE original_air_date = "September 26, 2010" | CREATE TABLE INST, Here is a database schema( table schema); | Who wrote the episode that aired on September 26 2010?It is not neccessary to use all the tables. |
SELECT Season FROM table WHERE Pct % = 0.552 | CREATE TABLE INST, Here is a database schema( table schema); | In what season was the pct % 0.552? .It is not neccessary to use all the tables. |
SELECT Sport FROM table WHERE Date < 2006 AND Loser = france b | CREATE TABLE INST, Here is a database schema( table schema); | What sport was played before 2006 with a loser of france b?.It is not neccessary to use all the tables. |
SELECT College FROM table WHERE School = liberty county high school | CREATE TABLE INST, Here is a database schema( table schema); | What college did the player from Liberty County High School attend?.It is not neccessary to use all the tables. |
SELECT AVG(crowd) FROM table_name_29 WHERE away_team = "hawthorn" | CREATE TABLE INST, Here is a database schema( table schema); | What is the average crowd to watch Hawthorn as the away team?It is not neccessary to use all the tables. |
SELECT SUM Number FROM table WHERE Location = bois de warville AND Time < 810 | CREATE TABLE INST, Here is a database schema( table schema); | What number is in Bois de Warville with a time less than 810?.It is not neccessary to use all the tables. |
SELECT college_junior_club_team FROM table_1965650_10 WHERE player = "Lee Palmer" | CREATE TABLE INST, Here is a database schema( table schema); | What team does Lee Palmer play for?It is not neccessary to use all the tables. |
SELECT 2009 FROM table WHERE 2012 = a AND 2011 = q2 | CREATE TABLE INST, Here is a database schema( table schema); | What is the 2009 value with A in 2012 and q2 in 2011?.It is not neccessary to use all the tables. |
SELECT Co-Drivers FROM table WHERE Class Pos. = 2nd | CREATE TABLE INST, Here is a database schema( table schema); | Who was the co-driver that had a class position of 2nd?.It is not neccessary to use all the tables. |
SELECT Ad Freq FROM table WHERE Show Name = off the bench | CREATE TABLE INST, Here is a database schema( table schema); | What is the ad frequency for the Show Off The Bench?.It is not neccessary to use all the tables. |
SELECT COUNT("Title") FROM table_17277 WHERE "Season #" = '8' | CREATE TABLE INST, Here is a database schema( table schema); | How many titles are there for season 8It is not neccessary to use all the tables. |
SELECT COUNT(lost) FROM table_15319684_1 WHERE against = 46 | CREATE TABLE INST, Here is a database schema( table schema); | Name the number of lost for against being 46It is not neccessary to use all the tables. |
SELECT score FROM table_17104539_12 WHERE record = "16-17" | CREATE TABLE INST, Here is a database schema( table schema); | What was the score of the game played when the team was 16-17?It is not neccessary to use all the tables. |
SELECT COUNT Season # FROM table WHERE Written by = David E. Kelley AND Series # = 7 | CREATE TABLE INST, Here is a database schema( table schema); | What seasons in series 7 did David E. Kelley write ?.It is not neccessary to use all the tables. |
SELECT Result FROM table WHERE Venue = singapore AND Date = september 8, 1996 | CREATE TABLE INST, Here is a database schema( table schema); | what is the result when the venue is singapore on september 8, 1996?.It is not neccessary to use all the tables. |
SELECT AVG Average relative annual growth (%) FROM table WHERE Rank = 3 AND Average absolute annual growth > 1,051,000 | CREATE TABLE INST, Here is a database schema( table schema); | What is the average relative annual growth of the country ranked 3 with an average absolute annual growth larger than 1,051,000?.It is not neccessary to use all the tables. |
SELECT teams FROM table_name_84 WHERE league = "regionalliga süd" | CREATE TABLE INST, Here is a database schema( table schema); | Which team had a league of regionalliga süd?It is not neccessary to use all the tables. |
SELECT score FROM table_name_90 WHERE competition = "league cup" AND season = "2007-08" | CREATE TABLE INST, Here is a database schema( table schema); | What was the score of the league cup in the 2007-08 season?It is not neccessary to use all the tables. |
SELECT SUM(bronze) FROM table_name_22 WHERE silver = 0 AND gold = 0 AND nation = "denmark" AND total > 1 | CREATE TABLE INST, Here is a database schema( table schema); | How many Bronzes that has a Silver of 0 and a Gold of 0 and a Nation of denmark and a Total larger than 1?It is not neccessary to use all the tables. |
SELECT crew_chief FROM table_name_36 WHERE team = "tristar motorsports" AND driver_s_ = "eric mcclure" | CREATE TABLE INST, Here is a database schema( table schema); | Who is Eric McClure's and Tristar Motorsports' crew chief?It is not neccessary to use all the tables. |
SELECT MIN(votes) FROM table_name_94 WHERE rank = "5th" AND riding = "victoria" | CREATE TABLE INST, Here is a database schema( table schema); | what is the lowest votes of the candidate ranked 5th and riding in victoria?It is not neccessary to use all the tables. |
SELECT back FROM table_name_88 WHERE supplier = "kooga" AND year = "2006-2008" | CREATE TABLE INST, Here is a database schema( table schema); | Which Back has a Supplier of Kooga and a Year of 2006-2008?It is not neccessary to use all the tables. |
SELECT film_title_used_in_nomination FROM table_name_81 WHERE actor_actress = "emma thompson" AND category = "best supporting actress" | CREATE TABLE INST, Here is a database schema( table schema); | What was the film title that emma thompson was the actress nominated for best supporting actress?It is not neccessary to use all the tables. |
SELECT Team FROM table WHERE Notes = ncaa champion | CREATE TABLE INST, Here is a database schema( table schema); | WHAT TEAM WAS AN NCAA CHAMPION?.It is not neccessary to use all the tables. |
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE prescriptions.formulary_drug_cd = "ERGO400T" | CREATE TABLE INST, Here is a database schema( table schema); | give me the number of patients whose drug code is ergo400t?It is not neccessary to use all the tables. |
SELECT AVG(demographic.days_stay) FROM demographic WHERE demographic.admission_location = "EMERGENCY ROOM ADMIT" | CREATE TABLE INST, Here is a database schema( table schema); | what is the average days of hospital stay of patients whose admission location is emergency room admit?It is not neccessary to use all the tables. |
SELECT "Club team" FROM table_46043 WHERE "Pick" > '139' | CREATE TABLE INST, Here is a database schema( table schema); | Which Club team has a Pick larger than 139?It is not neccessary to use all the tables. |
SELECT T2.customer_first_name, T1.customer_id FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id | CREATE TABLE INST, Here is a database schema( table schema); | Visualize a bar chart for what are the first names and ids for customers who have two or more accounts?It is not neccessary to use all the tables. |
SELECT Original air date FROM table WHERE Rank (week) = 21 | CREATE TABLE INST, Here is a database schema( table schema); | What is the original air date of the episode that had a week ranking of 21?.It is not neccessary to use all the tables. |
SELECT Office running for FROM table WHERE Candidate = Anthony Mussara | CREATE TABLE INST, Here is a database schema( table schema); | Name the office running for for anthony mussara.It is not neccessary to use all the tables. |
SELECT nationality FROM table_name_23 WHERE years_of_nba_experience_[a_] = 2 AND previous_team = "los angeles lakers" | CREATE TABLE INST, Here is a database schema( table schema); | What is the nationality of the player with 2 years of NBA experience for the previously played for the Los Angeles Lakers?It is not neccessary to use all the tables. |
SELECT name FROM table_20095300_1 WHERE number = 25 | CREATE TABLE INST, Here is a database schema( table schema); | What horse has the number 25?It is not neccessary to use all the tables. |
SELECT T1.duration, T1.file_size, T1.formats FROM files AS T1 JOIN song AS T2 ON T1.f_id = T2.f_id WHERE T2.genre_is = "pop" ORDER BY T2.song_name | CREATE TABLE INST, Here is a database schema( table schema); | What is the duration, file size, and song format for every pop song, ordered by title alphabetically?It is not neccessary to use all the tables. |
SELECT 2400 kWh/kWp•y FROM table WHERE 1800 kWh/kWp•y = 16.7 | CREATE TABLE INST, Here is a database schema( table schema); | At the rate where 1800 kwh/kwp•y is 16.7, what is the value of 2400 kwh/kwp•y?.It is not neccessary to use all the tables. |
SELECT sprint_classification FROM table_25055040_22 WHERE mountains_classification = "Ryan Anderson" AND general_classification = "Michael Rogers" | CREATE TABLE INST, Here is a database schema( table schema); | When Ryan Anderson won the mountains classification and Michael Rogers won the general classification who won the sprint classification?It is not neccessary to use all the tables. |
SELECT Fineness FROM table WHERE Year = 2008 AND Reverse = chinese cuju sport | CREATE TABLE INST, Here is a database schema( table schema); | What is the fineness of the 2008 chinese cuju sport Reverse?.It is not neccessary to use all the tables. |
SELECT Pete du Pont FROM table WHERE Pat Robertson = 16% | CREATE TABLE INST, Here is a database schema( table schema); | When Pat Robertson was at 16%, what did Pete du Pont have?.It is not neccessary to use all the tables. |
SELECT opponents FROM table_name_84 WHERE score = "2-1" AND competition = "pl" AND date = "december 22, 2006" | CREATE TABLE INST, Here is a database schema( table schema); | Score of 2-1 and a Competition of pl and a Date of december 22 2006 had what opponents?It is not neccessary to use all the tables. |
SELECT MAX(students) FROM table_1414743_1 WHERE pupil_teacher_ratio = "20.8" | CREATE TABLE INST, Here is a database schema( table schema); | What is the highest number of students with a teacher:student ratio of 20.8?It is not neccessary to use all the tables. |
SELECT MAX Lane FROM table WHERE Name = johan wissman AND React < 0.242 | CREATE TABLE INST, Here is a database schema( table schema); | what is the highest lane number for johan wissman when the react is less than 0.242?.It is not neccessary to use all the tables. |
SELECT COUNT(DISTINCT p.Id) AS "Posts Edited" FROM PostHistory AS h, Posts AS p WHERE h.UserId = @UserId AND p.Id = h.PostId AND p.OwnerUserId != @UserId AND h.PostHistoryTypeId IN (4, 5, 24) | CREATE TABLE INST, Here is a database schema( table schema); | How many posts have I edited (for badges)?. This script counts the number of others' posts on which you have edited either the title or body.It is not neccessary to use all the tables. |
SELECT DISTINCT course.department, course.name, course.number FROM course INNER JOIN program_course ON program_course.course_id = course.course_id WHERE course.credits = 17 AND program_course.category LIKE 'ULCS' | CREATE TABLE INST, Here is a database schema( table schema); | Which of the upper level classes get you 17 credits ?It is not neccessary to use all the tables. |
SELECT 1 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', diagnoses_icd.charttime)) FROM diagnoses_icd WHERE diagnoses_icd.icd9_code = (SELECT d_icd_diagnoses.icd9_code FROM d_icd_diagnoses WHERE d_icd_diagnoses.short_title = 'chr blood loss anemia') AND diagnoses_icd.hadm_id IN (SELECT admissions.hadm_id FROM admiss... | CREATE TABLE INST, Here is a database schema( table schema); | how many days since the last chr blood loss anemia diagnosis of patient 93078 in their current hospital visit?It is not neccessary to use all the tables. |
SELECT "Opponent" FROM table_51049 WHERE "Week" = '14' | CREATE TABLE INST, Here is a database schema( table schema); | Who was the opponent in week 14?It is not neccessary to use all the tables. |
SELECT AVG(losses) FROM table_name_43 WHERE against > 1255 AND wins = 0 AND draws < 0 | CREATE TABLE INST, Here is a database schema( table schema); | What is the losses average when the against is greater than 1255 and wins is 0 and the draws less than 0?It is not neccessary to use all the tables. |
SELECT event FROM table_name_1 WHERE time = "2:08" | CREATE TABLE INST, Here is a database schema( table schema); | What is the event with a 2:08 time?It is not neccessary to use all the tables. |
SELECT State FROM table WHERE Highest point = Mount Katahdin | CREATE TABLE INST, Here is a database schema( table schema); | what's the state with highest point being mount katahdin.It is not neccessary to use all the tables. |
SELECT "Representative" FROM table_15335 WHERE "Presentation of Credentials" = 'september 8, 2005' | CREATE TABLE INST, Here is a database schema( table schema); | Which Representative has a Presentation of Credentials on september 8, 2005?It is not neccessary to use all the tables. |
SELECT Player FROM table WHERE Position = forward AND School/Club Team = georgia tech | CREATE TABLE INST, Here is a database schema( table schema); | Which Player has a Position of forward, and a School/Club Team of georgia tech?.It is not neccessary to use all the tables. |
SELECT Single FROM table WHERE Artist = queen | CREATE TABLE INST, Here is a database schema( table schema); | what is the single of the queen.It is not neccessary to use all the tables. |
SELECT prescriptions.drug_type FROM prescriptions WHERE prescriptions.drug = "Potassium Phosphate" | CREATE TABLE INST, Here is a database schema( table schema); | find the drug type of potassium phosphate.It is not neccessary to use all the tables. |
SELECT Round FROM table WHERE Pick > 68 AND Player = joe patton | CREATE TABLE INST, Here is a database schema( table schema); | What round was Joe Patton selected with a pick over 68?.It is not neccessary to use all the tables. |
SELECT Title FROM table WHERE Release date = 1936-08-29 | CREATE TABLE INST, Here is a database schema( table schema); | What was released on 1936-08-29?.It is not neccessary to use all the tables. |
SELECT COUNT(*) AS number_of_userss FROM Users | CREATE TABLE INST, Here is a database schema( table schema); | How many users are in the database.It is not neccessary to use all the tables. |
SELECT SUM(game) FROM table_name_5 WHERE points < 10 AND october > 12 AND opponent = "@ washington capitals" | CREATE TABLE INST, Here is a database schema( table schema); | Which Game has Points smaller than 10 and an October larger than 12 and an Opponent of @ washington capitals?It is not neccessary to use all the tables. |
SELECT MAX Year FROM table WHERE Venue = aigburth | CREATE TABLE INST, Here is a database schema( table schema); | What year was in Aigburth?.It is not neccessary to use all the tables. |
SELECT tie_no FROM table_name_52 WHERE home_team = "portsmouth" | CREATE TABLE INST, Here is a database schema( table schema); | what is the tie number that has Portsmouth Home teamIt is not neccessary to use all the tables. |
SELECT Normal environment of occurrence (in native words) FROM table WHERE Proto-Germanic origin = /ai/ | CREATE TABLE INST, Here is a database schema( table schema); | what is the normal environment of occurrence that has a Proto-Germanic origin /ai/.It is not neccessary to use all the tables. |
SELECT President FROM table WHERE Elected = 2010 | CREATE TABLE INST, Here is a database schema( table schema); | What president was elected in 2010?.It is not neccessary to use all the tables. |
SELECT Opponent FROM table WHERE Date = april 14 | CREATE TABLE INST, Here is a database schema( table schema); | Which opponent was present on April 14?.It is not neccessary to use all the tables. |
SELECT Event FROM table WHERE Medal = bronze AND Games = 1988 seoul | CREATE TABLE INST, Here is a database schema( table schema); | What event did Pakistan get the bronze medal at the 1988 Seoul Games?.It is not neccessary to use all the tables. |
SELECT C-SPAN 2009 FROM table WHERE Times 2008** = 08 | CREATE TABLE INST, Here is a database schema( table schema); | what is c-span 2009 when times 2008** is 08?.It is not neccessary to use all the tables. |
SELECT MIN Selection FROM table WHERE Player = ron barnett | CREATE TABLE INST, Here is a database schema( table schema); | Name the least selection for ron barnett.It is not neccessary to use all the tables. |
SELECT COUNT(position) FROM table_name_51 WHERE played < 46 | CREATE TABLE INST, Here is a database schema( table schema); | What is the total number of Position when Played is less than 46?It is not neccessary to use all the tables. |
SELECT SUM(attendance) FROM table_name_8 WHERE opponent = "florida panthers" | CREATE TABLE INST, Here is a database schema( table schema); | What is the Attendance of the game against the Florida Panthers?It is not neccessary to use all the tables. |
SELECT Accolade FROM table WHERE Publication = under the radar | CREATE TABLE INST, Here is a database schema( table schema); | Which Accolade had a publication of Under the Radar?.It is not neccessary to use all the tables. |
SELECT "Attendance" FROM table_10609 WHERE "Week" = '12' | CREATE TABLE INST, Here is a database schema( table schema); | What was the attendance on week 12?It is not neccessary to use all the tables. |
SELECT "Date" FROM table_5902 WHERE "Score" = '0–3' AND "Set 2" = '16–25' | CREATE TABLE INST, Here is a database schema( table schema); | Which Date has a Score of 0 3, and a Set 2 of 16 25?It is not neccessary to use all the tables. |
SELECT entrant FROM table_name_42 WHERE engine = "honda v6" AND chassis = "lotus 99t" | CREATE TABLE INST, Here is a database schema( table schema); | Which entrant has a Honda V6 engine and a Lotus 99t chassis?It is not neccessary to use all the tables. |
SELECT treatment.treatmentname FROM treatment WHERE treatment.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '022-115938')) AND DATETIME(treatment.treatmenttime) <= DATETIME(C... | CREATE TABLE INST, Here is a database schema( table schema); | what procedure was performed on patient 022-115938 for the last time until 2 years ago?It is not neccessary to use all the tables. |
SELECT Date FROM table WHERE Visitor = st. louis | CREATE TABLE INST, Here is a database schema( table schema); | What day was St. Louis the visitor?.It is not neccessary to use all the tables. |
SELECT Name FROM table WHERE Type = hydro AND Capacity ( MW ) < 478 AND Rank > 85 AND Province = quebec | CREATE TABLE INST, Here is a database schema( table schema); | what is the name when the type is hydro, the capacity (mw) is less than 478, the rank is more than 85 and the province is quebec?.It is not neccessary to use all the tables. |
SELECT sat_29_aug FROM table_26986076_5 WHERE tues_24_aug = "21' 10.25 106.930mph" | CREATE TABLE INST, Here is a database schema( table schema); | When 21' 10.25 106.930mph is Tuesday August 24th what is Saturday August 29th?It is not neccessary to use all the tables. |
SELECT Record FROM table WHERE Date = December 8 | CREATE TABLE INST, Here is a database schema( table schema); | Name the record for december 8.It is not neccessary to use all the tables. |
SELECT company, main_industry FROM company WHERE headquarters <> 'USA' | CREATE TABLE INST, Here is a database schema( table schema); | Show the company name and the main industry for all companies whose headquarters are not from USA.It is not neccessary to use all the tables. |
SELECT General classification FROM table WHERE Winner = guido bontempi AND Stage = 6 | CREATE TABLE INST, Here is a database schema( table schema); | What is guido bontempi's general classification when he has a stage of 6?.It is not neccessary to use all the tables. |
SELECT VoteTypeId, COUNT(*) FROM PostFeedback GROUP BY VoteTypeId | CREATE TABLE INST, Here is a database schema( table schema); | Counts of different votes from post feedback.It is not neccessary to use all the tables. |
SELECT Trance- n Himalaya Zone FROM table WHERE High hill zone = 25% | CREATE TABLE INST, Here is a database schema( table schema); | What is the percentage of the trance- n himalaya zone that corresponds with the high hill zone is 25%?.It is not neccessary to use all the tables. |
SELECT COUNT Played FROM table WHERE Points = 31-7 AND Position = 16 AND Goals for < 35 | CREATE TABLE INST, Here is a database schema( table schema); | Name the total number of played when points of is 31-7, position is 16 and goals for is less than 35.It is not neccessary to use all the tables. |
SELECT date FROM table_name_36 WHERE points < 85 AND game__number = 74 | CREATE TABLE INST, Here is a database schema( table schema); | Which Date has Points smaller than 85 and a Game # of 74?It is not neccessary to use all the tables. |
SELECT COUNT Artist FROM table WHERE Panel Points = 5 | CREATE TABLE INST, Here is a database schema( table schema); | Name the number of artists for panel points being 5.It is not neccessary to use all the tables. |
SELECT Player FROM table WHERE Hometown = wichita, ks | CREATE TABLE INST, Here is a database schema( table schema); | What Player comes from the Hometown of Wichita, KS?.It is not neccessary to use all the tables. |
SELECT Set 3 FROM table WHERE Time = 15:04 | CREATE TABLE INST, Here is a database schema( table schema); | What is the score for set 3 with a time at 15:04?.It is not neccessary to use all the tables. |
SELECT Date FROM table WHERE Race Leader = hermann buse ( ger ) AND Stage = 5 | CREATE TABLE INST, Here is a database schema( table schema); | Which date has a Race Leader of hermann buse ( ger ), and a Stage of 5?.It is not neccessary to use all the tables. |
SELECT date_of_appointment FROM table_11190568_7 WHERE team = "Galway" | CREATE TABLE INST, Here is a database schema( table schema); | When are team Galway's dates of appointment?It is not neccessary to use all the tables. |
SELECT League position FROM table WHERE Attendance > 41,288 AND Opponents = luton town | CREATE TABLE INST, Here is a database schema( table schema); | What is league position when manchester played against luton town when 41,288 fans attended?.It is not neccessary to use all the tables. |
SELECT Rounds FROM table WHERE Driver = elio de angelis | CREATE TABLE INST, Here is a database schema( table schema); | What rounds does elio de angelis drive?.It is not neccessary to use all the tables. |
SELECT Years FROM table WHERE Duration = 52 years AND Actor = eileen derbyshire | CREATE TABLE INST, Here is a database schema( table schema); | What are the years for Eileen Derbyshire with a duration of 52 years?.It is not neccessary to use all the tables. |
SELECT Weight FROM table WHERE Market name = Xperia U | CREATE TABLE INST, Here is a database schema( table schema); | If the market name is Xperia U, what is the weight?.It is not neccessary to use all the tables. |
SELECT goals FROM table_name_16 WHERE venue = "sydney" | CREATE TABLE INST, Here is a database schema( table schema); | What were the goals at Sydney?It is not neccessary to use all the tables. |
SELECT tv_time FROM table_name_86 WHERE attendance = "60,894" | CREATE TABLE INST, Here is a database schema( table schema); | Tell me the tv time for attendance of 60894It is not neccessary to use all the tables. |
SELECT birth FROM table_name_22 WHERE ceased_to_be_duke_of_girona = "21 november 1582" | CREATE TABLE INST, Here is a database schema( table schema); | WHAT IS THE BIRTH DATE THAT HAS Ceased to be Duke of Girona OF 21 NOVEMBER 1582?It is not neccessary to use all the tables. |
SELECT AVG(heat) FROM table_name_38 WHERE name = "anjelika solovieva" | CREATE TABLE INST, Here is a database schema( table schema); | What is the average Heat for anjelika solovieva?It is not neccessary to use all the tables. |
SELECT Island FROM table WHERE Peak = Mount Wondiwoi | CREATE TABLE INST, Here is a database schema( table schema); | When mount wondiwoi is the peak what is the island?.It is not neccessary to use all the tables. |
SELECT LNER 1946 No. FROM table WHERE Year = 1892 AND LNER No. = 7347–7356 | CREATE TABLE INST, Here is a database schema( table schema); | Which LNER 1946 number is from 1892 and has an LNER number of 7347–7356?.It is not neccessary to use all the tables. |
SELECT COUNT(*), account_id FROM Financial_transactions | CREATE TABLE INST, Here is a database schema( table schema); | How many transaction does each account have? Show the number and account id.It is not neccessary to use all the tables. |
SELECT COUNT Played FROM table WHERE Points > 14 AND Drawn > 1 | CREATE TABLE INST, Here is a database schema( table schema); | What is the total number of played values for teams with more than 14 points and more than 1 draw?.It is not neccessary to use all the tables. |
SELECT SUM(rank) FROM table_name_10 WHERE country = "bulgaria" | CREATE TABLE INST, Here is a database schema( table schema); | What is the sum of the ranks for bulgaria?It is not neccessary to use all the tables. |
SELECT school FROM table_name_60 WHERE location = "rochester" | CREATE TABLE INST, Here is a database schema( table schema); | what is the school when the location is rochester?It 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.