text
stringlengths 114
1.06k
|
---|
### question: What are names of the movies that are either made before 1980 or directed by James Cameron? ### answer: SELECT title FROM Movie WHERE director = "James Cameron" OR YEAR < 1980 ### context: CREATE TABLE Movie (title VARCHAR, director VARCHAR, YEAR VARCHAR) |
### question: What are the names of reviewers who had rated 3 star and 4 star? ### answer: SELECT T2.name FROM Rating AS T1 JOIN Reviewer AS T2 ON T1.rID = T2.rID WHERE T1.stars = 3 INTERSECT SELECT T2.name FROM Rating AS T1 JOIN Reviewer AS T2 ON T1.rID = T2.rID WHERE T1.stars = 4 ### context: CREATE TABLE Reviewer (name VARCHAR, rID VARCHAR); CREATE TABLE Rating (rID VARCHAR, stars VARCHAR) |
### question: What are the names of movies that get 3 star and 4 star? ### answer: SELECT T2.title FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE T1.stars = 3 INTERSECT SELECT T2.title FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE T1.stars = 4 ### context: CREATE TABLE Rating (mID VARCHAR, stars VARCHAR); CREATE TABLE Movie (title VARCHAR, mID VARCHAR) |
### question: How many counties are there? ### answer: SELECT COUNT(*) FROM county_public_safety ### context: CREATE TABLE county_public_safety (Id VARCHAR) |
### question: List the names of counties in descending order of population. ### answer: SELECT Name FROM county_public_safety ORDER BY Population DESC ### context: CREATE TABLE county_public_safety (Name VARCHAR, Population VARCHAR) |
### question: List the distinct police forces of counties whose location is not on east side. ### answer: SELECT DISTINCT Police_force FROM county_public_safety WHERE LOCATION <> "East" ### context: CREATE TABLE county_public_safety (Police_force VARCHAR, LOCATION VARCHAR) |
### question: What are the minimum and maximum crime rate of counties? ### answer: SELECT MIN(Crime_rate), MAX(Crime_rate) FROM county_public_safety ### context: CREATE TABLE county_public_safety (Crime_rate INTEGER) |
### question: Show the crime rates of counties in ascending order of number of police officers. ### answer: SELECT Crime_rate FROM county_public_safety ORDER BY Police_officers ### context: CREATE TABLE county_public_safety (Crime_rate VARCHAR, Police_officers VARCHAR) |
### question: What are the names of cities in ascending alphabetical order? ### answer: SELECT Name FROM city ORDER BY Name ### context: CREATE TABLE city (Name VARCHAR) |
### question: What are the percentage of hispanics in cities with the black percentage higher than 10? ### answer: SELECT Hispanic FROM city WHERE Black > 10 ### context: CREATE TABLE city (Hispanic VARCHAR, Black INTEGER) |
### question: List the name of the county with the largest population. ### answer: SELECT Name FROM county_public_safety ORDER BY Population DESC LIMIT 1 ### context: CREATE TABLE county_public_safety (Name VARCHAR, Population VARCHAR) |
### question: List the names of the city with the top 5 white percentages. ### answer: SELECT Name FROM city ORDER BY White DESC LIMIT 5 ### context: CREATE TABLE city (Name VARCHAR, White VARCHAR) |
### question: Show names of cities and names of counties they are in. ### answer: SELECT T1.Name, T2.Name FROM city AS T1 JOIN county_public_safety AS T2 ON T1.County_ID = T2.County_ID ### context: CREATE TABLE city (Name VARCHAR, County_ID VARCHAR); CREATE TABLE county_public_safety (Name VARCHAR, County_ID VARCHAR) |
### question: Show white percentages of cities and the crime rates of counties they are in. ### answer: SELECT T1.White, T2.Crime_rate FROM city AS T1 JOIN county_public_safety AS T2 ON T1.County_ID = T2.County_ID ### context: CREATE TABLE city (White VARCHAR, County_ID VARCHAR); CREATE TABLE county_public_safety (Crime_rate VARCHAR, County_ID VARCHAR) |
### question: Show the name of cities in the county that has the largest number of police officers. ### answer: SELECT name FROM city WHERE county_ID = (SELECT county_ID FROM county_public_safety ORDER BY Police_officers DESC LIMIT 1) ### context: CREATE TABLE city (name VARCHAR, county_ID VARCHAR, Police_officers VARCHAR); CREATE TABLE county_public_safety (name VARCHAR, county_ID VARCHAR, Police_officers VARCHAR) |
### question: Show the number of cities in counties that have a population more than 20000. ### answer: SELECT COUNT(*) FROM city WHERE county_ID IN (SELECT county_ID FROM county_public_safety WHERE population > 20000) ### context: CREATE TABLE county_public_safety (county_ID VARCHAR, population INTEGER); CREATE TABLE city (county_ID VARCHAR, population INTEGER) |
### question: Show the crime rate of counties with a city having white percentage more than 90. ### answer: SELECT T2.Crime_rate FROM city AS T1 JOIN county_public_safety AS T2 ON T1.County_ID = T2.County_ID WHERE T1.White > 90 ### context: CREATE TABLE county_public_safety (Crime_rate VARCHAR, County_ID VARCHAR); CREATE TABLE city (County_ID VARCHAR, White INTEGER) |
### question: Please show the police forces and the number of counties with each police force. ### answer: SELECT Police_force, COUNT(*) FROM county_public_safety GROUP BY Police_force ### context: CREATE TABLE county_public_safety (Police_force VARCHAR) |
### question: What is the location shared by most counties? ### answer: SELECT LOCATION FROM county_public_safety GROUP BY LOCATION ORDER BY COUNT(*) DESC LIMIT 1 ### context: CREATE TABLE county_public_safety (LOCATION VARCHAR) |
### question: List the names of counties that do not have any cities. ### answer: SELECT Name FROM county_public_safety WHERE NOT County_ID IN (SELECT County_ID FROM city) ### context: CREATE TABLE city (Name VARCHAR, County_ID VARCHAR); CREATE TABLE county_public_safety (Name VARCHAR, County_ID VARCHAR) |
### question: Show the police force shared by counties with location on the east and west. ### answer: SELECT Police_force FROM county_public_safety WHERE LOCATION = "East" INTERSECT SELECT Police_force FROM county_public_safety WHERE LOCATION = "West" ### context: CREATE TABLE county_public_safety (Police_force VARCHAR, LOCATION VARCHAR) |
### question: Show the names of cities in counties that have a crime rate less than 100. ### answer: SELECT name FROM city WHERE county_id IN (SELECT county_id FROM county_public_safety WHERE Crime_rate < 100) ### context: CREATE TABLE county_public_safety (name VARCHAR, county_id VARCHAR, Crime_rate INTEGER); CREATE TABLE city (name VARCHAR, county_id VARCHAR, Crime_rate INTEGER) |
### question: Show the case burden of counties in descending order of population. ### answer: SELECT Case_burden FROM county_public_safety ORDER BY Population DESC ### context: CREATE TABLE county_public_safety (Case_burden VARCHAR, Population VARCHAR) |
### question: Find the names of all modern rooms with a base price below $160 and two beds. ### answer: SELECT roomName FROM Rooms WHERE basePrice < 160 AND beds = 2 AND decor = 'modern' ### context: CREATE TABLE Rooms (roomName VARCHAR, decor VARCHAR, basePrice VARCHAR, beds VARCHAR) |
### question: Find all the rooms that have a price higher than 160 and can accommodate more than 2 people. Report room names and ids. ### answer: SELECT roomName, RoomId FROM Rooms WHERE basePrice > 160 AND maxOccupancy > 2 ### context: CREATE TABLE Rooms (roomName VARCHAR, RoomId VARCHAR, basePrice VARCHAR, maxOccupancy VARCHAR) |
### question: Find the most popular room in the hotel. The most popular room is the room that had seen the largest number of reservations. ### answer: SELECT T2.roomName FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId GROUP BY T1.Room ORDER BY COUNT(*) DESC LIMIT 1 ### context: CREATE TABLE Reservations (Room VARCHAR); CREATE TABLE Rooms (roomName VARCHAR, RoomId VARCHAR) |
### question: How many kids stay in the rooms reserved by ROY SWEAZY? ### answer: SELECT kids FROM Reservations WHERE FirstName = "ROY" AND LastName = "SWEAZY" ### context: CREATE TABLE Reservations (kids VARCHAR, FirstName VARCHAR, LastName VARCHAR) |
### question: How many times does ROY SWEAZY has reserved a room. ### answer: SELECT COUNT(*) FROM Reservations WHERE FirstName = "ROY" AND LastName = "SWEAZY" ### context: CREATE TABLE Reservations (FirstName VARCHAR, LastName VARCHAR) |
### question: Which room has the highest rate? List the room's full name, rate, check in and check out date. ### answer: SELECT T2.roomName, T1.Rate, T1.CheckIn, T1.CheckOut FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId GROUP BY T1.Room ORDER BY T1.Rate DESC LIMIT 1 ### context: CREATE TABLE Rooms (roomName VARCHAR, RoomId VARCHAR); CREATE TABLE Reservations (Rate VARCHAR, CheckIn VARCHAR, CheckOut VARCHAR, Room VARCHAR) |
### question: How many adults stay in the room CONRAD SELBIG checked in on Oct 23, 2010? ### answer: SELECT Adults FROM Reservations WHERE CheckIn = "2010-10-23" AND FirstName = "CONRAD" AND LastName = "SELBIG" ### context: CREATE TABLE Reservations (Adults VARCHAR, LastName VARCHAR, CheckIn VARCHAR, FirstName VARCHAR) |
### question: How many kids stay in the room DAMIEN TRACHSEL checked in on Sep 21, 2010? ### answer: SELECT Kids FROM Reservations WHERE CheckIn = "2010-09-21" AND FirstName = "DAMIEN" AND LastName = "TRACHSEL" ### context: CREATE TABLE Reservations (Kids VARCHAR, LastName VARCHAR, CheckIn VARCHAR, FirstName VARCHAR) |
### question: How many king beds are there? ### answer: SELECT SUM(beds) FROM Rooms WHERE bedtype = 'King' ### context: CREATE TABLE Rooms (beds INTEGER, bedtype VARCHAR) |
### question: List the names and decor of rooms that have a king bed. Sort the list by their price. ### answer: SELECT roomName, decor FROM Rooms WHERE bedtype = 'King' ORDER BY basePrice ### context: CREATE TABLE Rooms (roomName VARCHAR, decor VARCHAR, bedtype VARCHAR, basePrice VARCHAR) |
### question: Which room has cheapest base price? List the room's name and the base price. ### answer: SELECT roomName, basePrice FROM Rooms ORDER BY basePrice LIMIT 1 ### context: CREATE TABLE Rooms (roomName VARCHAR, basePrice VARCHAR) |
### question: What is the decor of room Recluse and defiance? ### answer: SELECT decor FROM Rooms WHERE roomName = "Recluse and defiance" ### context: CREATE TABLE Rooms (decor VARCHAR, roomName VARCHAR) |
### question: What is the average base price of different bed type? List bed type and average base price. ### answer: SELECT bedType, AVG(basePrice) FROM Rooms GROUP BY bedType ### context: CREATE TABLE Rooms (bedType VARCHAR, basePrice INTEGER) |
### question: What is the total number of people who could stay in the modern rooms in this inn? ### answer: SELECT SUM(maxOccupancy) FROM Rooms WHERE decor = 'modern' ### context: CREATE TABLE Rooms (maxOccupancy INTEGER, decor VARCHAR) |
### question: What kind of decor has the least number of reservations? ### answer: SELECT T2.decor FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId GROUP BY T2.decor ORDER BY COUNT(T2.decor) LIMIT 1 ### context: CREATE TABLE Reservations (Room VARCHAR); CREATE TABLE Rooms (decor VARCHAR, RoomId VARCHAR) |
### question: List how many times the number of people in the room reached the maximum occupancy of the room. The number of people include adults and kids. ### answer: SELECT COUNT(*) FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId WHERE T2.maxOccupancy = T1.Adults + T1.Kids ### context: CREATE TABLE Rooms (RoomId VARCHAR, maxOccupancy VARCHAR); CREATE TABLE Reservations (Room VARCHAR, Adults VARCHAR, Kids VARCHAR) |
### question: Find the first and last names of people who payed more than the rooms' base prices. ### answer: SELECT T1.firstname, T1.lastname FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId WHERE T1.Rate - T2.basePrice > 0 ### context: CREATE TABLE Reservations (firstname VARCHAR, lastname VARCHAR, Room VARCHAR, Rate VARCHAR); CREATE TABLE Rooms (RoomId VARCHAR, basePrice VARCHAR) |
### question: How many rooms are there? ### answer: SELECT COUNT(*) FROM Rooms ### context: CREATE TABLE Rooms (Id VARCHAR) |
### question: Find the number of rooms with a king bed. ### answer: SELECT COUNT(*) FROM Rooms WHERE bedType = "King" ### context: CREATE TABLE Rooms (bedType VARCHAR) |
### question: Find the number of rooms for each bed type. ### answer: SELECT bedType, COUNT(*) FROM Rooms GROUP BY bedType ### context: CREATE TABLE Rooms (bedType VARCHAR) |
### question: Find the name of the room with the maximum occupancy. ### answer: SELECT roomName FROM Rooms ORDER BY maxOccupancy DESC LIMIT 1 ### context: CREATE TABLE Rooms (roomName VARCHAR, maxOccupancy VARCHAR) |
### question: Find the id and name of the most expensive base price room. ### answer: SELECT RoomId, roomName FROM Rooms ORDER BY basePrice DESC LIMIT 1 ### context: CREATE TABLE Rooms (RoomId VARCHAR, roomName VARCHAR, basePrice VARCHAR) |
### question: List the type of bed and name of all traditional rooms. ### answer: SELECT roomName, bedType FROM Rooms WHERE decor = "traditional" ### context: CREATE TABLE Rooms (roomName VARCHAR, bedType VARCHAR, decor VARCHAR) |
### question: Find the number of rooms with king bed for each decor type. ### answer: SELECT decor, COUNT(*) FROM Rooms WHERE bedType = "King" GROUP BY decor ### context: CREATE TABLE Rooms (decor VARCHAR, bedType VARCHAR) |
### question: Find the average and minimum price of the rooms in different decor. ### answer: SELECT decor, AVG(basePrice), MIN(basePrice) FROM Rooms GROUP BY decor ### context: CREATE TABLE Rooms (decor VARCHAR, basePrice INTEGER) |
### question: List the name of all rooms sorted by their prices. ### answer: SELECT roomName FROM Rooms ORDER BY basePrice ### context: CREATE TABLE Rooms (roomName VARCHAR, basePrice VARCHAR) |
### question: Find the number of rooms with price higher than 120 for different decor. ### answer: SELECT decor, COUNT(*) FROM Rooms WHERE basePrice > 120 GROUP BY decor ### context: CREATE TABLE Rooms (decor VARCHAR, basePrice INTEGER) |
### question: List the name of rooms with king or queen bed. ### answer: SELECT roomName FROM Rooms WHERE bedType = "King" OR bedType = "Queen" ### context: CREATE TABLE Rooms (roomName VARCHAR, bedType VARCHAR) |
### question: How many different types of beds are there? ### answer: SELECT COUNT(DISTINCT bedType) FROM Rooms ### context: CREATE TABLE Rooms (bedType VARCHAR) |
### question: Find the name and id of the top 3 expensive rooms. ### answer: SELECT RoomId, roomName FROM Rooms ORDER BY basePrice DESC LIMIT 3 ### context: CREATE TABLE Rooms (RoomId VARCHAR, roomName VARCHAR, basePrice VARCHAR) |
### question: Find the name of rooms whose price is higher than the average price. ### answer: SELECT roomName FROM Rooms WHERE basePrice > (SELECT AVG(basePrice) FROM Rooms) ### context: CREATE TABLE Rooms (roomName VARCHAR, basePrice INTEGER) |
### question: Find the number of rooms that do not have any reservation. ### answer: SELECT COUNT(*) FROM rooms WHERE NOT roomid IN (SELECT DISTINCT room FROM reservations) ### context: CREATE TABLE rooms (roomid VARCHAR, room VARCHAR); CREATE TABLE reservations (roomid VARCHAR, room VARCHAR) |
### question: Return the name and number of reservations made for each of the rooms. ### answer: SELECT T2.roomName, COUNT(*), T1.Room FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId GROUP BY T1.Room ### context: CREATE TABLE Reservations (Room VARCHAR); CREATE TABLE Rooms (roomName VARCHAR, RoomId VARCHAR) |
### question: Find the names of rooms that have been reserved for more than 60 times. ### answer: SELECT T2.roomName FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId GROUP BY T1.Room HAVING COUNT(*) > 60 ### context: CREATE TABLE Reservations (Room VARCHAR); CREATE TABLE Rooms (roomName VARCHAR, RoomId VARCHAR) |
### question: Find the name of rooms whose base price is between 120 and 150. ### answer: SELECT roomname FROM rooms WHERE baseprice BETWEEN 120 AND 150 ### context: CREATE TABLE rooms (roomname VARCHAR, baseprice INTEGER) |
### question: Find the name of rooms booked by some customers whose first name contains ROY. ### answer: SELECT T2.roomName FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId WHERE firstname LIKE '%ROY%' ### context: CREATE TABLE Reservations (Room VARCHAR); CREATE TABLE Rooms (roomName VARCHAR, RoomId VARCHAR) |
### question: what are the details of the cmi masters that have the cross reference code 'Tax'? ### answer: SELECT T1.cmi_details FROM Customer_Master_Index AS T1 JOIN CMI_Cross_References AS T2 ON T1.master_customer_id = T2.master_customer_id WHERE T2.source_system_code = 'Tax' ### context: CREATE TABLE CMI_Cross_References (master_customer_id VARCHAR, source_system_code VARCHAR); CREATE TABLE Customer_Master_Index (cmi_details VARCHAR, master_customer_id VARCHAR) |
### question: What is the cmi cross reference id that is related to at least one council tax entry? List the cross reference id and source system code. ### answer: SELECT T1.cmi_cross_ref_id, T1.source_system_code FROM CMI_Cross_References AS T1 JOIN Council_Tax AS T2 ON T1.cmi_cross_ref_id = T2.cmi_cross_ref_id GROUP BY T1.cmi_cross_ref_id HAVING COUNT(*) >= 1 ### context: CREATE TABLE Council_Tax (cmi_cross_ref_id VARCHAR); CREATE TABLE CMI_Cross_References (cmi_cross_ref_id VARCHAR, source_system_code VARCHAR) |
### question: How many business rates are related to each cmi cross reference? List cross reference id, master customer id and the n ### answer: SELECT T2.cmi_cross_ref_id, T2.master_customer_id, COUNT(*) FROM Business_Rates AS T1 JOIN CMI_Cross_References AS T2 ON T1.cmi_cross_ref_id = T2.cmi_cross_ref_id GROUP BY T2.cmi_cross_ref_id ### context: CREATE TABLE CMI_Cross_References (cmi_cross_ref_id VARCHAR, master_customer_id VARCHAR); CREATE TABLE Business_Rates (cmi_cross_ref_id VARCHAR) |
### question: What is the tax source system code related to the benefits and overpayments? List the code and the benifit id, order by benifit id. ### answer: SELECT T1.source_system_code, T2.council_tax_id FROM CMI_Cross_References AS T1 JOIN Benefits_Overpayments AS T2 ON T1.cmi_cross_ref_id = T2.cmi_cross_ref_id ORDER BY T2.council_tax_id ### context: CREATE TABLE CMI_Cross_References (source_system_code VARCHAR, cmi_cross_ref_id VARCHAR); CREATE TABLE Benefits_Overpayments (council_tax_id VARCHAR, cmi_cross_ref_id VARCHAR) |
### question: Wat is the tax source system code and master customer id of the taxes related to each parking fine id? ### answer: SELECT T1.source_system_code, T1.master_customer_id, T2.council_tax_id FROM CMI_Cross_References AS T1 JOIN Parking_Fines AS T2 ON T1.cmi_cross_ref_id = T2.cmi_cross_ref_id ### context: CREATE TABLE CMI_Cross_References (source_system_code VARCHAR, master_customer_id VARCHAR, cmi_cross_ref_id VARCHAR); CREATE TABLE Parking_Fines (council_tax_id VARCHAR, cmi_cross_ref_id VARCHAR) |
### question: What are the renting arrears tax ids related to the customer master index whose detail is not 'Schmidt, Kertzmann and Lubowitz'? ### answer: SELECT T1.council_tax_id FROM Rent_Arrears AS T1 JOIN CMI_Cross_References AS T2 ON T1.cmi_cross_ref_id = T2.cmi_cross_ref_id JOIN Customer_Master_Index AS T3 ON T3.master_customer_id = T2.master_customer_id WHERE T3.cmi_details <> 'Schmidt , Kertzmann and Lubowitz' ### context: CREATE TABLE Rent_Arrears (council_tax_id VARCHAR, cmi_cross_ref_id VARCHAR); CREATE TABLE Customer_Master_Index (master_customer_id VARCHAR, cmi_details VARCHAR); CREATE TABLE CMI_Cross_References (cmi_cross_ref_id VARCHAR, master_customer_id VARCHAR) |
### question: What are the register ids of electoral registries that have the cross reference source system code 'Electoral' or 'Tax'? ### answer: SELECT T1.electoral_register_id FROM Electoral_Register AS T1 JOIN CMI_Cross_References AS T2 ON T1.cmi_cross_ref_id = T2.cmi_cross_ref_id WHERE T2.source_system_code = 'Electoral' OR T2.source_system_code = 'Tax' ### context: CREATE TABLE Electoral_Register (electoral_register_id VARCHAR, cmi_cross_ref_id VARCHAR); CREATE TABLE CMI_Cross_References (cmi_cross_ref_id VARCHAR, source_system_code VARCHAR) |
### question: How many different source system code for the cmi cross references are there? ### answer: SELECT COUNT(DISTINCT source_system_code) FROM CMI_cross_references ### context: CREATE TABLE CMI_cross_references (source_system_code VARCHAR) |
### question: List all information about customer master index, and sort them by details in descending order. ### answer: SELECT * FROM customer_master_index ORDER BY cmi_details DESC ### context: CREATE TABLE customer_master_index (cmi_details VARCHAR) |
### question: List the council tax ids and their related cmi cross references of all the parking fines. ### answer: SELECT council_tax_id, cmi_cross_ref_id FROM parking_fines ### context: CREATE TABLE parking_fines (council_tax_id VARCHAR, cmi_cross_ref_id VARCHAR) |
### question: How many council taxes are collected for renting arrears ? ### answer: SELECT COUNT(*) FROM rent_arrears ### context: CREATE TABLE rent_arrears (Id VARCHAR) |
### question: What are the distinct cross reference source system codes which are related to the master customer details 'Gottlieb, Becker and Wyman'? ### answer: SELECT DISTINCT T2.source_system_code FROM customer_master_index AS T1 JOIN cmi_cross_references AS T2 ON T1.master_customer_id = T2.master_customer_id WHERE T1.cmi_details = 'Gottlieb , Becker and Wyman' ### context: CREATE TABLE customer_master_index (master_customer_id VARCHAR, cmi_details VARCHAR); CREATE TABLE cmi_cross_references (source_system_code VARCHAR, master_customer_id VARCHAR) |
### question: Which cmi cross reference id is not related to any parking taxes? ### answer: SELECT cmi_cross_ref_id FROM cmi_cross_references EXCEPT SELECT cmi_cross_ref_id FROM parking_fines ### context: CREATE TABLE parking_fines (cmi_cross_ref_id VARCHAR); CREATE TABLE cmi_cross_references (cmi_cross_ref_id VARCHAR) |
### question: Which distinct source system code includes the substring 'en'? ### answer: SELECT DISTINCT source_system_code FROM cmi_cross_references WHERE source_system_code LIKE '%en%' ### context: CREATE TABLE cmi_cross_references (source_system_code VARCHAR) |
### question: How many parties are there? ### answer: SELECT COUNT(*) FROM party ### context: CREATE TABLE party (Id VARCHAR) |
### question: List the themes of parties in ascending order of number of hosts. ### answer: SELECT Party_Theme FROM party ORDER BY Number_of_hosts ### context: CREATE TABLE party (Party_Theme VARCHAR, Number_of_hosts VARCHAR) |
### question: What are the themes and locations of parties? ### answer: SELECT Party_Theme, LOCATION FROM party ### context: CREATE TABLE party (Party_Theme VARCHAR, LOCATION VARCHAR) |
### question: Show the first year and last year of parties with theme "Spring" or "Teqnology". ### answer: SELECT First_year, Last_year FROM party WHERE Party_Theme = "Spring" OR Party_Theme = "Teqnology" ### context: CREATE TABLE party (First_year VARCHAR, Last_year VARCHAR, Party_Theme VARCHAR) |
### question: What is the average number of hosts for parties? ### answer: SELECT AVG(Number_of_hosts) FROM party ### context: CREATE TABLE party (Number_of_hosts INTEGER) |
### question: What is the location of the party with the most hosts? ### answer: SELECT LOCATION FROM party ORDER BY Number_of_hosts DESC LIMIT 1 ### context: CREATE TABLE party (LOCATION VARCHAR, Number_of_hosts VARCHAR) |
### question: Show different nationalities along with the number of hosts of each nationality. ### answer: SELECT Nationality, COUNT(*) FROM HOST GROUP BY Nationality ### context: CREATE TABLE HOST (Nationality VARCHAR) |
### question: Show the most common nationality of hosts. ### answer: SELECT Nationality FROM HOST GROUP BY Nationality ORDER BY COUNT(*) DESC LIMIT 1 ### context: CREATE TABLE HOST (Nationality VARCHAR) |
### question: Show the nations that have both hosts older than 45 and hosts younger than 35. ### answer: SELECT Nationality FROM HOST WHERE Age > 45 INTERSECT SELECT Nationality FROM HOST WHERE Age < 35 ### context: CREATE TABLE HOST (Nationality VARCHAR, Age INTEGER) |
### question: Show the themes of parties and the names of the party hosts. ### answer: SELECT T3.Party_Theme, T2.Name FROM party_host AS T1 JOIN HOST AS T2 ON T1.Host_ID = T2.Host_ID JOIN party AS T3 ON T1.Party_ID = T3.Party_ID ### context: CREATE TABLE HOST (Name VARCHAR, Host_ID VARCHAR); CREATE TABLE party_host (Host_ID VARCHAR, Party_ID VARCHAR); CREATE TABLE party (Party_Theme VARCHAR, Party_ID VARCHAR) |
### question: Show the locations of parties and the names of the party hosts in ascending order of the age of the host. ### answer: SELECT T3.Location, T2.Name FROM party_host AS T1 JOIN HOST AS T2 ON T1.Host_ID = T2.Host_ID JOIN party AS T3 ON T1.Party_ID = T3.Party_ID ORDER BY T2.Age ### context: CREATE TABLE party (Location VARCHAR, Party_ID VARCHAR); CREATE TABLE HOST (Name VARCHAR, Host_ID VARCHAR, Age VARCHAR); CREATE TABLE party_host (Host_ID VARCHAR, Party_ID VARCHAR) |
### question: Show the locations of parties with hosts older than 50. ### answer: SELECT T3.Location FROM party_host AS T1 JOIN HOST AS T2 ON T1.Host_ID = T2.Host_ID JOIN party AS T3 ON T1.Party_ID = T3.Party_ID WHERE T2.Age > 50 ### context: CREATE TABLE party (Location VARCHAR, Party_ID VARCHAR); CREATE TABLE party_host (Host_ID VARCHAR, Party_ID VARCHAR); CREATE TABLE HOST (Host_ID VARCHAR, Age INTEGER) |
### question: Show the host names for parties with number of hosts greater than 20. ### answer: SELECT T2.Name FROM party_host AS T1 JOIN HOST AS T2 ON T1.Host_ID = T2.Host_ID JOIN party AS T3 ON T1.Party_ID = T3.Party_ID WHERE T3.Number_of_hosts > 20 ### context: CREATE TABLE HOST (Name VARCHAR, Host_ID VARCHAR); CREATE TABLE party_host (Host_ID VARCHAR, Party_ID VARCHAR); CREATE TABLE party (Party_ID VARCHAR, Number_of_hosts INTEGER) |
### question: Show the name and the nationality of the oldest host. ### answer: SELECT Name, Nationality FROM HOST ORDER BY Age DESC LIMIT 1 ### context: CREATE TABLE HOST (Name VARCHAR, Nationality VARCHAR, Age VARCHAR) |
### question: List the names of hosts who did not serve as a host of any party in our record. ### answer: SELECT Name FROM HOST WHERE NOT Host_ID IN (SELECT Host_ID FROM party_host) ### context: CREATE TABLE HOST (Name VARCHAR, Host_ID VARCHAR); CREATE TABLE party_host (Name VARCHAR, Host_ID VARCHAR) |
### question: Show all region code and region name sorted by the codes. ### answer: SELECT region_code, region_name FROM region ORDER BY region_code ### context: CREATE TABLE region (region_code VARCHAR, region_name VARCHAR) |
### question: List all region names in alphabetical order. ### answer: SELECT region_name FROM region ORDER BY region_name ### context: CREATE TABLE region (region_name VARCHAR) |
### question: Show names for all regions except for Denmark. ### answer: SELECT region_name FROM region WHERE region_name <> 'Denmark' ### context: CREATE TABLE region (region_name VARCHAR) |
### question: How many storms had death records? ### answer: SELECT COUNT(*) FROM storm WHERE Number_Deaths > 0 ### context: CREATE TABLE storm (Number_Deaths INTEGER) |
### question: List name, dates active, and number of deaths for all storms with at least 1 death. ### answer: SELECT name, dates_active, number_deaths FROM storm WHERE number_deaths >= 1 ### context: CREATE TABLE storm (name VARCHAR, dates_active VARCHAR, number_deaths VARCHAR) |
### question: Show the average and maximum damage for all storms with max speed higher than 1000. ### answer: SELECT AVG(damage_millions_USD), MAX(damage_millions_USD) FROM storm WHERE max_speed > 1000 ### context: CREATE TABLE storm (damage_millions_USD INTEGER, max_speed INTEGER) |
### question: What is the total number of deaths and damage for all storms with a max speed greater than the average? ### answer: SELECT SUM(number_deaths), SUM(damage_millions_USD) FROM storm WHERE max_speed > (SELECT AVG(max_speed) FROM storm) ### context: CREATE TABLE storm (number_deaths INTEGER, damage_millions_USD INTEGER, max_speed INTEGER) |
### question: List name and damage for all storms in a descending order of max speed. ### answer: SELECT name, damage_millions_USD FROM storm ORDER BY max_speed DESC ### context: CREATE TABLE storm (name VARCHAR, damage_millions_USD VARCHAR, max_speed VARCHAR) |
### question: How many regions are affected? ### answer: SELECT COUNT(DISTINCT region_id) FROM affected_region ### context: CREATE TABLE affected_region (region_id VARCHAR) |
### question: Show the name for regions not affected. ### answer: SELECT region_name FROM region WHERE NOT region_id IN (SELECT region_id FROM affected_region) ### context: CREATE TABLE region (region_name VARCHAR, region_id VARCHAR); CREATE TABLE affected_region (region_name VARCHAR, region_id VARCHAR) |
### question: Show the name for regions and the number of storms for each region. ### answer: SELECT T1.region_name, COUNT(*) FROM region AS T1 JOIN affected_region AS T2 ON T1.region_id = T2.region_id GROUP BY T1.region_id ### context: CREATE TABLE region (region_name VARCHAR, region_id VARCHAR); CREATE TABLE affected_region (region_id VARCHAR) |
### question: List the name for storms and the number of affected regions for each storm. ### answer: SELECT T1.name, COUNT(*) FROM storm AS T1 JOIN affected_region AS T2 ON T1.storm_id = T2.storm_id GROUP BY T1.storm_id ### context: CREATE TABLE affected_region (storm_id VARCHAR); CREATE TABLE storm (name VARCHAR, storm_id VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.