id
int64 0
1.53k
| query
stringlengths 23
215
| sql
stringlengths 29
1.45k
| difficulty
stringclasses 3
values |
---|---|---|---|
794 | Which hero was the fastest? | SELECT T1.superhero_name FROM superhero AS T1 INNER JOIN hero_attribute AS T2 ON T1.id = T2.hero_id INNER JOIN attribute AS T3 ON T2.attribute_id = T3.id WHERE T3.attribute_name = 'Speed' ORDER BY T2.attribute_value DESC LIMIT 1 | moderate |
34 | What is the free rate for students between the ages of 5 and 17 at the school run by Kacey Gibson? | SELECT CAST(T2.`Free Meal Count (Ages 5-17)` AS REAL) / T2.`Enrollment (Ages 5-17)` FROM schools AS T1 INNER JOIN frpm AS T2 ON T1.CDSCode = T2.CDSCode WHERE T1.AdmFName1 = 'Kacey' AND T1.AdmLName1 = 'Gibson' | moderate |
1,123 | What is the name of players with the highest potential? | SELECT DISTINCT t1.player_name FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id ORDER BY t2.potential DESC LIMIT 1 | simple |
500 | Tell the Japanese name of the set which card "Fellwar Stone" is in it. | SELECT T2.translation FROM cards AS T1 INNER JOIN set_translations AS T2 ON T2.setCode = T1.setCode WHERE T1.name = 'Fellwar Stone' AND T2.language = 'Japanese' AND T2.translation IS NOT NULL | moderate |
497 | List the expansion type of the set "Huitième édition". | SELECT type FROM sets WHERE code IN ( SELECT setCode FROM set_translations WHERE translation = 'Huitième édition' ) | simple |
1,170 | How many patients hadn't undergone a medical examination until at least a year following their initial hospital visit? | SELECT COUNT(DISTINCT T1.ID) FROM Patient AS T1 INNER JOIN Examination AS T2 ON T1.ID = T2.ID WHERE T1.Admission = '+' AND STRFTIME('%Y', T2.`Examination Date`) - STRFTIME('%Y', T1.`First Date`) >= 1 | moderate |
1,245 | For the examinations done after 1997/1/1, how many of them have the result of an inactivated partial prothrom bin time? | SELECT COUNT(T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.Date > '1997-01-01' AND T2.APTT >= 45 | moderate |
979 | What race number has the most finishers? | SELECT raceId FROM results GROUP BY raceId ORDER BY COUNT(time IS NOT NULL) DESC LIMIT 1 | simple |
80 | What is the school type of the school with the highest latitude? Indicate the name of the school as well as the latitude coordinates. | SELECT T1.`School Type`, T1.`School Name`, T2.Latitude FROM frpm AS T1 INNER JOIN schools AS T2 ON T1.CDSCode = T2.CDSCode ORDER BY T2.Latitude DESC LIMIT 1 | simple |
89 | How many accounts who choose issuance after transaction are staying in East Bohemia region? | SELECT COUNT(T2.account_id) FROM district AS T1 INNER JOIN account AS T2 ON T1.district_id = T2.district_id WHERE T1.A3 = 'east Bohemia' AND T2.frequency = 'POPLATEK PO OBRATU' | moderate |
782 | List the heroes' names whose eyes and hair colours are both black. | SELECT T1.superhero_name FROM superhero AS T1 INNER JOIN colour AS T2 ON T1.eye_colour_id = T2.id AND T1.hair_colour_id = T2.id WHERE T2.colour = 'Black' | moderate |
86 | What is the administrator's last name that oversees the school with Charter number 40? Indicate the district, the county where the school is situated, and the name of the school. | SELECT AdmLName1, District, County, School FROM schools WHERE CharterNum = '0040' | simple |
511 | What is the most common visual frame effects among the incredibly powerful foils? | SELECT frameEffects FROM cards WHERE cardKingdomFoilId IS NOT NULL AND cardKingdomId IS NOT NULL GROUP BY frameEffects ORDER BY COUNT(frameEffects) DESC LIMIT 1 | moderate |
1,025 | Give the name of the league had the most goals in the 2016 season? | SELECT t2.name FROM Match AS t1 INNER JOIN League AS t2 ON t1.league_id = t2.id WHERE t1.season = '2015/2016' GROUP BY t2.name ORDER BY SUM(t1.home_team_goal + t1.away_team_goal) DESC LIMIT 1 | moderate |
1,099 | Which foot is preferred by Abdou Diallo? | SELECT DISTINCT t2.preferred_foot FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t1.player_name = 'Abdou Diallo' | simple |
486 | What is the percentage of the cards with a converted mana cost of 7 in the set Coldsnap? | SELECT CAST(SUM(CASE WHEN T1.convertedManaCost = 7 THEN 1 ELSE 0 END) AS REAL) * 100 / COUNT(T1.id) FROM cards AS T1 INNER JOIN sets AS T2 ON T2.code = T1.setCode WHERE T2.name = 'Coldsnap' | moderate |
707 | Among the posts with views ranging from 100 to 150, what is the comment with the highest score? | SELECT Text FROM comments WHERE PostId IN ( SELECT Id FROM posts WHERE ViewCount BETWEEN 100 AND 150 ) ORDER BY Score DESC LIMIT 1 | moderate |
850 | Please give the name of the race held on the circuits in Germany. | SELECT DISTINCT T2.name FROM circuits AS T1 INNER JOIN races AS T2 ON T2.circuitID = T1.circuitId WHERE T1.country = 'Germany' | simple |
1,353 | What's Christof Nielson's zip code type? | SELECT T2.type FROM member AS T1 INNER JOIN zip_code AS T2 ON T1.zip = T2.zip_code WHERE T1.first_name = 'Christof' AND T1.last_name = 'Nielson' | simple |
453 | What's the unconverted mana cost of the card "Ancestor's Chosen"? | SELECT DISTINCT manaCost FROM cards WHERE name = 'Ancestor''s Chosen' | simple |
1,346 | Tell the phone number of "Carlo Jacobs". | SELECT phone FROM member WHERE first_name = 'Carlo' AND last_name = 'Jacobs' | simple |
876 | For the race happened in 2015/11/29, how many drivers did not finish the game? | SELECT COUNT(T2.driverId) FROM races AS T1 INNER JOIN results AS T2 ON T2.raceId = T1.raceId WHERE T1.date = '2015-11-29' AND T2.time IS NULL | simple |
928 | Which driver ranked the first in the Canadian Grand Prix in 2007? Please give his reference name. | SELECT T3.forename, T3.surname, T3.driverRef FROM races AS T1 INNER JOIN results AS T2 ON T2.raceId = T1.raceId INNER JOIN drivers AS T3 ON T3.driverId = T2.driverId WHERE T1.name = 'Canadian Grand Prix' AND T2.rank = 1 AND T1.year = 2007 | moderate |
110 | What is the disposition id of the client who made 5100 USD transaction in 1998/9/2? | SELECT T1.disp_id FROM disp AS T1 INNER JOIN account AS T2 ON T1.account_id = T2.account_id INNER JOIN trans AS T3 ON T2.account_id = T3.account_id WHERE T3.date='1997-08-20' AND T3.amount = 5100 | simple |
671 | What is the display name of the user who acquired the first Autobiographer badge? | SELECT T1.DisplayName FROM users AS T1 INNER JOIN badges AS T2 ON T1.Id = T2.UserId WHERE T2.`Name` = 'Autobiographer' ORDER BY T2.Date LIMIT 1 | simple |
780 | List the powers of Hunter Zolomon. | SELECT T3.power_name FROM superhero AS T1 INNER JOIN hero_power AS T2 ON T1.id = T2.hero_id INNER JOIN superpower AS T3 ON T2.power_id = T3.id WHERE T1.full_name = 'Hunter Zolomon' | simple |
891 | Name all drivers in the 2010 Singapore Grand Prix order by their position stands. | SELECT T3.forename, T3.surname FROM races AS T1 INNER JOIN driverStandings AS T2 ON T2.raceId = T1.raceId INNER JOIN drivers AS T3 ON T3.driverId = T2.driverId WHERE T1.name = 'Singapore Grand Prix' AND T1.year = 2010 ORDER BY T2.position ASC | simple |
65 | What is the ratio in percentage of Santa Clara County schools that are locally funded compared to all other types of charter school funding? | SELECT CAST(SUM(CASE WHEN FundingType = 'Locally funded' THEN 1 ELSE 0 END) AS REAL) * 100 / SUM(CASE WHEN FundingType != 'Locally funded' THEN 1 ELSE 0 END) FROM schools WHERE County = 'Santa Clara' AND Charter = 1 | moderate |
320 | What is the type of the bond which is presenting the connection between two atoms TR000_1 and TR000_2? | SELECT T1.bond_type FROM bond AS T1 INNER JOIN connected AS T2 ON T1.bond_id = T2.bond_id WHERE T2.atom_id = 'TR000_1' AND T2.atom_id2 = 'TR000_2' | moderate |
947 | How many British drivers were born after 1980? | SELECT COUNT(driverId) FROM drivers WHERE nationality = 'British' AND STRFTIME('%Y', dob) > '1980' | simple |
265 | List down the molecule id for non carcinogenic molecules. | SELECT T.molecule_id FROM molecule AS T WHERE T.label = '-' | simple |
246 | List the bond type and the bond ID of the atom 45. | SELECT T1.bond_type, T1.bond_id FROM bond AS T1 INNER JOIN connected AS T2 ON T1.bond_id = T2.bond_id WHERE SUBSTR(T2.atom_id, 7, 2) = '45' | moderate |
155 | How many percent of 'Gold' cards were issued prior to 1998? | SELECT CAST(SUM(type = 'gold' AND STRFTIME('%Y', issued) < '1998') AS REAL) * 100 / COUNT(card_id) FROM card | simple |
1,431 | List the last name of the members of the club that attended the women's soccer event. | SELECT T3.last_name FROM attendance AS T1 INNER JOIN event AS T2 ON T2.event_id = T1.link_to_event INNER JOIN member AS T3 ON T1.link_to_member = T3.member_id WHERE T2.event_name = 'Women''s Soccer' AND T3.position = 'Member' | moderate |
421 | Please list top three unknown power cards that have promotional types for arena league in alphabetical order. | SELECT name FROM cards WHERE (power IS NULL OR power LIKE '%*%') AND promoTypes = 'arenaleague' ORDER BY name LIMIT 3 | simple |
127 | List the account IDs with monthly issuance of statements. | SELECT account_id FROM account WHERE Frequency = 'POPLATEK MESICNE' | simple |
1,528 | What is the percentage of "premium" against the overall segment in Country = "SVK"? | SELECT CAST(SUM(IIF(Country = 'SVK' AND Segment = 'Premium', 1, 0)) AS FLOAT) * 100 / SUM(IIF(Country = 'SVK', 1, 0)) FROM gasstations | simple |
280 | Enumerate the bond ID of triple bond type molecules and tell me if they are carcinogenic or not. | SELECT DISTINCT T1.bond_id, T2.label FROM bond AS T1 INNER JOIN molecule AS T2 ON T1.molecule_id = T2.molecule_id WHERE T1.bond_type = '#' | moderate |
1,479 | Which year recorded the most consumption of gas paid in CZK? | SELECT SUBSTR(T2.Date, 1, 4) FROM customers AS T1 INNER JOIN yearmonth AS T2 ON T1.CustomerID = T2.CustomerID WHERE T1.Currency = 'CZK' GROUP BY SUBSTR(T2.Date, 1, 4) ORDER BY SUM(T2.Consumption) DESC LIMIT 1 | moderate |
9 | Among the schools with the average score in Math over 560 in the SAT test, how many schools are directly charter-funded? | SELECT COUNT(T2.`School Code`) FROM satscores AS T1 INNER JOIN frpm AS T2 ON T1.cds = T2.CDSCode WHERE T1.AvgScrMath > 560 AND T2.`Charter Funding Type` = 'Directly funded' | simple |
501 | Which card name in the set 'Journey into Nyx Hero's Path' has the highest converted mana cost. | SELECT T1.name FROM cards AS T1 INNER JOIN sets AS T2 ON T2.code = T1.setCode WHERE T2.name = 'Journey into Nyx Hero''s Path' ORDER BY T1.convertedManaCost DESC LIMIT 1 | moderate |
288 | Identify whether the molecule that contains atom TR001_1 is carcinogenic. | SELECT T2.label AS flag_carcinogenic FROM atom AS T1 INNER JOIN molecule AS T2 ON T1.molecule_id = T2.molecule_id WHERE T1.atom_id = 'TR001_1' | simple |
655 | Write down the related posts titles and link type IDs of the post "What are principal component scores?". | SELECT T3.Title, T2.LinkTypeId FROM posts AS T1 INNER JOIN postLinks AS T2 ON T1.Id = T2.PostId INNER JOIN posts AS T3 ON T2.RelatedPostId = T3.Id WHERE T1.Title = 'What are principal component scores?' | simple |
438 | Point out the language of set id "174"? | SELECT language FROM set_translations WHERE id = 174 | simple |
900 | List circuits in USA which hosted f1 races in 2006. State the name and location of circuit and the name of the race it hosted. | SELECT T1.name, T1.location, T2.name FROM circuits AS T1 INNER JOIN races AS T2 ON T2.circuitID = T1.circuitId WHERE T1.country = 'USA' AND T2.year = 2006 | simple |
1,235 | What are the patient's diagnosis for those who has lower red blood blood cell? State their ID and age. | SELECT DISTINCT T1.Diagnosis, T1.ID , STRFTIME('%Y', CURRENT_TIMESTAMP) -STRFTIME('%Y', T1.Birthday) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.RBC < 3.5 | moderate |
617 | What is the detailed content of the comment of the post which was created on 7/19/2010 7:37:33 PM? | SELECT T1.Text FROM comments AS T1 INNER JOIN posts AS T2 ON T1.PostId = T2.Id WHERE T1.CreationDate = '2010-07-19 19:37:33.0' | simple |
515 | When was the oldest mythic card released and what are its legal play formats? | SELECT T1.originalReleaseDate, T2.format FROM cards AS T1 INNER JOIN legalities AS T2 ON T1.uuid = T2.uuid WHERE T1.rarity = 'mythic' AND T1.originalReleaseDate IS NOT NULL AND T2.status = 'Legal' ORDER BY T1.originalReleaseDate LIMIT 1 | moderate |
1,414 | State the name of major that Phillip Cullen has joined. | SELECT T1.major_name FROM major AS T1 INNER JOIN member AS T2 ON T1.major_id = T2.link_to_major WHERE T2.first_name = 'Phillip' AND T2.last_name = 'Cullen' | simple |
154 | How many male clients in 'Hl.m. Praha' district? | SELECT COUNT(T1.client_id) FROM client AS T1 INNER JOIN district AS T2 ON T1.district_id = T2.district_id WHERE T1.gender = 'M' AND T2.A2 = 'Hl.m. Praha' | simple |
559 | Indicate the creation date of the maximum number of votes. | SELECT CreationDate FROM votes GROUP BY CreationDate ORDER BY COUNT(Id) DESC LIMIT 1 | simple |
1,116 | List down most tallest players' name. | SELECT player_name FROM (SELECT player_name, height, DENSE_RANK() OVER (ORDER BY height DESC) as rank FROM Player) WHERE rank = 1 | simple |
1,417 | List out the type of events which have remaining budget more than 30 USD. | SELECT T1.type FROM event AS T1 INNER JOIN budget AS T2 ON T1.event_id = T2.link_to_event WHERE T2.remaining > 30 | simple |
599 | What are the post history type IDs for post ID 3720 and how many unique users have commented on the post? | SELECT T1.PostHistoryTypeId, (SELECT COUNT(DISTINCT UserId) FROM comments WHERE PostId = 3720) AS NumberOfUsers FROM postHistory AS T1 WHERE T1.PostId = 3720 | simple |
189 | Name the account numbers of female clients who are oldest and have lowest average salary? | SELECT T3.account_id FROM client AS T1 INNER JOIN district AS T2 ON T1.district_id = T2.district_id INNER JOIN account AS T3 ON T2.district_id = T3.district_id INNER JOIN disp AS T4 ON T1.client_id = T4.client_id AND T4.account_id = T3.account_id WHERE T1.gender = 'F' ORDER BY T1.birth_date ASC, T2.A11 ASC LIMIT 1 | moderate |
1,483 | How much did customer 6 consume in total between August and November 2013? | SELECT SUM(Consumption) FROM yearmonth WHERE CustomerID = 6 AND Date BETWEEN '201308' AND '201311' | simple |
765 | How many heroes have stealth power? | SELECT COUNT(T1.hero_id) FROM hero_power AS T1 INNER JOIN superpower AS T2 ON T1.power_id = T2.id WHERE T2.power_name = 'Stealth' | simple |
883 | How many races were there in 2005? Name all the races in descending order. | SELECT name FROM races WHERE year = 2005 ORDER BY name DESC | simple |
1,007 | What was the longest time that Lewis Hamilton had spent at a pit stop? | SELECT T1.duration FROM pitStops AS T1 INNER JOIN drivers AS T2 on T1.driverId = T2.driverId WHERE T2.forename = 'Lewis' AND T2.surname = 'Hamilton' ORDER BY T1.duration DESC LIMIT 1 | simple |
1,505 | Among the customers who paid in euro, how many of them have a monthly consumption of over 1000? | SELECT COUNT(*) FROM yearmonth AS T1 INNER JOIN customers AS T2 ON T1.CustomerID = T2.CustomerID WHERE T2.Currency = 'EUR' AND T1.Consumption > 1000.00 | simple |
1,336 | What department offers the major that Pierce and Guidi took? | SELECT T2.department FROM member AS T1 INNER JOIN major AS T2 ON T1.link_to_major = T2.major_id WHERE T1.last_name = 'Pierce' OR T1.last_name = 'Guidi' | simple |
1,527 | Which gas station has the highest amount of revenue? | SELECT GasStationID FROM transactions_1k GROUP BY GasStationID ORDER BY SUM(Price) DESC LIMIT 1 | simple |
7 | What is the phone number of the school that has the highest number of test takers with an SAT score of over 1500? | SELECT T2.Phone FROM satscores AS T1 INNER JOIN schools AS T2 ON T1.cds = T2.CDSCode ORDER BY T1.NumGE1500 DESC LIMIT 1 | simple |
1,347 | Tell the hometown county for "Adela O'Gallagher". | SELECT T2.county FROM member AS T1 INNER JOIN zip_code AS T2 ON T1.zip = T2.zip_code WHERE T1.first_name = 'Adela' AND T1.last_name = 'O''Gallagher' | simple |
732 | Which publisher published the slowest superhero? | SELECT T2.publisher_name FROM superhero AS T1 INNER JOIN publisher AS T2 ON T1.publisher_id = T2.id INNER JOIN hero_attribute AS T3 ON T1.id = T3.hero_id INNER JOIN attribute AS T4 ON T3.attribute_id = T4.id WHERE T4.attribute_name = 'Speed' ORDER BY T3.attribute_value LIMIT 1 | moderate |
1,195 | What is the average blood albumin level for female patients with a PLT greater than 400 who have been diagnosed with SLE? | SELECT AVG(T2.ALB) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.PLT > 400 AND T1.Diagnosis = 'SLE' AND T1.SEX = 'F' | moderate |
403 | Calculate the percentage of cards in Spanish. List them by name. | SELECT ( SELECT CAST(SUM(CASE WHEN language = 'Spanish' THEN 1 ELSE 0 END) AS REAL) * 100 / COUNT(*) FROM foreign_data ), name FROM foreign_data WHERE language = 'Spanish' | simple |
375 | List down all the card IDs with converted mana cost of 0. | SELECT id FROM cards WHERE convertedManaCost = 0 | simple |
1,020 | Which player has the highest overall rating? Indicate the player's api id. | SELECT player_api_id FROM Player_Attributes ORDER BY overall_rating DESC LIMIT 1 | simple |
1,199 | How many patients who underwent testing in 1997 had protein levels outside the normal range? | SELECT COUNT(ID) FROM Laboratory WHERE (ALB <= 6.0 OR ALB >= 8.5) AND STRFTIME('%Y', Date) = '1997' | simple |
1,105 | How was Francesco Migliore's attacking work rate on 2015/5/1? | SELECT t2.attacking_work_rate FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t2.`date` LIKE '2015-05-01%' AND t1.player_name = 'Francesco Migliore' | moderate |
292 | Identify the atoms belong to the molecule with ID between TR010 to TR050 that contain the element carbon. | SELECT T.atom_id FROM atom AS T WHERE T.molecule_id BETWEEN 'TR010' AND 'TR050' AND T.element = 'c' | simple |
1,210 | What is the average index of the lactate dehydrogenase (LDH) for all patients with lactate dehydrogenase (LDH) within the normal range. | SELECT AVG(LDH) FROM Laboratory WHERE LDH < 500 | simple |
420 | How many cards are oversized, reprinted, and printed for promotions? | SELECT COUNT(id) FROM cards WHERE isOversized = 1 AND isReprint = 1 AND isPromo = 1 | simple |
1,131 | What is the average heights of Italy players? | SELECT CAST(SUM(T1.height) AS REAL) / COUNT(T1.id) FROM Player AS T1 INNER JOIN Match AS T2 ON T1.id = T2.id INNER JOIN Country AS T3 ON T2.country_id = T3.ID WHERE T3.NAME = 'Italy' | simple |
1,111 | State the chance creation passing class for "PEC Zwolle" on 2013/9/20. | SELECT t2.chanceCreationPassingClass FROM Team AS t1 INNER JOIN Team_Attributes AS t2 ON t1.team_api_id = t2.team_api_id WHERE t1.team_long_name = 'PEC Zwolle' AND SUBSTR(t2.`date`, 1, 10) = '2013-09-20' | moderate |
152 | What is the average number of crimes committed in 1995 in regions where the number exceeds 4000 and the region has accounts that are opened starting from the year 1997? | SELECT AVG(T1.A15) FROM district AS T1 INNER JOIN account AS T2 ON T1.district_id = T2.district_id WHERE STRFTIME('%Y', T2.date) >= '1997' AND T1.A15 > 4000 | moderate |
583 | What is the total score of the posts edited by Yevgeny and include the user's website URL. | SELECT SUM(T1.Score), T2.WebsiteUrl FROM posts AS T1 INNER JOIN users AS T2 ON T1.LastEditorUserId = T2.Id WHERE T2.DisplayName = 'Yevgeny' GROUP BY T2.WebsiteUrl | simple |
1,163 | What was the age of the youngest patient when they initially arrived at the hospital? | SELECT MIN(STRFTIME('%Y', `First Date`) - STRFTIME('%Y', Birthday)) FROM Patient | simple |
1,110 | Tell the build Up play passing class for "FC Lorient" on 2010/2/22. | SELECT t2.buildUpPlayPassingClass FROM Team AS t1 INNER JOIN Team_Attributes AS t2 ON t1.team_api_id = t2.team_api_id WHERE t1.team_long_name = 'FC Lorient' AND t2.`date` LIKE '2010-02-22%' | moderate |
1,096 | Calculate the average overall rating of Pietro Marino. | SELECT CAST(SUM(t2.overall_rating) AS REAL) / COUNT(t2.id) FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t1.player_name = 'Pietro Marino' | moderate |
1,461 | List the last names of students under the Elementary Education major and include their phone numbers. | SELECT T1.last_name, T1.phone FROM member AS T1 INNER JOIN major AS T2 ON T2.major_id = T1.link_to_major WHERE T2.major_name = 'Elementary Education' | simple |
491 | What's the magic card market name for the set which was released on 2017/6/9? | SELECT mcmName FROM sets WHERE releaseDate = '2017-06-09' | simple |
590 | Which user ID has the lowest view? | SELECT Id FROM users WHERE Views = ( SELECT MIN(Views) FROM users ) | simple |
1,159 | For patient with albumin level lower than 3.5, list their ID, sex and diagnosis. | SELECT DISTINCT T1.ID, T1.SEX, T1.Diagnosis FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.ALB < 3.5 | simple |
251 | What is the least common element of all carcinogenic molecules? | SELECT T.element FROM ( SELECT T2.element, COUNT(DISTINCT T2.molecule_id) FROM molecule AS T1 INNER JOIN atom AS T2 ON T1.molecule_id = T2.molecule_id WHERE T1.label = '+' GROUP BY T2.element ORDER BY COUNT(DISTINCT T2.molecule_id) LIMIT 1 ) t | moderate |
1,467 | Calculate the total amount spent on speaker gifts and list the name of the event they were spent on. | SELECT SUM(T1.spent), T2.event_name FROM budget AS T1 INNER JOIN event AS T2 ON T1.link_to_event = T2.event_id WHERE T1.category = 'Speaker Gifts' GROUP BY T2.event_name | simple |
254 | What percentage of bonds have the most common combination of atoms' elements? | SELECT CAST((SELECT COUNT(T1.atom_id) FROM connected AS T1 INNER JOIN bond AS T2 ON T1.bond_id = T2.bond_id GROUP BY T2.bond_type ORDER BY COUNT(T2.bond_id) DESC LIMIT 1 ) AS REAL) * 100 / ( SELECT COUNT(atom_id) FROM connected ) | moderate |
1,340 | Calculate the difference of the total amount spent in all events by the Student_Club in year 2019 and 2020. | SELECT SUM(CASE WHEN SUBSTR(T1.event_date, 1, 4) = '2019' THEN T2.spent ELSE 0 END) - SUM(CASE WHEN SUBSTR(T1.event_date, 1, 4) = '2020' THEN T2.spent ELSE 0 END) AS num FROM event AS T1 INNER JOIN budget AS T2 ON T1.event_id = T2.link_to_event | moderate |
234 | How many bonds which involved atom 12 does molecule TR009 have? | SELECT COUNT(T2.bond_id) FROM bond AS T1 INNER JOIN connected AS T2 ON T1.bond_id = T2.bond_id WHERE T1.molecule_id = 'TR009' AND T2.atom_id = T1.molecule_id || '_1' AND T2.atom_id2 = T1.molecule_id || '_2' | moderate |
82 | What is the grade span offered in the school with the highest longitude? | SELECT GSoffered FROM schools ORDER BY ABS(longitude) DESC LIMIT 1 | simple |
158 | What is the district Id of the account that placed the order with the id 33333? | SELECT T3.district_id FROM `order` AS T1 INNER JOIN account AS T2 ON T1.account_id = T2.account_id INNER JOIN district AS T3 ON T2.district_id = T3.district_id WHERE T1.order_id = 33333 | simple |
857 | Give the coordinate position for Abu Dhabi Grand Prix. | SELECT DISTINCT T1.lat, T1.lng FROM circuits AS T1 INNER JOIN races AS T2 ON T2.circuitID = T1.circuitId WHERE T2.name = 'Abu Dhabi Grand Prix' | simple |
736 | Who is the dumbest superhero? | SELECT T1.superhero_name FROM superhero AS T1 INNER JOIN hero_attribute AS T2 ON T1.id = T2.hero_id INNER JOIN attribute AS T3 ON T2.attribute_id = T3.id WHERE T3.attribute_name = 'Intelligence' ORDER BY T2.attribute_value LIMIT 1 | moderate |
1,228 | Provide list of patients and their diagnosis with triglyceride (TG) index greater than 100 of the normal range? | SELECT T1.ID, T1.Diagnosis FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.TG > 300 | simple |
1,412 | What kind of expenses incurred by members who have X-Large in size of tee shirt? | SELECT T2.expense_description FROM member AS T1 INNER JOIN expense AS T2 ON T1.member_id = T2.link_to_member WHERE T1.t_shirt_size = 'X-Large' | simple |
1,152 | What is the ratio of outpatient to inpatient followed up treatment among all the 'SLE' diagnosed patient? | SELECT SUM(CASE WHEN Admission = '+' THEN 1.0 ELSE 0 END) / SUM(CASE WHEN Admission = '-' THEN 1 ELSE 0 END) FROM Patient WHERE Diagnosis = 'SLE' | moderate |
142 | Which accounts placed orders for household payment in Pisek? | SELECT DISTINCT T2.account_id FROM trans AS T1 INNER JOIN account AS T2 ON T1.account_id = T2.account_id INNER JOIN district AS T3 ON T2.district_id = T3.district_id WHERE T1.k_symbol = 'SIPO' AND T3.A2 = 'Pisek' | simple |
1,135 | Please provide top five football players' IDs who are among the lowest potential players and prefer to use the right foot when attacking. | SELECT id FROM Player_Attributes WHERE preferred_foot = 'right' ORDER BY potential DESC LIMIT 5 | moderate |
457 | Please list the websites where I can purchase the cards that have the promotional type of "bundle". | SELECT DISTINCT purchaseUrls FROM cards WHERE promoTypes = 'bundle' | simple |
Subsets and Splits