id
int64 0
1.53k
| query
stringlengths 23
215
| sql
stringlengths 29
1.45k
| difficulty
stringclasses 3
values |
---|---|---|---|
915 |
Which country is the oldest driver from?
|
SELECT nationality FROM drivers WHERE dob IS NOT NULL ORDER BY dob ASC LIMIT 1
|
simple
|
527 |
What are the rulings for the card named and designed by Kev Walker? List them in descending order of dates.
|
SELECT T2.text FROM cards AS T1 INNER JOIN rulings AS T2 ON T2.uuid = T1.uuid WHERE T1.artist = 'Kev Walker' ORDER BY T2.date DESC
|
moderate
|
1,073 |
How many matches were held in the league Germany 1. Bundesliga
from August to October 2008?
|
SELECT COUNT(t2.id) FROM League AS t1 INNER JOIN Match AS t2 ON t1.id = t2.league_id WHERE t1.name = 'Germany 1. Bundesliga' AND SUBSTR(t2.`date`, 1, 7) BETWEEN '2008-08' AND '2008-10'
|
moderate
|
716 |
Among the comments with scores between 5 to 10, what is the percentage of the users with 0 up votes?
|
SELECT CAST(SUM(IIF(T1.UpVotes = 0, 1, 0)) AS REAL) * 100/ COUNT(T1.Id) AS per FROM users AS T1 INNER JOIN comments AS T2 ON T1.Id = T2.UserId WHERE T2.Score BETWEEN 5 AND 10
|
moderate
|
448 |
Name the foreign name of the card that has abzan watermark? List out the type of this card.
|
SELECT DISTINCT T1.name, T1.type FROM cards AS T1 INNER JOIN foreign_data AS T2 ON T2.uuid = T1.uuid WHERE T1.watermark = 'abzan'
|
simple
|
569 |
Give the number of votes for the post about data visualization.
|
SELECT COUNT(T1.Id) FROM posts AS T1 INNER JOIN votes AS T2 ON T1.Id = T2.PostId WHERE T1.Title LIKE '%data visualization%'
|
simple
|
365 |
What is the type of card "Benalish Knight"?
|
SELECT DISTINCT T1.type FROM cards AS T1 INNER JOIN foreign_data AS T2 ON T1.uuid = T2.uuid WHERE T1.name = 'Benalish Knight'
|
simple
|
19 |
What is the phone number of the school that has the highest average score in Math?
|
SELECT T1.Phone FROM schools AS T1 INNER JOIN satscores AS T2 ON T1.CDSCode = T2.cds ORDER BY T2.AvgScrMath DESC LIMIT 1
|
simple
|
751 |
List down at least five superpowers of male superheroes.
|
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 T3.id = T2.power_id INNER JOIN gender AS T4 ON T4.id = T1.gender_id WHERE T4.gender = 'Male' LIMIT 5
|
moderate
|
37 |
What is the complete address of the school with the lowest excellence rate? Indicate the Street, City, Zip and State.
|
SELECT T2.Street, T2.City, T2.State, T2.Zip FROM satscores AS T1 INNER JOIN schools AS T2 ON T1.cds = T2.CDSCode ORDER BY CAST(T1.NumGE1500 AS REAL) / T1.NumTstTakr ASC LIMIT 1
|
moderate
|
989 |
Who is the champion of the Canadian Grand Prix in 2008? Indicate his finish time.
|
SELECT T1.time FROM results AS T1 INNER JOIN races AS T2 ON T1.raceId = T2.raceId WHERE T2.name = 'Canadian Grand Prix' AND T2.year = 2008 AND T1.time LIKE '_:%:__.___'
|
moderate
|
909 |
Among all European Grand Prix races, what is the percentage of the races were hosted in Germany?
|
SELECT CAST(COUNT(CASE WHEN T1.country = 'Germany' THEN T2.circuitID END) AS REAL) * 100 / COUNT(T2.circuitId) FROM circuits AS T1 INNER JOIN races AS T2 ON T2.circuitID = T1.circuitId WHERE T2.name = 'European Grand Prix'
|
moderate
|
1,524 |
What's the nationality of the customer who spent 548.4 in 2012/8/24?
|
SELECT T2.Country FROM transactions_1k AS T1 INNER JOIN gasstations AS T2 ON T1.GasStationID = T2.GasStationID WHERE T1.Date = '2012-08-24' AND T1.Price = 548.4
|
simple
|
456 |
What's the list of all types for the card "Molimo, Maro-Sorcerer"?
|
SELECT DISTINCT subtypes, supertypes FROM cards WHERE name = 'Molimo, Maro-Sorcerer'
|
simple
|
1,012 |
What was the position of the circuits during Lewis Hamilton's fastest lap in a Formula_1 race?
|
SELECT T1.position FROM lapTimes AS T1 INNER JOIN drivers AS T2 on T1.driverId = T2.driverId WHERE T2.forename = 'Lewis' AND T2.surname = 'Hamilton' ORDER BY T1.time ASC LIMIT 1
|
simple
|
596 |
Which users have posted the most comments. List out the user's badge?
|
SELECT Name FROM badges AS T1 INNER JOIN comments AS T2 ON T1.UserId = t2.UserId GROUP BY T2.UserId ORDER BY COUNT(T2.UserId) DESC LIMIT 1
|
simple
|
837 |
Give the hero ID of superhero with the lowest attribute value.
|
SELECT hero_id FROM hero_attribute WHERE attribute_value = ( SELECT MIN(attribute_value) FROM hero_attribute )
|
simple
|
1,176 |
What was the anti-nucleus antibody concentration level for the patient id 3605340 on 1996/12/2?
|
SELECT ANA FROM Examination WHERE ID = 3605340 AND `Examination Date` = '1996-12-02'
|
simple
|
273 |
What is the percentage of element chlorine in carcinogenic molecules?
|
SELECT CAST(COUNT( CASE WHEN T1.element = 'cl' THEN T1.element ELSE NULL END) AS REAL) * 100 / COUNT(T1.element) FROM atom AS T1 INNER JOIN molecule AS T2 ON T1.molecule_id = T2.molecule_id WHERE T2.label = '+'
|
moderate
|
863 |
Show me the season page of year when the race No. 901 took place.
|
SELECT T2.url FROM races AS T1 INNER JOIN seasons AS T2 ON T2.year = T1.year WHERE T1.raceId = 901
|
simple
|
547 |
Among the posts owned by an elder user, how many of them have a score of over 19?
|
SELECT COUNT(T1.Id) FROM posts AS T1 INNER JOIN users AS T2 ON T1.OwnerUserId = T2.Id WHERE T1.Score >= 20 AND T2.Age > 65
|
simple
|
164 |
Who placed the order with the id 32423?
|
SELECT T3.client_id FROM `order` AS T1 INNER JOIN account AS T2 ON T1.account_id = T2.account_id INNER JOIN disp AS T4 ON T4.account_id = T2.account_id INNER JOIN client AS T3 ON T4.client_id = T3.client_id WHERE T1.order_id = 32423
|
simple
|
1,062 |
Which players had an overall rating of over 80 from 2008 to 2010? Please list player names.
|
SELECT DISTINCT t1.player_name FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t2.overall_rating > 80 AND SUBSTR(t2.`date`, 1, 4) BETWEEN '2008' AND '2010'
|
moderate
|
935 |
How many drivers managed to finish the race in the 2008 Australian Grand Prix?
|
SELECT COUNT(T2.driverId) FROM races AS T1 INNER JOIN results AS T2 ON T2.raceId = T1.raceId WHERE T1.name = 'Australian Grand Prix' AND T1.year = 2008 AND T2.time IS NOT NULL
|
simple
|
687 |
How many comments were added to the post with the highest score?
|
SELECT COUNT(T2.Id) FROM posts AS T1 INNER JOIN comments AS T2 ON T1.Id = T2.PostId GROUP BY T1.Id ORDER BY SUM(T1.Score) DESC LIMIT 1
|
simple
|
752 |
Give the name of the alien superheroes.
|
SELECT T1.superhero_name FROM superhero AS T1 INNER JOIN race AS T2 ON T1.race_id = T2.id WHERE T2.race = 'Alien'
|
simple
|
629 |
Calculate the ratio of votes in 2010 and 2011.
|
SELECT CAST(SUM(IIF(STRFTIME('%Y', CreationDate) = '2010', 1, 0)) AS REAL) / SUM(IIF(STRFTIME('%Y', CreationDate) = '2011', 1, 0)) FROM votes
|
simple
|
1,465 |
Which budget category does the expense 'Posters' fall to?
|
SELECT DISTINCT T2.category FROM expense AS T1 INNER JOIN budget AS T2 ON T1.link_to_budget = T2.budget_id WHERE T1.expense_description = 'Posters'
|
simple
|
17 |
Rank schools by their average score in Writing where the score is greater than 499, showing their charter numbers.
|
SELECT CharterNum, AvgScrWrite, RANK() OVER (ORDER BY AvgScrWrite DESC) AS WritingScoreRank FROM schools AS T1 INNER JOIN satscores AS T2 ON T1.CDSCode = T2.cds WHERE T2.AvgScrWrite > 499 AND CharterNum is not null
|
simple
|
136 |
Between 1/1/1995 and 12/31/1997, how many loans in the amount of at least 250,000 per account that chose monthly statement issuance were approved?
|
SELECT COUNT(T1.account_id) FROM account AS T1 INNER JOIN loan AS T2 ON T1.account_id = T2.account_id WHERE T2.date BETWEEN '1995-01-01' AND '1997-12-31' AND T1.frequency = 'POPLATEK MESICNE' AND T2.amount >= 250000
|
moderate
|
1,021 |
What is the height of the tallest player? Indicate his name.
|
SELECT player_name FROM Player ORDER BY height DESC LIMIT 1
|
simple
|
1,085 |
Which of these players performs the best in crossing actions, Alexis, Ariel Borysiuk or Arouna Kone?
|
SELECT t1.player_name, t2.crossing FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t1.player_name IN ('Alexis', 'Ariel Borysiuk', 'Arouna Kone') ORDER BY t2.crossing DESC LIMIT 1
|
moderate
|
1,506 |
Please list the product descriptions of the transactions taken place in the gas stations in the Czech Republic.
|
SELECT DISTINCT T3.Description FROM transactions_1k AS T1 INNER JOIN gasstations AS T2 ON T1.GasStationID = T2.GasStationID INNER JOIN products AS T3 ON T1.ProductID = T3.ProductID WHERE T2.Country = 'CZE'
|
moderate
|
203 |
In how many atoms is there no bromine?
|
SELECT COUNT(DISTINCT T.atom_id) FROM atom AS T WHERE T.element <> 'br'
|
simple
|
1,098 |
What is Ajax's highest chance creation passing score and what is it classified as?
|
SELECT t2.chanceCreationPassing, 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 = 'Ajax' ORDER BY t2.chanceCreationPassing DESC LIMIT 1
|
moderate
|
1,500 |
Please list the product description of the products consumed in September, 2013.
|
SELECT T3.Description FROM transactions_1k AS T1 INNER JOIN yearmonth AS T2 ON T1.CustomerID = T2.CustomerID INNER JOIN products AS T3 ON T1.ProductID = T3.ProductID WHERE T2.Date = '201309'
|
simple
|
668 |
What is the display name of the user who acquired the highest amount of badges?
|
SELECT T1.DisplayName FROM users AS T1 INNER JOIN badges AS T2 ON T1.Id = T2.UserId GROUP BY T1.DisplayName ORDER BY COUNT(T1.Id) DESC LIMIT 1
|
simple
|
192 |
What is the average amount of loan which are still on running contract with statement issuance after each transaction?
|
SELECT AVG(T2.amount) FROM account AS T1 INNER JOIN loan AS T2 ON T1.account_id = T2.account_id WHERE T2.status IN ('C', 'D') AND T1.frequency = 'POPLATEK PO OBRATU'
|
moderate
|
346 |
List all the card id and artist with unknown power which are legal for commander play format.
|
SELECT T1.id, T1.artist FROM cards AS T1 INNER JOIN legalities AS T2 ON T1.uuid = T2.uuid WHERE T2.status = 'Legal' AND T2.format = 'commander' AND (T1.power IS NULL OR T1.power = '*')
|
moderate
|
554 |
What is the display name of the user who has obtained the most number of badges?
|
SELECT T2.DisplayName FROM badges AS T1 INNER JOIN users AS T2 ON T1.UserId = T2.Id GROUP BY T2.DisplayName ORDER BY COUNT(T1.Id) DESC LIMIT 1
|
simple
|
1,334 |
List the full name of the Student_Club members that grew up in Illinois state.
|
SELECT T1.first_name, T1.last_name FROM member AS T1 INNER JOIN zip_code AS T2 ON T1.zip = T2.zip_code WHERE T2.state = 'Illinois'
|
simple
|
1,297 |
For the patients whose total cholesterol is higher than normal, how many of them have a negative measure of degree of coagulation?
|
SELECT COUNT(T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID INNER JOIN Examination AS T3 ON T1.ID = T3.ID WHERE T2.`T-CHO` >= 250 AND T3.KCT = '-'
|
moderate
|
1,277 |
How many patients have a normal anti-DNA level, yet their data are not recorded.
|
SELECT COUNT(DISTINCT T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.DNA < 8 AND T1.Description IS NULL
|
moderate
|
575 |
What is the badge name that user 'SilentGhost' obtained?
|
SELECT T2.Name FROM users AS T1 INNER JOIN badges AS T2 ON T1.Id = T2.UserId WHERE T1.DisplayName = 'SilentGhost'
|
simple
|
1,184 |
For the patient whose birthday was 1959/3/1, what symptoms did he/she have during the examination on 1993/9/27?
|
SELECT T2.Symptoms FROM Patient AS T1 INNER JOIN Examination AS T2 ON T1.ID = T2.ID WHERE T1.Birthday = '1959-03-01' AND T2.`Examination Date` = '1993-09-27'
|
simple
|
534 |
What is the display name of the user who has the most number of views?
|
SELECT DisplayName FROM users WHERE Views = ( SELECT MAX(Views) FROM users )
|
simple
|
167 |
List all the clients' IDs whose junior credit cards were issued after 1996.
|
SELECT T2.client_id FROM card AS T1 INNER JOIN disp AS T2 ON T1.disp_id = T2.disp_id WHERE T1.type = 'junior' AND T1.issued >= '1997-01-01'
|
simple
|
16 |
How many schools in merged Alameda have number of test takers less than 100?
|
SELECT COUNT(T1.CDSCode) FROM schools AS T1 INNER JOIN satscores AS T2 ON T1.CDSCode = T2.cds WHERE T1.StatusType = 'Merged' AND T2.NumTstTakr < 100 AND T1.County = 'Lake'
|
simple
|
1,188 |
How many female patients born in 1964 were admitted to the hospital? List them by ID.
|
SELECT ID FROM Patient WHERE STRFTIME('%Y', Birthday) = '1964' AND SEX = 'F' AND Admission = '+'
|
simple
|
606 |
List out the name of badges that users obtained on 7/19/2010 7:39:08 PM.
|
SELECT Name FROM badges WHERE Date = '2010-07-19 19:39:08.0'
|
simple
|
721 |
How many superheroes have blue eyes?
|
SELECT COUNT(T1.id) FROM superhero AS T1 INNER JOIN colour AS T2 ON T1.eye_colour_id = T2.id WHERE T2.colour = 'Blue'
|
simple
|
1,266 |
Which is the youngest patient with an abnormal anti-ribonuclear protein level? Please list his or her date of birth.
|
SELECT T1.Birthday FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.RNP != '-' OR '+-' ORDER BY T1.Birthday DESC LIMIT 1
|
moderate
|
1,127 |
Locate players with vision scores of 90 and above, state the country of these players.
|
SELECT DISTINCT t4.name FROM Player_Attributes AS t1 INNER JOIN Player AS t2 ON t1.player_api_id = t2.player_api_id INNER JOIN Match AS t3 ON t2.player_api_id = t3.home_player_8 INNER JOIN Country AS t4 ON t3.country_id = t4.id WHERE t1.vision > 89
|
moderate
|
1,425 |
In the College of Agriculture and Applied Sciences, how many majors are under the department of School of Applied Sciences, Technology and Education?
|
SELECT COUNT(major_id) FROM major WHERE department = 'School of Applied Sciences, Technology and Education' AND college = 'College of Agriculture and Applied Sciences'
|
simple
|
1,060 |
How many players were born after 1990?
|
SELECT COUNT(id) FROM Player WHERE STRFTIME('%Y', birthday) > '1990'
|
simple
|
1,443 |
Give the event ID, location, and status of events conducted from November 2019 to March 2020.
|
SELECT event_id, location, status FROM event WHERE date(SUBSTR(event_date, 1, 10)) BETWEEN '2019-11-01' AND '2020-03-31'
|
simple
|
323 |
Is molecule TR000 is carcinogenic or not?
|
SELECT label FROM molecule AS T WHERE T.molecule_id = 'TR000'
|
simple
|
877 |
For all the drivers who finished the game in race No. 872, who is the youngest?
|
SELECT T1.forename, T1.surname FROM drivers AS T1 INNER JOIN results AS T2 ON T2.driverId = T1.driverId WHERE T2.raceId = 872 AND T2.time IS NOT NULL ORDER BY T1.dob DESC LIMIT 1
|
moderate
|
250 |
Of all the carcinogenic molecules, which one has the most double bonds?
|
SELECT T.molecule_id FROM ( SELECT T3.molecule_id, COUNT(T1.bond_type) FROM bond AS T1 INNER JOIN molecule AS T3 ON T1.molecule_id = T3.molecule_id WHERE T3.label = '+' AND T1.bond_type = '=' GROUP BY T3.molecule_id ORDER BY COUNT(T1.bond_type) DESC LIMIT 1 ) AS T
|
moderate
|
26 |
State the names and full communication address of high schools in Monterey which has more than 800 free or reduced price meals for ages 15-17?
|
SELECT T1.`School Name`, T2.Street, T2.City, T2.State, T2.Zip FROM frpm AS T1 INNER JOIN schools AS T2 ON T1.CDSCode = T2.CDSCode WHERE T2.County = 'Monterey' AND T1.`Free Meal Count (Ages 5-17)` > 800 AND T1.`School Type` = 'High Schools (Public)'
|
moderate
|
488 |
What's the code for the set which was released on 2017/7/14?
|
SELECT code FROM sets WHERE releaseDate = '2017-07-14' GROUP BY releaseDate, code
|
simple
|
1,494 |
What percentage of Slovakian gas stations are premium?
|
SELECT CAST(SUM(IIF(Segment = 'Premium', 1, 0)) AS FLOAT) * 100 / COUNT(GasStationID) FROM gasstations WHERE Country = 'SVK'
|
simple
|
255 |
What proportion of single bonds are carcinogenic? Please provide your answer as a percentage with five decimal places.
|
SELECT ROUND(CAST(COUNT(CASE WHEN T2.label = '+' THEN T1.bond_id ELSE NULL END) AS REAL) * 100 / COUNT(T1.bond_id),5) FROM bond AS T1 INNER JOIN molecule AS T2 ON T1.molecule_id = T2.molecule_id WHERE T1.bond_type = '-'
|
moderate
|
39 |
What is the average number of test takers from Fresno schools that opened between 1/1/1980 and 12/31/1980?
|
SELECT AVG(T1.NumTstTakr) FROM satscores AS T1 INNER JOIN schools AS T2 ON T1.cds = T2.CDSCode WHERE strftime('%Y', T2.OpenDate) = '1980' AND T2.County = 'Fresno'
|
simple
|
824 |
Identify superheroes who can control wind and list their names in alphabetical order.
|
SELECT T1.superhero_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 T3.power_name = 'Wind Control' ORDER BY T1.superhero_name
|
moderate
|
1,154 |
State the sex and birthday of patient ID '163109'. When was the examination taken and what symptom does the patient had.
|
SELECT T1.SEX, T1.Birthday, T2.`Examination Date`, T2.Symptoms FROM Patient AS T1 INNER JOIN Examination AS T2 ON T1.ID = T2.ID WHERE T1.ID = 163109
|
simple
|
526 |
Among the card designed by Matthew D. Wilson, how many are available only in the paper?
|
SELECT COUNT(id) FROM cards WHERE artist = 'Matthew D. Wilson' AND availability = 'paper'
|
simple
|
1,510 |
What is the average total price of the transactions taken place in gas stations in the Czech Republic?
|
SELECT AVG(T1.Price) FROM transactions_1k AS T1 INNER JOIN gasstations AS T2 ON T1.GasStationID = T2.GasStationID WHERE T2.Country = 'CZE'
|
simple
|
1,509 |
Among the transactions made in the gas stations in the Czech Republic, how many of them are taken place after 2012/1/1?
|
SELECT COUNT(T1.TransactionID) FROM transactions_1k AS T1 INNER JOIN gasstations AS T2 ON T1.GasStationID = T2.GasStationID WHERE T2.Country = 'CZE' AND STRFTIME('%Y', T1.Date) >= '2012'
|
moderate
|
754 |
What is the superpower of hero ID 56?
|
SELECT T2.power_name FROM hero_power AS T1 INNER JOIN superpower AS T2 ON T1.power_id = T2.id WHERE T1.hero_id = 56
|
simple
|
1,411 |
State what kind of expenses that Sacha Harrison incurred?
|
SELECT T2.expense_description FROM member AS T1 INNER JOIN expense AS T2 ON T1.member_id = T2.link_to_member WHERE T1.first_name = 'Sacha' AND T1.last_name = 'Harrison'
|
simple
|
702 |
How many posts have a score less than 20?
|
SELECT COUNT(id) FROM posts WHERE Score < 20
|
simple
|
1,337 |
What is the total budgeted amount for all category in "October Speaker" event?
|
SELECT SUM(T2.amount) FROM event AS T1 INNER JOIN budget AS T2 ON T1.event_id = T2.link_to_event WHERE T1.event_name = 'October Speaker'
|
simple
|
1,291 |
How many male patients have a normal level of both albumin and total protein?
|
SELECT COUNT(T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T1.SEX = 'M' AND T2.ALB > 3.5 AND T2.ALB < 5.5 AND T2.TP BETWEEN 6.0 AND 8.5
|
moderate
|
1,396 |
Provide the number of events attended by Luisa Guidi. What is her major?
|
SELECT COUNT(T3.link_to_event), T1.major_name FROM major AS T1 INNER JOIN member AS T2 ON T1.major_id = T2.link_to_major INNER JOIN attendance AS T3 ON T2.member_id = T3.link_to_member WHERE T2.first_name = 'Luisa' AND T2.last_name = 'Guidi'
|
simple
|
881 |
For the drivers who took part in the race in 1983/7/16, what's their race completion rate?
|
SELECT CAST(COUNT(CASE WHEN T2.time IS NOT NULL THEN T2.driverId END) AS REAL) * 100 / COUNT(T2.driverId) FROM races AS T1 INNER JOIN results AS T2 ON T2.raceId = T1.raceId WHERE T1.date = '1983-07-16'
|
moderate
|
171 |
What was the difference in the number of crimes committed in East and North Bohemia in 1996?
|
SELECT SUM(IIF(A3 = 'east Bohemia', A16, 0)) - SUM(IIF(A3 = 'north Bohemia', A16, 0)) FROM district
|
moderate
|
1,056 |
What is the name of the football league in the country of Netherlands?
|
SELECT t2.name FROM Country AS t1 INNER JOIN League AS t2 ON t1.id = t2.country_id WHERE t1.name = 'Netherlands'
|
simple
|
903 |
How many times did Michael Schumacher won from races hosted in Sepang International Circuit?
|
SELECT SUM(T2.wins) FROM drivers AS T1 INNER JOIN driverStandings AS T2 ON T2.driverId = T1.driverId INNER JOIN races AS T3 ON T3.raceId = T2.raceId INNER JOIN circuits AS T4 ON T4.circuitId = T3.circuitId WHERE T1.forename = 'Michael' AND T1.surname = 'Schumacher' AND T4.name = 'Sepang International Circuit'
|
moderate
|
1,314 |
Please list the full names of the students in the Student_Club that come from the Art and Design Department.
|
SELECT T1.first_name, T1.last_name FROM member AS T1 INNER JOIN major AS T2 ON T1.link_to_major = T2.major_id WHERE T2.department = 'Art and Design Department'
|
simple
|
963 |
How many French drivers who obtain the laptime less than 02:00.00?
|
SELECT COUNT(T1.driverId) FROM drivers AS T1 INNER JOIN lapTimes AS T2 on T1.driverId = T2.driverId WHERE T1.nationality = 'French' AND (CAST(SUBSTR(T2.time, 1, 2) AS INTEGER) * 60 + CAST(SUBSTR(T2.time, 4, 2) AS INTEGER) + CAST(SUBSTR(T2.time, 7, 2) AS REAL) / 1000) < 120
|
moderate
|
1,003 |
How many accidents did the driver who had the highest number accidents in the Canadian Grand Prix have?
|
SELECT COUNT(T1.driverId) FROM results AS T1 INNER JOIN races AS T2 on T1.raceId = T2.raceId INNER JOIN status AS T3 on T1.statusId = T3.statusId WHERE T3.statusId = 3 AND T2.name = 'Canadian Grand Prix' GROUP BY T1.driverId ORDER BY COUNT(T1.driverId) DESC LIMIT 1
|
moderate
|
162 |
What is the region of the client with the id 3541 from?
|
SELECT T1.A3 FROM district AS T1 INNER JOIN client AS T2 ON T1.district_id = T2.district_id WHERE T2.client_id = 3541
|
simple
|
1,406 |
Among the budgets for Food, which one has the highest budgeted amount?
|
SELECT budget_id FROM budget WHERE category = 'Food' AND amount = ( SELECT MAX(amount) FROM budget )
|
simple
|
567 |
For the user with the display name of "Tiago Pasqualini", how many posts did he/she own?
|
SELECT COUNT(T1.Id) FROM users AS T1 INNER JOIN posts AS T2 ON T1.Id = T2.OwnerUserId WHERE T1.DisplayName = 'Tiago Pasqualini'
|
simple
|
1,267 |
Among the patients with normal anti-SM, how many of them does not have thrombosis?
|
SELECT COUNT(T1.ID) FROM Examination AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.SM IN ('negative','0') AND T1.Thrombosis = 0
|
moderate
|
1,299 |
Among the patients with the normal level of triglyceride, how many of them have other symptoms observed?
|
SELECT COUNT(T1.ID) FROM Examination AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.TG < 200 AND T1.Symptoms IS NOT NULL
|
simple
|
109 |
How many clients opened their accounts in Jesenik branch were women?
|
SELECT COUNT(T1.client_id) FROM client AS T1 INNER JOIN district AS T2 ON T1.district_id = T2.district_id WHERE T1.gender = 'F' AND T2.A2 = 'Jesenik'
|
simple
|
648 |
Provide the users' display names and available website URLs of the post with favorite count of more than 150.
|
SELECT T1.DisplayName, T1.WebsiteUrl FROM users AS T1 INNER JOIN posts AS T2 ON T1.Id = T2.OwnerUserId WHERE T2.FavoriteCount > 150
|
simple
|
1,366 |
List all the members who attended the event "October Meeting".
|
SELECT DISTINCT T3.member_id FROM event AS T1 INNER JOIN attendance AS T2 ON T1.event_id = T2.link_to_event INNER JOIN member AS T3 ON T2.link_to_member = T3.member_id WHERE T1.event_name = 'October Meeting'
|
simple
|
1,276 |
For the patients who have an abnormal level of anti-DNA, please list the diseases they are diagnosed with.
|
SELECT DISTINCT(T1.Diagnosis) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.DNA >= 8
|
simple
|
55 |
Of the schools with a mailing state address in California, what is the ratio of the schools located in the county of Colusa against the school located in the county of Humboldt?
|
SELECT CAST(SUM(CASE WHEN County = 'Colusa' THEN 1 ELSE 0 END) AS REAL) / SUM(CASE WHEN County = 'Humboldt' THEN 1 ELSE 0 END) FROM schools WHERE MailState = 'CA'
|
moderate
|
161 |
What type of credit card does the client with the id 13539 own?
|
SELECT T3.type FROM disp AS T1 INNER JOIN client AS T2 ON T1.client_id = T2.client_id INNER JOIN card AS T3 ON T1.disp_id = T3.disp_id WHERE T2.client_id = 13539
|
simple
|
452 |
Please list the names of the cards that have a text box.
|
SELECT DISTINCT name FROM cards WHERE isTextless = 0
|
simple
|
1,491 |
Which country has more "value for money" gas stations? Please give a total number of "value for money" gas stations in each country.
|
SELECT Country , ( SELECT COUNT(GasStationID) FROM gasstations WHERE Segment = 'Value for money' ) FROM gasstations WHERE Segment = 'Value for money' GROUP BY Country ORDER BY COUNT(GasStationID) DESC LIMIT 1
|
simple
|
227 |
What is the percentage of molecules that are carcinogenic? Please provide your answer as a percentage with three decimal places.
|
SELECT ROUND(CAST(COUNT(CASE WHEN T.label = '+' THEN T.molecule_id ELSE NULL END) AS REAL) * 100 / COUNT(T.molecule_id),3) FROM molecule t
|
simple
|
1,453 |
List the name of events with less than average parking cost.
|
SELECT T1.event_name FROM event AS T1 INNER JOIN budget AS T2 ON T1.event_id = T2.link_to_event INNER JOIN expense AS T3 ON T2.budget_id = T3.link_to_budget WHERE T2.category = 'Parking' AND T3.cost < (SELECT AVG(cost) FROM expense)
|
moderate
|
1,253 |
For the patient who has the highest Ig A within the normal range, what is his or her diagnosis?
|
SELECT patientData.Diagnosis FROM Patient AS patientData INNER JOIN Laboratory AS labData ON patientData.ID = labData.ID WHERE labData.IGA BETWEEN 80 AND 500 ORDER BY labData.IGA DESC LIMIT 1
|
simple
|
8 |
What is the number of SAT test takers of the schools with the highest FRPM count for K-12 students?
|
SELECT NumTstTakr FROM satscores WHERE cds = ( SELECT CDSCode FROM frpm ORDER BY `FRPM Count (K-12)` DESC LIMIT 1 )
|
simple
|
1,122 |
State the name of the most strongest player.
|
SELECT DISTINCT t1.player_name FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t2.overall_rating = (SELECT MAX(overall_rating) FROM Player_Attributes)
|
simple
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.