id
int64 0
1.53k
| query
stringlengths 23
215
| sql
stringlengths 29
1.45k
| difficulty
stringclasses 3
values |
---|---|---|---|
1,357 | State the date Connor Hilton paid his/her dues. | SELECT T2.date_received FROM member AS T1 INNER JOIN income AS T2 ON T1.member_id = T2.link_to_member WHERE T1.first_name = 'Connor' AND T1.last_name = 'Hilton' AND T2.source = 'Dues' | simple |
1,237 | Among all outpatients, list out those have low hemoglobin level. State the different IDs and their sex. | SELECT DISTINCT T1.ID, T1.SEX FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.HGB < 10 AND T1.Admission = '-' | simple |
1,365 | What are the expenses of the budget with the lowest remaining? | SELECT T2.expense_description FROM budget AS T1 INNER JOIN expense AS T2 ON T1.budget_id = T2.link_to_budget ORDER BY T1.remaining LIMIT 1 | simple |
993 | In which location does the Hungaroring circuit located? Also, find the country and coordinates of this circuit? | SELECT country, lat, lng FROM circuits WHERE name = 'Hungaroring' | simple |
245 | What is the average number of bonds the atoms with the element iodine have? | SELECT CAST(COUNT(T2.bond_id) AS REAL) / COUNT(T1.atom_id) FROM atom AS T1 INNER JOIN connected AS T2 ON T1.atom_id = T2.atom_id WHERE T1.element = 'i' | moderate |
191 | How many loan accounts are for pre-payment of duration of 24 months with weekly issuance of statement. | SELECT COUNT(T2.account_id) FROM account AS T1 INNER JOIN loan AS T2 ON T1.account_id = T2.account_id WHERE T2.duration = 24 AND T1.frequency = 'POPLATEK TYDNE' | simple |
1,466 | Write the full name of the club member with the position of 'Secretary' and list which college the club member belongs to. | SELECT T1.first_name, T1.last_name, college FROM member AS T1 INNER JOIN major AS T2 ON T2.major_id = T1.link_to_major WHERE T1.position = 'Secretary' | simple |
105 | There was a loan approved in 1994/8/25, where was that account opened, give the district Id of the branch. | SELECT T1.district_id FROM account AS T1 INNER JOIN loan AS T2 ON T1.account_id = T2.account_id WHERE T2.date = '1994-08-25' | simple |
918 | What's Lewis Hamilton's reference name? | SELECT driverRef FROM drivers WHERE forename = 'Lewis' AND surname = 'Hamilton' | simple |
836 | What is the total number of superheroes that have John as their first name? | SELECT COUNT(id) FROM superhero WHERE full_name LIKE 'John%' | simple |
579 | Write all comments made on the post titled 'How does gentle boosting differ from AdaBoost?' | SELECT T1.Text FROM comments AS T1 INNER JOIN posts AS T2 ON T1.PostId = T2.Id WHERE T2.Title = 'How does gentle boosting differ from AdaBoost?' | simple |
840 | List the attribute value of the superhero named Aquababy. | SELECT T2.attribute_value FROM superhero AS T1 INNER JOIN hero_attribute AS T2 ON T1.id = T2.hero_id WHERE T1.superhero_name = 'Aquababy' | simple |
22 | Which school in Contra Costa has the highest number of test takers? | SELECT sname FROM satscores WHERE cname = 'Contra Costa' AND sname IS NOT NULL ORDER BY NumTstTakr DESC LIMIT 1 | simple |
402 | What is the percentage of Story Spotlight cards that do not have a text box? List them by their ID. | SELECT CAST(SUM(CASE WHEN isTextless = 0 THEN 1 ELSE 0 END) AS REAL) * 100 / COUNT(id) FROM cards WHERE isStorySpotlight = 1 | moderate |
806 | Provide the eye colour of the superhero who has Karen Beecher-Duncan as their full name. | SELECT T2.colour FROM superhero AS T1 INNER JOIN colour AS T2 ON T1.eye_colour_id = T2.id WHERE T1.full_name = 'Karen Beecher-Duncan' | simple |
1,327 | List the full name of all the members of the Student_Club who attended the "Laugh Out Loud" event. | SELECT T1.first_name, T1.last_name FROM member AS T1 INNER JOIN attendance AS T2 ON T1.member_id = T2.link_to_member INNER JOIN event AS T3 ON T2.link_to_event = T3.event_id WHERE T3.event_name = 'Laugh Out Loud' | moderate |
1,421 | Calculate the percentage of members who are major Business in the list? | SELECT CAST(SUM(CASE WHEN T2.major_name = 'Business' THEN 1 ELSE 0 END) AS REAL) * 100 / COUNT(T1.member_id) FROM member AS T1 INNER JOIN major AS T2 ON T2.major_id = T1.link_to_major WHERE T1.position = 'Member' | moderate |
673 | What is the average number of posts voted by the oldest users? | SELECT AVG(PostId) FROM votes WHERE UserId IN ( SELECT Id FROM users WHERE Age = ( SELECT MAX(Age) FROM users ) ) | simple |
1,315 | How many students of the Student_Club have attended the event "Women's Soccer"? | SELECT COUNT(T1.event_id) FROM event AS T1 INNER JOIN attendance AS T2 ON T1.event_id = T2.link_to_event WHERE T1.event_name = 'Women''s Soccer' | simple |
386 | How many cards are having future frame version and what are the legality status of these cards? | SELECT COUNT(T1.id) FROM cards AS T1 INNER JOIN legalities AS T2 ON T1.uuid = T2.uuid WHERE T1.frameVersion = 'future' | simple |
481 | Please list all the foreign languages in which the card "Ancestor's Chosen" has a flavor text. | SELECT T2.language FROM cards AS T1 INNER JOIN foreign_data AS T2 ON T2.uuid = T1.uuid WHERE T1.name = 'Ancestor''s Chosen' AND T2.flavorText IS NOT NULL | simple |
531 | Which user has a higher reputation, Harlan or Jarrod Dixon? | SELECT DisplayName FROM users WHERE DisplayName IN ('Harlan', 'Jarrod Dixon') AND Reputation = ( SELECT MAX(Reputation) FROM users WHERE DisplayName IN ('Harlan', 'Jarrod Dixon') ) | simple |
239 | How many connections does the atom 19 have? | SELECT COUNT(T.bond_id) FROM connected AS T WHERE SUBSTR(T.atom_id, -2) = '19' | simple |
1,000 | Which racetrack hosted the most recent race? Indicate the full location. | SELECT T1.location FROM circuits AS T1 INNER JOIN races AS T2 ON T1.circuitId = T2.circuitId ORDER BY T2.date DESC LIMIT 1 | simple |
223 | What are the atom IDs of the bond TR000_2_5? | SELECT T.atom_id FROM connected AS T WHERE T.bond_id = 'TR000_2_5' | simple |
1,244 | List all patients who first came to the hospital after year 1992 with prothrombin time (PT) level that are normal. | SELECT T1.ID FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE STRFTIME('%Y', T1.`First Date`) > '1992' AND T2.PT < 14 | moderate |
1,495 | Which client ID consumed the most in September 2013? | SELECT T1.CustomerID FROM customers AS T1 INNER JOIN yearmonth AS T2 ON T1.CustomerID = T2.CustomerID WHERE T2.Date = '201309' GROUP BY T1.CustomerID ORDER BY SUM(T2.Consumption) DESC LIMIT 1 | simple |
1,256 | How many patients with a abnormal C-reactive protein don't have their data recorded? | SELECT COUNT(T1.ID) FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE (T2.CRP = '+' ) AND T1.Description IS NULL | moderate |
99 | Among the accounts who have loan validity more than 12 months, list out the accounts that have the highest approved amount and have account opening date in 1993. | SELECT T1.account_id FROM loan AS T1 INNER JOIN account AS T2 ON T1.account_id = T2.account_id WHERE STRFTIME('%Y', T2.date) = '1993' AND T1.duration > 12 ORDER BY T1.amount DESC LIMIT 1 | moderate |
1,148 | What is the percentage of players that are under 180 cm who have an overall strength of more than 70? | SELECT CAST(COUNT(CASE WHEN t2.overall_rating > 70 THEN t1.id ELSE NULL END) AS REAL) * 100 / COUNT(t1.id) percent FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t1.height < 180 | moderate |
71 | What is the district code for the School that does not offer a magnet program in the city of Fresno? | SELECT T1.`District Code` FROM frpm AS T1 INNER JOIN schools AS T2 ON T1.CDSCode = T2.CDSCode WHERE T2.City = 'Fresno' AND T2.Magnet = 0 | simple |
1,348 | For all the budgets for "November Meeting", how many of them had exceeded the budget? | SELECT COUNT(T2.event_id) FROM budget AS T1 INNER JOIN event AS T2 ON T1.link_to_event = T2.event_id WHERE T2.event_name = 'November Meeting' AND T1.remaining < 0 | simple |
1,075 | List all the football player with the highest balance score and potential score of 61. | SELECT t1.player_name FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t2.potential = '61' ORDER BY t2.balance DESC LIMIT 1 | moderate |
324 | Find the percentage of atoms with single bond. | SELECT CAST(COUNT(CASE WHEN T.bond_type = '-' THEN T.bond_id ELSE NULL END) AS REAL) * 100 / COUNT(T.bond_id) FROM bond t | simple |
764 | What are the superpowers of heroes with ID 1? | SELECT DISTINCT T2.power_name FROM hero_power AS T1 INNER JOIN superpower AS T2 ON T1.power_id = T2.id WHERE T1.hero_id = 1 | simple |
90 | How many accounts who have region in Prague are eligible for loans? | SELECT COUNT(T1.account_id) FROM account AS T1 INNER JOIN loan AS T2 ON T1.account_id = T2.account_id INNER JOIN district AS T3 ON T1.district_id = T3.district_id WHERE T3.A3 = 'Prague' | simple |
1,102 | For the players who had a 77 points overall rating on 2016/6/23, who was the oldest? Give the name of the player. | SELECT t1.player_name FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE SUBSTR(t2.`date`, 1, 10) = '2016-06-23' AND t2.overall_rating = 77 ORDER BY t1.birthday ASC LIMIT 1 | moderate |
484 | Please list the Italian names of the cards in the set Coldsnap with the highest converted mana cost. | SELECT T2.name FROM foreign_data AS T1 INNER JOIN cards AS T2 ON T2.uuid = T1.uuid INNER JOIN sets AS T3 ON T3.code = T2.setCode WHERE T3.name = 'Coldsnap' AND T1.language = 'Italian' ORDER BY T2.convertedManaCost DESC | moderate |
1,144 | Please state the finishing rate and curve score of the player who has the heaviest weight. | SELECT id, finishing, curve FROM Player_Attributes WHERE player_api_id = ( SELECT player_api_id FROM Player ORDER BY weight DESC LIMIT 1 ) LIMIT 1 | simple |
163 | Which district has the most accounts with loan contracts finished with no problems? | SELECT T1.A2 FROM District AS T1 INNER JOIN Account AS T2 ON T1.District_id = T2.District_id INNER JOIN Loan AS T3 ON T2.Account_id = T3.Account_id WHERE T3.status = 'A' GROUP BY T1.District_id ORDER BY COUNT(T2.Account_id) DESC LIMIT 1 | moderate |
78 | What is the most common type of grade span served in the city of Adelanto? | SELECT GSserved FROM schools WHERE City = 'Adelanto' GROUP BY GSserved ORDER BY COUNT(GSserved) DESC LIMIT 1 | simple |
1,063 | What is Aaron Doran's potential score? | SELECT t2.potential FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE t1.player_name = 'Aaron Doran' | simple |
1,342 | What was the cost for the "Posters" on 2019/9/4? | SELECT cost FROM expense WHERE expense_description = 'Posters' AND expense_date = '2019-09-04' | simple |
1,532 | Which country had the gas station that sold the most expensive product id No.2 for one unit? | SELECT T2.Country FROM transactions_1k AS T1 INNER JOIN gasstations AS T2 ON T1.GasStationID = T2.GasStationID WHERE T1.ProductID = 2 ORDER BY T1.Price DESC LIMIT 1 | simple |
868 | Where is Malaysian Grand Prix held? Give the location coordinates. | SELECT DISTINCT T1.lat, T1.lng FROM circuits AS T1 INNER JOIN races AS T2 ON T2.circuitID = T1.circuitId WHERE T2.name = 'Malaysian Grand Prix' | simple |
642 | How many posts were created on 21st July, 2010? | SELECT COUNT(id) FROM postHistory WHERE date(CreationDate) = '2010-07-21' | simple |
498 | What's the French name of the set of cards with "Tendo Ice Bridge" is in? | SELECT T2.translation FROM cards AS T1 INNER JOIN set_translations AS T2 ON T2.setCode = T1.setCode WHERE T1.name = 'Tendo Ice Bridge' AND T2.language = 'French' AND T2.translation IS NOT NULL | moderate |
774 | Which group does superhero A-Bomb belong to? | SELECT T2.race FROM superhero AS T1 INNER JOIN race AS T2 ON T1.race_id = T2.id WHERE T1.superhero_name = 'A-Bomb' | simple |
1,104 | What was the potiential for Francesco Parravicini on 2010/8/30? | SELECT t2.potential FROM Player AS t1 INNER JOIN Player_Attributes AS t2 ON t1.player_api_id = t2.player_api_id WHERE SUBSTR(t2.`date`, 1, 10) = '2010-08-30' AND t1.player_name = 'Francesco Parravicini' | moderate |
201 | What is the percentage of carbon in double-bond molecules? | SELECT CAST(COUNT(DISTINCT CASE WHEN T1.element = 'c' THEN T1.atom_id ELSE NULL END) AS REAL) * 100 / COUNT(DISTINCT T1.atom_id) FROM atom AS T1 INNER JOIN bond AS T2 ON T1.molecule_id = T2.molecule_id WHERE T2.bond_type = '=' | moderate |
309 | List out the atom id that belongs to the TR346 molecule and how many bond type can be created by this molecule? | SELECT T1.atom_id, COUNT(DISTINCT T2.bond_type),T1.molecule_id FROM atom AS T1 INNER JOIN bond AS T2 ON T1.molecule_id = T2.molecule_id WHERE T1.molecule_id = 'TR000' GROUP BY T1.atom_id, T2.bond_type | simple |
1,300 | What is the disease name of the patient who has the highest level of triglyceride within the normal range? | SELECT T1.Diagnosis FROM Examination AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.TG < 200 ORDER BY T2.TG DESC LIMIT 1 | moderate |
970 | List out top 3 German drivers who were born from 1980-1990 and have the earliest lap time. | SELECT T2.driverId FROM pitStops AS T1 INNER JOIN drivers AS T2 on T1.driverId = T2.driverId WHERE T2.nationality = 'German' AND STRFTIME('%Y', T2.dob) BETWEEN '1980' AND '1990' ORDER BY T1.time LIMIT 3 | moderate |
262 | Among the single bond molecule id, which molecules are not carcinogenic? | SELECT DISTINCT T1.molecule_id FROM bond AS T1 INNER JOIN molecule AS T2 ON T1.molecule_id = T2.molecule_id WHERE T2.label = '-' AND T1.bond_type = '-' | simple |
545 | Among the posts owned by csgillespie, how many of them are root posts? | SELECT COUNT(T1.Id) FROM posts AS T1 INNER JOIN users AS T2 ON T1.OwnerUserId = T2.Id WHERE T2.DisplayName = 'csgillespie' AND T1.ParentId IS NULL | simple |
1,484 | How many more "discount" gas stations does the Czech Republic have compared to Slovakia? | SELECT SUM(IIF(Country = 'CZE', 1, 0)) - SUM(IIF(Country = 'SVK', 1, 0)) FROM gasstations WHERE Segment = 'Discount' | simple |
619 | How many adults who obtained the badge Supporter? | SELECT COUNT(T1.Id) FROM users AS T1 INNER JOIN badges AS T2 ON T1.Id = T2.UserId WHERE T2.Name = 'Supporter' AND T1.Age BETWEEN 19 AND 65 | simple |
126 | Calculate the percentage of account from 'Decin' district for all accounts are opened in 1993. | SELECT CAST(SUM(T1.A2 = 'Decin') AS REAL) * 100 / COUNT(account_id) FROM district AS T1 INNER JOIN account AS T2 ON T1.district_id = T2.district_id WHERE STRFTIME('%Y', T2.date) = '1993' | simple |
699 | When did the user known as 'IrishStat' create his or her account? | SELECT CreationDate FROM users WHERE DisplayName = 'IrishStat' | simple |
1,385 | Which student was able to generate income more than $40? | SELECT T1.first_name, T1.last_name FROM member AS T1 INNER JOIN income AS T2 ON T1.member_id = T2.link_to_member WHERE T2.amount > 40 | simple |
882 | Which year was the first Singapore Grand Prix? | SELECT year FROM races WHERE name = 'Singapore Grand Prix' ORDER BY year ASC LIMIT 1 | simple |
825 | Identify the gender of the superhero who has the ability of Phoenix Force. | SELECT T4.gender 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 INNER JOIN gender AS T4 ON T1.gender_id = T4.id WHERE T3.power_name = 'Phoenix Force' | moderate |
570 | For the user whose display name is "DatEpicCoderGuyWhoPrograms", what is his/her badge's name? | SELECT T2.Name FROM users AS T1 INNER JOIN badges AS T2 ON T1.Id = T2.UserId WHERE T1.DisplayName = 'DatEpicCoderGuyWhoPrograms' | simple |
695 | How many users were awarded with 'Citizen Patrol' badge? | SELECT COUNT(id) FROM badges WHERE `Name` = 'Citizen Patrol' | simple |
1,372 | When did the member, Casey Mason, received the income? | SELECT T2.date_received FROM member AS T1 INNER JOIN income AS T2 ON T1.member_id = T2.link_to_member WHERE T1.first_name = 'Casey' AND T1.last_name = 'Mason' | simple |
869 | For the constructor which got the highest point in the race No. 9 , what is its introduction website? | SELECT T2.url FROM constructorResults AS T1 INNER JOIN constructors AS T2 ON T2.constructorId = T1.constructorId WHERE T1.raceId = 9 ORDER BY T1.points DESC LIMIT 1 | moderate |
124 | List the loan ID, district and average salary for loan with duration of 60 months. | SELECT T3.loan_id, T2.A2, T2.A11 FROM account AS T1 INNER JOIN district AS T2 ON T1.district_id = T2.district_id INNER JOIN loan AS T3 ON T1.account_id = T3.account_id WHERE T3.duration = 60 | simple |
813 | Calculate the average attribute value of all neutral superheroes. | SELECT AVG(T1.attribute_value) FROM hero_attribute AS T1 INNER JOIN superhero AS T2 ON T1.hero_id = T2.id INNER JOIN alignment AS T3 ON T2.alignment_id = T3.id WHERE T3.alignment = 'Neutral' | simple |
912 | What's the reference name of Marina Bay Street Circuit? | SELECT circuitRef FROM circuits WHERE name = 'Marina Bay Street Circuit' | simple |
128 | List the top nine districts, by descending order, from the highest to the lowest, the number of female account holders. | SELECT T2.A2, COUNT(T1.client_id) FROM client AS T1 INNER JOIN district AS T2 ON T1.district_id = T2.district_id WHERE T1.gender = 'F' GROUP BY T2.district_id, T2.A2 ORDER BY COUNT(T1.client_id) DESC LIMIT 9 | moderate |
719 | Among the superheroes with the super power of "Super Strength", how many of them have a height of over 200cm? | SELECT COUNT(T1.id) 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 = 'Super Strength' AND T1.height_cm > 200 | moderate |
697 | What is the reputation and view count of the user, who is known by his or her display name 'Jarrod Dixon'? | SELECT Reputation, Views FROM users WHERE DisplayName = 'Jarrod Dixon' | simple |
417 | What percentage of Japanese translated sets are expansion sets? | SELECT CAST(SUM(CASE WHEN T2.language = 'Japanese' THEN 1 ELSE 0 END) AS REAL) * 100 / COUNT(T1.id) FROM sets AS T1 INNER JOIN set_translations AS T2 ON T1.code = T2.setCode WHERE T1.type = 'expansion' | moderate |
303 | How many double bonds does TR006 have and is it carcinogenic? | SELECT COUNT(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 = '=' AND T2.molecule_id = 'TR006' GROUP BY T2.label | moderate |
718 | How many superheroes have the super power of "Super Strength"? | 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 = 'Super Strength' | simple |
1,030 | Give the name of the league had the most matches end as draw 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' AND t1.home_team_goal = t1.away_team_goal GROUP BY t2.name ORDER BY COUNT(t1.id) DESC LIMIT 1 | moderate |
904 | State the race and year of race in which Michael Schumacher had his fastest lap. | SELECT T1.name, T1.year FROM races AS T1 INNER JOIN lapTimes AS T2 ON T2.raceId = T1.raceId INNER JOIN drivers AS T3 ON T3.driverId = T2.driverId WHERE T3.forename = 'Michael' AND T3.surname = 'Schumacher' ORDER BY T2.milliseconds ASC LIMIT 1 | moderate |
949 | Which constructor has the highest point? | SELECT T2.name FROM constructorStandings AS T1 INNER JOIN constructors AS T2 on T1.constructorId = T2.constructorId ORDER BY T1.points DESC LIMIT 1 | simple |
48 | What is the ratio of merged Unified School District schools in Orange County to merged Elementary School District schools? | SELECT CAST(SUM(CASE WHEN DOC = 54 THEN 1 ELSE 0 END) AS REAL) / SUM(CASE WHEN DOC = 52 THEN 1 ELSE 0 END) FROM schools WHERE StatusType = 'Merged' AND County = 'Orange' | moderate |
1,333 | What city and state did the President of the Student_Club grow up? | SELECT T2.city, T2.state FROM member AS T1 INNER JOIN zip_code AS T2 ON T1.zip = T2.zip_code WHERE T1.position = 'President' | simple |
1,097 | What is Aaron Lennox's total crossing score? | SELECT SUM(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 = 'Aaron Lennox' | simple |
961 | Which race has the shortest actual finishing time? Please give the name and year. | SELECT T1.name, T1.year FROM races AS T1 INNER JOIN results AS T2 on T1.raceId = T2.raceId WHERE T2.milliseconds IS NOT NULL ORDER BY T2.milliseconds LIMIT 1 | simple |
852 | How many races in the year 2010 are held on grand prixs outside Asia and Europe? | SELECT COUNT(T3.raceId) FROM circuits AS T1 INNER JOIN races AS T3 ON T3.circuitID = T1.circuitId WHERE T1.country NOT IN ( 'Bahrain', 'China', 'Singapore', 'Japan', 'Korea', 'Turkey', 'UAE', 'Malaysia', 'Spain', 'Monaco', 'Azerbaijan', 'Austria', 'Belgium', 'France', 'Germany', 'Hungary', 'Italy', 'UK' ) AND T3.year = 2010 | moderate |
4 | Please list the phone numbers of the direct charter-funded schools that are opened after 2000/1/1. | SELECT T2.Phone FROM frpm AS T1 INNER JOIN schools AS T2 ON T1.CDSCode = T2.CDSCode WHERE T1.`Charter Funding Type` = 'Directly funded' AND T1.`Charter School (Y/N)` = 1 AND T2.OpenDate > '2000-01-01' | moderate |
1,109 | How was the build up play dribbling class for "LEI" on 2015/9/10? | SELECT t2.buildUpPlayDribblingClass FROM Team AS t1 INNER JOIN Team_Attributes AS t2 ON t1.team_api_id = t2.team_api_id WHERE t1.team_short_name = 'LEI' AND SUBSTR(t2.`date`, 1, 10) = '2015-09-10' | moderate |
297 | Among the atoms that contain element carbon, which one does not contain compound carcinogenic? | SELECT T1.atom_id FROM atom AS T1 INNER JOIN molecule AS T2 ON T1.molecule_id = T2.molecule_id WHERE T1.element = 'c' AND T2.label = '-' | simple |
1,529 | What is the amount spent by customer "38508" at the gas stations? How much had the customer spent in January 2012? | SELECT SUM(T1.Price) , SUM(IIF(T3.Date = '201201', T1.Price, 0)) FROM transactions_1k AS T1 INNER JOIN gasstations AS T2 ON T1.GasStationID = T2.GasStationID INNER JOIN yearmonth AS T3 ON T1.CustomerID = T3.CustomerID WHERE T1.CustomerID = '38508' | moderate |
1,402 | What is the most popular size of t-shirt ordered by the club members? | SELECT t_shirt_size FROM member GROUP BY t_shirt_size ORDER BY COUNT(t_shirt_size) DESC LIMIT 1 | simple |
495 | What was the release date for the set which card "Evacuation" in it? | SELECT T2.releaseDate FROM cards AS T1 INNER JOIN sets AS T2 ON T2.code = T1.setCode WHERE T1.name = 'Evacuation' | simple |
1,108 | What was the build up play speed class for "Willem II" on 2011/2/22? | SELECT t2.buildUpPlaySpeedClass FROM Team AS t1 INNER JOIN Team_Attributes AS t2 ON t1.team_api_id = t2.team_api_id WHERE t1.team_long_name = 'Willem II' AND SUBSTR(t2.`date`, 1, 10) = '2011-02-22' | moderate |
919 | Which circuit did the 2009 Spanish Grand Prix use? | SELECT T1.name FROM circuits AS T1 INNER JOIN races AS T2 ON T2.circuitID = T1.circuitId WHERE T2.year = 2009 AND T2.name = 'Spanish Grand Prix' | simple |
1,374 | How many events did the member with the phone number "954-555-6240" attend? | SELECT COUNT(T2.link_to_event) FROM member AS T1 INNER JOIN attendance AS T2 ON T1.member_id = T2.link_to_member WHERE T1.phone = '954-555-6240' | simple |
349 | Name the card and artist with the most ruling information. Also state if the card is a promotional printing. | SELECT T1.name, T1.artist, T1.isPromo FROM cards AS T1 INNER JOIN rulings AS T2 ON T1.uuid = T2.uuid WHERE T1.isPromo = 1 AND T1.artist = (SELECT artist FROM cards WHERE isPromo = 1 GROUP BY artist HAVING COUNT(DISTINCT uuid) = (SELECT MAX(count_uuid) FROM ( SELECT COUNT(DISTINCT uuid) AS count_uuid FROM cards WHERE isPromo = 1 GROUP BY artist ))) LIMIT 1 | moderate |
1,209 | Please provide the diagnosis of patients with ALT glutamic pylvic transaminase beyond the normal range by ascending order of their date of birth. | SELECT DISTINCT T1.Diagnosis FROM Patient AS T1 INNER JOIN Laboratory AS T2 ON T1.ID = T2.ID WHERE T2.GPT > 60 ORDER BY T1.Birthday ASC | moderate |
358 | What is the border color of card "Ancestor's Chosen"? | SELECT DISTINCT borderColor FROM cards WHERE name = 'Ancestor''s Chosen' | simple |
159 | List all the withdrawals in cash transactions that the client with the id 3356 makes. | SELECT T4.trans_id FROM client AS T1 INNER JOIN disp AS T2 ON T1.client_id = T2.client_id INNER JOIN account AS T3 ON T2.account_id = T3.account_id INNER JOIN trans AS T4 ON T3.account_id = T4.account_id WHERE T1.client_id = 3356 AND T4.operation = 'VYBER' | simple |
635 | How many posts by Matt Parker have more than 4 votes? | SELECT COUNT(T1.Id) FROM users AS T1 INNER JOIN postHistory AS T2 ON T1.Id = T2.UserId INNER JOIN posts AS T3 ON T2.PostId = T3.Id INNER JOIN votes AS T4 ON T4.PostId = T3.Id WHERE T1.DisplayName = 'Matt Parker' GROUP BY T2.PostId, T4.Id HAVING COUNT(T4.Id) > 4 | moderate |
52 | What is the total number of schools whose total SAT scores are greater or equal to 1500 whose mailing city is Lakeport? | SELECT COUNT(T1.cds) FROM satscores AS T1 INNER JOIN schools AS T2 ON T1.cds = T2.CDSCode WHERE T2.MailCity = 'Lakeport' AND (T1.AvgScrRead + T1.AvgScrMath + T1.AvgScrWrite) >= 1500 | simple |
1,206 | When is the laboratory examination of patient '48473' where his/her AST glutamic oxaloacetic transaminase (GOT) index is above the normal range. | SELECT Date FROM Laboratory WHERE ID = 48473 AND GOT >= 60 | simple |
799 | How many superheroes didn't have any publisher? | SELECT COUNT(T1.id) FROM superhero AS T1 INNER JOIN publisher AS T2 ON T1.publisher_id = T2.id WHERE T2.id = 1 | simple |
Subsets and Splits