Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
1,500
<question>: What are names of the movies that are either made before 1980 or directed by James Cameron? <context>: CREATE TABLE Movie (title VARCHAR, director VARCHAR, YEAR VARCHAR)
SELECT title FROM Movie WHERE director = "James Cameron" OR YEAR < 1980
1,501
<question>: What are the names of reviewers who had rated 3 star and 4 star? <context>: CREATE TABLE Reviewer (name VARCHAR, rID VARCHAR); CREATE TABLE Rating (rID VARCHAR, stars VARCHAR)
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
1,502
<question>: What are the names of movies that get 3 star and 4 star? <context>: CREATE TABLE Rating (mID VARCHAR, stars VARCHAR); CREATE TABLE Movie (title VARCHAR, mID VARCHAR)
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
1,503
<question>: How many counties are there? <context>: CREATE TABLE county_public_safety (Id VARCHAR)
SELECT COUNT(*) FROM county_public_safety
1,504
<question>: List the names of counties in descending order of population. <context>: CREATE TABLE county_public_safety (Name VARCHAR, Population VARCHAR)
SELECT Name FROM county_public_safety ORDER BY Population DESC
1,505
<question>: List the distinct police forces of counties whose location is not on east side. <context>: CREATE TABLE county_public_safety (Police_force VARCHAR, LOCATION VARCHAR)
SELECT DISTINCT Police_force FROM county_public_safety WHERE LOCATION <> "East"
1,506
<question>: What are the minimum and maximum crime rate of counties? <context>: CREATE TABLE county_public_safety (Crime_rate INTEGER)
SELECT MIN(Crime_rate), MAX(Crime_rate) FROM county_public_safety
1,507
<question>: Show the crime rates of counties in ascending order of number of police officers. <context>: CREATE TABLE county_public_safety (Crime_rate VARCHAR, Police_officers VARCHAR)
SELECT Crime_rate FROM county_public_safety ORDER BY Police_officers
1,508
<question>: What are the names of cities in ascending alphabetical order? <context>: CREATE TABLE city (Name VARCHAR)
SELECT Name FROM city ORDER BY Name
1,509
<question>: What are the percentage of hispanics in cities with the black percentage higher than 10? <context>: CREATE TABLE city (Hispanic VARCHAR, Black INTEGER)
SELECT Hispanic FROM city WHERE Black > 10
1,510
<question>: List the name of the county with the largest population. <context>: CREATE TABLE county_public_safety (Name VARCHAR, Population VARCHAR)
SELECT Name FROM county_public_safety ORDER BY Population DESC LIMIT 1
1,511
<question>: List the names of the city with the top 5 white percentages. <context>: CREATE TABLE city (Name VARCHAR, White VARCHAR)
SELECT Name FROM city ORDER BY White DESC LIMIT 5
1,512
<question>: Show names of cities and names of counties they are in. <context>: CREATE TABLE city (Name VARCHAR, County_ID VARCHAR); CREATE TABLE county_public_safety (Name VARCHAR, County_ID VARCHAR)
SELECT T1.Name, T2.Name FROM city AS T1 JOIN county_public_safety AS T2 ON T1.County_ID = T2.County_ID
1,513
<question>: Show white percentages of cities and the crime rates of counties they are in. <context>: CREATE TABLE city (White VARCHAR, County_ID VARCHAR); CREATE TABLE county_public_safety (Crime_rate VARCHAR, County_ID VARCHAR)
SELECT T1.White, T2.Crime_rate FROM city AS T1 JOIN county_public_safety AS T2 ON T1.County_ID = T2.County_ID
1,514
<question>: Show the name of cities in the county that has the largest number of police officers. <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)
SELECT name FROM city WHERE county_ID = (SELECT county_ID FROM county_public_safety ORDER BY Police_officers DESC LIMIT 1)
1,515
<question>: Show the number of cities in counties that have a population more than 20000. <context>: CREATE TABLE county_public_safety (county_ID VARCHAR, population INTEGER); CREATE TABLE city (county_ID VARCHAR, population INTEGER)
SELECT COUNT(*) FROM city WHERE county_ID IN (SELECT county_ID FROM county_public_safety WHERE population > 20000)
1,516
<question>: Show the crime rate of counties with a city having white percentage more than 90. <context>: CREATE TABLE county_public_safety (Crime_rate VARCHAR, County_ID VARCHAR); CREATE TABLE city (County_ID VARCHAR, White INTEGER)
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
1,517
<question>: Please show the police forces and the number of counties with each police force. <context>: CREATE TABLE county_public_safety (Police_force VARCHAR)
SELECT Police_force, COUNT(*) FROM county_public_safety GROUP BY Police_force
1,518
<question>: What is the location shared by most counties? <context>: CREATE TABLE county_public_safety (LOCATION VARCHAR)
SELECT LOCATION FROM county_public_safety GROUP BY LOCATION ORDER BY COUNT(*) DESC LIMIT 1
1,519
<question>: List the names of counties that do not have any cities. <context>: CREATE TABLE city (Name VARCHAR, County_ID VARCHAR); CREATE TABLE county_public_safety (Name VARCHAR, County_ID VARCHAR)
SELECT Name FROM county_public_safety WHERE NOT County_ID IN (SELECT County_ID FROM city)
1,520
<question>: Show the police force shared by counties with location on the east and west. <context>: CREATE TABLE county_public_safety (Police_force VARCHAR, LOCATION VARCHAR)
SELECT Police_force FROM county_public_safety WHERE LOCATION = "East" INTERSECT SELECT Police_force FROM county_public_safety WHERE LOCATION = "West"
1,521
<question>: Show the names of cities in counties that have a crime rate less than 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)
SELECT name FROM city WHERE county_id IN (SELECT county_id FROM county_public_safety WHERE Crime_rate < 100)
1,522
<question>: Show the case burden of counties in descending order of population. <context>: CREATE TABLE county_public_safety (Case_burden VARCHAR, Population VARCHAR)
SELECT Case_burden FROM county_public_safety ORDER BY Population DESC
1,523
<question>: Find the names of all modern rooms with a base price below $160 and two beds. <context>: CREATE TABLE Rooms (roomName VARCHAR, decor VARCHAR, basePrice VARCHAR, beds VARCHAR)
SELECT roomName FROM Rooms WHERE basePrice < 160 AND beds = 2 AND decor = 'modern'
1,524
<question>: Find all the rooms that have a price higher than 160 and can accommodate more than 2 people. Report room names and ids. <context>: CREATE TABLE Rooms (roomName VARCHAR, RoomId VARCHAR, basePrice VARCHAR, maxOccupancy VARCHAR)
SELECT roomName, RoomId FROM Rooms WHERE basePrice > 160 AND maxOccupancy > 2
1,525
<question>: Find the most popular room in the hotel. The most popular room is the room that had seen the largest number of reservations. <context>: CREATE TABLE Reservations (Room VARCHAR); CREATE TABLE Rooms (roomName VARCHAR, RoomId VARCHAR)
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
1,526
<question>: How many kids stay in the rooms reserved by ROY SWEAZY? <context>: CREATE TABLE Reservations (kids VARCHAR, FirstName VARCHAR, LastName VARCHAR)
SELECT kids FROM Reservations WHERE FirstName = "ROY" AND LastName = "SWEAZY"
1,527
<question>: How many times does ROY SWEAZY has reserved a room. <context>: CREATE TABLE Reservations (FirstName VARCHAR, LastName VARCHAR)
SELECT COUNT(*) FROM Reservations WHERE FirstName = "ROY" AND LastName = "SWEAZY"
1,528
<question>: Which room has the highest rate? List the room's full name, rate, check in and check out date. <context>: CREATE TABLE Rooms (roomName VARCHAR, RoomId VARCHAR); CREATE TABLE Reservations (Rate VARCHAR, CheckIn VARCHAR, CheckOut VARCHAR, Room VARCHAR)
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
1,529
<question>: How many adults stay in the room CONRAD SELBIG checked in on Oct 23, 2010? <context>: CREATE TABLE Reservations (Adults VARCHAR, LastName VARCHAR, CheckIn VARCHAR, FirstName VARCHAR)
SELECT Adults FROM Reservations WHERE CheckIn = "2010-10-23" AND FirstName = "CONRAD" AND LastName = "SELBIG"
1,530
<question>: How many kids stay in the room DAMIEN TRACHSEL checked in on Sep 21, 2010? <context>: CREATE TABLE Reservations (Kids VARCHAR, LastName VARCHAR, CheckIn VARCHAR, FirstName VARCHAR)
SELECT Kids FROM Reservations WHERE CheckIn = "2010-09-21" AND FirstName = "DAMIEN" AND LastName = "TRACHSEL"
1,531
<question>: How many king beds are there? <context>: CREATE TABLE Rooms (beds INTEGER, bedtype VARCHAR)
SELECT SUM(beds) FROM Rooms WHERE bedtype = 'King'
1,532
<question>: List the names and decor of rooms that have a king bed. Sort the list by their price. <context>: CREATE TABLE Rooms (roomName VARCHAR, decor VARCHAR, bedtype VARCHAR, basePrice VARCHAR)
SELECT roomName, decor FROM Rooms WHERE bedtype = 'King' ORDER BY basePrice
1,533
<question>: Which room has cheapest base price? List the room's name and the base price. <context>: CREATE TABLE Rooms (roomName VARCHAR, basePrice VARCHAR)
SELECT roomName, basePrice FROM Rooms ORDER BY basePrice LIMIT 1
1,534
<question>: What is the decor of room Recluse and defiance? <context>: CREATE TABLE Rooms (decor VARCHAR, roomName VARCHAR)
SELECT decor FROM Rooms WHERE roomName = "Recluse and defiance"
1,535
<question>: What is the average base price of different bed type? List bed type and average base price. <context>: CREATE TABLE Rooms (bedType VARCHAR, basePrice INTEGER)
SELECT bedType, AVG(basePrice) FROM Rooms GROUP BY bedType
1,536
<question>: What is the total number of people who could stay in the modern rooms in this inn? <context>: CREATE TABLE Rooms (maxOccupancy INTEGER, decor VARCHAR)
SELECT SUM(maxOccupancy) FROM Rooms WHERE decor = 'modern'
1,537
<question>: What kind of decor has the least number of reservations? <context>: CREATE TABLE Reservations (Room VARCHAR); CREATE TABLE Rooms (decor VARCHAR, RoomId VARCHAR)
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
1,538
<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. <context>: CREATE TABLE Rooms (RoomId VARCHAR, maxOccupancy VARCHAR); CREATE TABLE Reservations (Room VARCHAR, Adults VARCHAR, Kids VARCHAR)
SELECT COUNT(*) FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId WHERE T2.maxOccupancy = T1.Adults + T1.Kids
1,539
<question>: Find the first and last names of people who payed more than the rooms' base prices. <context>: CREATE TABLE Reservations (firstname VARCHAR, lastname VARCHAR, Room VARCHAR, Rate VARCHAR); CREATE TABLE Rooms (RoomId VARCHAR, basePrice VARCHAR)
SELECT T1.firstname, T1.lastname FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId WHERE T1.Rate - T2.basePrice > 0
1,540
<question>: How many rooms are there? <context>: CREATE TABLE Rooms (Id VARCHAR)
SELECT COUNT(*) FROM Rooms
1,541
<question>: Find the number of rooms with a king bed. <context>: CREATE TABLE Rooms (bedType VARCHAR)
SELECT COUNT(*) FROM Rooms WHERE bedType = "King"
1,542
<question>: Find the number of rooms for each bed type. <context>: CREATE TABLE Rooms (bedType VARCHAR)
SELECT bedType, COUNT(*) FROM Rooms GROUP BY bedType
1,543
<question>: Find the name of the room with the maximum occupancy. <context>: CREATE TABLE Rooms (roomName VARCHAR, maxOccupancy VARCHAR)
SELECT roomName FROM Rooms ORDER BY maxOccupancy DESC LIMIT 1
1,544
<question>: Find the id and name of the most expensive base price room. <context>: CREATE TABLE Rooms (RoomId VARCHAR, roomName VARCHAR, basePrice VARCHAR)
SELECT RoomId, roomName FROM Rooms ORDER BY basePrice DESC LIMIT 1
1,545
<question>: List the type of bed and name of all traditional rooms. <context>: CREATE TABLE Rooms (roomName VARCHAR, bedType VARCHAR, decor VARCHAR)
SELECT roomName, bedType FROM Rooms WHERE decor = "traditional"
1,546
<question>: Find the number of rooms with king bed for each decor type. <context>: CREATE TABLE Rooms (decor VARCHAR, bedType VARCHAR)
SELECT decor, COUNT(*) FROM Rooms WHERE bedType = "King" GROUP BY decor
1,547
<question>: Find the average and minimum price of the rooms in different decor. <context>: CREATE TABLE Rooms (decor VARCHAR, basePrice INTEGER)
SELECT decor, AVG(basePrice), MIN(basePrice) FROM Rooms GROUP BY decor
1,548
<question>: List the name of all rooms sorted by their prices. <context>: CREATE TABLE Rooms (roomName VARCHAR, basePrice VARCHAR)
SELECT roomName FROM Rooms ORDER BY basePrice
1,549
<question>: Find the number of rooms with price higher than 120 for different decor. <context>: CREATE TABLE Rooms (decor VARCHAR, basePrice INTEGER)
SELECT decor, COUNT(*) FROM Rooms WHERE basePrice > 120 GROUP BY decor
1,550
<question>: List the name of rooms with king or queen bed. <context>: CREATE TABLE Rooms (roomName VARCHAR, bedType VARCHAR)
SELECT roomName FROM Rooms WHERE bedType = "King" OR bedType = "Queen"
1,551
<question>: How many different types of beds are there? <context>: CREATE TABLE Rooms (bedType VARCHAR)
SELECT COUNT(DISTINCT bedType) FROM Rooms
1,552
<question>: Find the name and id of the top 3 expensive rooms. <context>: CREATE TABLE Rooms (RoomId VARCHAR, roomName VARCHAR, basePrice VARCHAR)
SELECT RoomId, roomName FROM Rooms ORDER BY basePrice DESC LIMIT 3
1,553
<question>: Find the name of rooms whose price is higher than the average price. <context>: CREATE TABLE Rooms (roomName VARCHAR, basePrice INTEGER)
SELECT roomName FROM Rooms WHERE basePrice > (SELECT AVG(basePrice) FROM Rooms)
1,554
<question>: Find the number of rooms that do not have any reservation. <context>: CREATE TABLE rooms (roomid VARCHAR, room VARCHAR); CREATE TABLE reservations (roomid VARCHAR, room VARCHAR)
SELECT COUNT(*) FROM rooms WHERE NOT roomid IN (SELECT DISTINCT room FROM reservations)
1,555
<question>: Return the name and number of reservations made for each of the rooms. <context>: CREATE TABLE Reservations (Room VARCHAR); CREATE TABLE Rooms (roomName VARCHAR, RoomId VARCHAR)
SELECT T2.roomName, COUNT(*), T1.Room FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId GROUP BY T1.Room
1,556
<question>: Find the names of rooms that have been reserved for more than 60 times. <context>: CREATE TABLE Reservations (Room VARCHAR); CREATE TABLE Rooms (roomName VARCHAR, RoomId VARCHAR)
SELECT T2.roomName FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId GROUP BY T1.Room HAVING COUNT(*) > 60
1,557
<question>: Find the name of rooms whose base price is between 120 and 150. <context>: CREATE TABLE rooms (roomname VARCHAR, baseprice INTEGER)
SELECT roomname FROM rooms WHERE baseprice BETWEEN 120 AND 150
1,558
<question>: Find the name of rooms booked by some customers whose first name contains ROY. <context>: CREATE TABLE Reservations (Room VARCHAR); CREATE TABLE Rooms (roomName VARCHAR, RoomId VARCHAR)
SELECT T2.roomName FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId WHERE firstname LIKE '%ROY%'
1,559
<question>: what are the details of the cmi masters that have the cross reference 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)
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'
1,560
<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. <context>: CREATE TABLE Council_Tax (cmi_cross_ref_id VARCHAR); CREATE TABLE CMI_Cross_References (cmi_cross_ref_id VARCHAR, source_system_code VARCHAR)
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
1,561
<question>: How many business rates are related to each cmi cross reference? List cross reference id, master customer id and the n <context>: CREATE TABLE CMI_Cross_References (cmi_cross_ref_id VARCHAR, master_customer_id VARCHAR); CREATE TABLE Business_Rates (cmi_cross_ref_id VARCHAR)
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
1,562
<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. <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)
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
1,563
<question>: Wat is the tax source system code and master customer id of the taxes related to each parking fine 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)
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
1,564
<question>: What are the renting arrears tax ids related to the customer master index whose detail is not '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)
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'
1,565
<question>: What are the register ids of electoral registries that have the cross reference source system code 'Electoral' or '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)
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'
1,566
<question>: How many different source system code for the cmi cross references are there? <context>: CREATE TABLE CMI_cross_references (source_system_code VARCHAR)
SELECT COUNT(DISTINCT source_system_code) FROM CMI_cross_references
1,567
<question>: List all information about customer master index, and sort them by details in descending order. <context>: CREATE TABLE customer_master_index (cmi_details VARCHAR)
SELECT * FROM customer_master_index ORDER BY cmi_details DESC
1,568
<question>: List the council tax ids and their related cmi cross references of all the parking fines. <context>: CREATE TABLE parking_fines (council_tax_id VARCHAR, cmi_cross_ref_id VARCHAR)
SELECT council_tax_id, cmi_cross_ref_id FROM parking_fines
1,569
<question>: How many council taxes are collected for renting arrears ? <context>: CREATE TABLE rent_arrears (Id VARCHAR)
SELECT COUNT(*) FROM rent_arrears
1,570
<question>: What are the distinct cross reference source system codes which are related to the master customer 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)
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'
1,571
<question>: Which cmi cross reference id is not related to any parking taxes? <context>: CREATE TABLE parking_fines (cmi_cross_ref_id VARCHAR); CREATE TABLE cmi_cross_references (cmi_cross_ref_id VARCHAR)
SELECT cmi_cross_ref_id FROM cmi_cross_references EXCEPT SELECT cmi_cross_ref_id FROM parking_fines
1,572
<question>: Which distinct source system code includes the substring 'en'? <context>: CREATE TABLE cmi_cross_references (source_system_code VARCHAR)
SELECT DISTINCT source_system_code FROM cmi_cross_references WHERE source_system_code LIKE '%en%'
1,573
<question>: How many parties are there? <context>: CREATE TABLE party (Id VARCHAR)
SELECT COUNT(*) FROM party
1,574
<question>: List the themes of parties in ascending order of number of hosts. <context>: CREATE TABLE party (Party_Theme VARCHAR, Number_of_hosts VARCHAR)
SELECT Party_Theme FROM party ORDER BY Number_of_hosts
1,575
<question>: What are the themes and locations of parties? <context>: CREATE TABLE party (Party_Theme VARCHAR, LOCATION VARCHAR)
SELECT Party_Theme, LOCATION FROM party
1,576
<question>: Show the first year and last year of parties with theme "Spring" or "Teqnology". <context>: CREATE TABLE party (First_year VARCHAR, Last_year VARCHAR, Party_Theme VARCHAR)
SELECT First_year, Last_year FROM party WHERE Party_Theme = "Spring" OR Party_Theme = "Teqnology"
1,577
<question>: What is the average number of hosts for parties? <context>: CREATE TABLE party (Number_of_hosts INTEGER)
SELECT AVG(Number_of_hosts) FROM party
1,578
<question>: What is the location of the party with the most hosts? <context>: CREATE TABLE party (LOCATION VARCHAR, Number_of_hosts VARCHAR)
SELECT LOCATION FROM party ORDER BY Number_of_hosts DESC LIMIT 1
1,579
<question>: Show different nationalities along with the number of hosts of each nationality. <context>: CREATE TABLE HOST (Nationality VARCHAR)
SELECT Nationality, COUNT(*) FROM HOST GROUP BY Nationality
1,580
<question>: Show the most common nationality of hosts. <context>: CREATE TABLE HOST (Nationality VARCHAR)
SELECT Nationality FROM HOST GROUP BY Nationality ORDER BY COUNT(*) DESC LIMIT 1
1,581
<question>: Show the nations that have both hosts older than 45 and hosts younger than 35. <context>: CREATE TABLE HOST (Nationality VARCHAR, Age INTEGER)
SELECT Nationality FROM HOST WHERE Age > 45 INTERSECT SELECT Nationality FROM HOST WHERE Age < 35
1,582
<question>: Show the themes of parties and the names of the party hosts. <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)
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
1,583
<question>: Show the locations of parties and the names of the party hosts in ascending order of the age of the host. <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)
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
1,584
<question>: Show the locations of parties with hosts older than 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)
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
1,585
<question>: Show the host names for parties with number of hosts greater than 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)
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
1,586
<question>: Show the name and the nationality of the oldest host. <context>: CREATE TABLE HOST (Name VARCHAR, Nationality VARCHAR, Age VARCHAR)
SELECT Name, Nationality FROM HOST ORDER BY Age DESC LIMIT 1
1,587
<question>: List the names of hosts who did not serve as a host of any party in our record. <context>: CREATE TABLE HOST (Name VARCHAR, Host_ID VARCHAR); CREATE TABLE party_host (Name VARCHAR, Host_ID VARCHAR)
SELECT Name FROM HOST WHERE NOT Host_ID IN (SELECT Host_ID FROM party_host)
1,588
<question>: Show all region code and region name sorted by the codes. <context>: CREATE TABLE region (region_code VARCHAR, region_name VARCHAR)
SELECT region_code, region_name FROM region ORDER BY region_code
1,589
<question>: List all region names in alphabetical order. <context>: CREATE TABLE region (region_name VARCHAR)
SELECT region_name FROM region ORDER BY region_name
1,590
<question>: Show names for all regions except for Denmark. <context>: CREATE TABLE region (region_name VARCHAR)
SELECT region_name FROM region WHERE region_name <> 'Denmark'
1,591
<question>: How many storms had death records? <context>: CREATE TABLE storm (Number_Deaths INTEGER)
SELECT COUNT(*) FROM storm WHERE Number_Deaths > 0
1,592
<question>: List name, dates active, and number of deaths for all storms with at least 1 death. <context>: CREATE TABLE storm (name VARCHAR, dates_active VARCHAR, number_deaths VARCHAR)
SELECT name, dates_active, number_deaths FROM storm WHERE number_deaths >= 1
1,593
<question>: Show the average and maximum damage for all storms with max speed higher than 1000. <context>: CREATE TABLE storm (damage_millions_USD INTEGER, max_speed INTEGER)
SELECT AVG(damage_millions_USD), MAX(damage_millions_USD) FROM storm WHERE max_speed > 1000
1,594
<question>: What is the total number of deaths and damage for all storms with a max speed greater than the average? <context>: CREATE TABLE storm (number_deaths INTEGER, damage_millions_USD INTEGER, max_speed INTEGER)
SELECT SUM(number_deaths), SUM(damage_millions_USD) FROM storm WHERE max_speed > (SELECT AVG(max_speed) FROM storm)
1,595
<question>: List name and damage for all storms in a descending order of max speed. <context>: CREATE TABLE storm (name VARCHAR, damage_millions_USD VARCHAR, max_speed VARCHAR)
SELECT name, damage_millions_USD FROM storm ORDER BY max_speed DESC
1,596
<question>: How many regions are affected? <context>: CREATE TABLE affected_region (region_id VARCHAR)
SELECT COUNT(DISTINCT region_id) FROM affected_region
1,597
<question>: Show the name for regions not affected. <context>: CREATE TABLE region (region_name VARCHAR, region_id VARCHAR); CREATE TABLE affected_region (region_name VARCHAR, region_id VARCHAR)
SELECT region_name FROM region WHERE NOT region_id IN (SELECT region_id FROM affected_region)
1,598
<question>: Show the name for regions and the number of storms for each region. <context>: CREATE TABLE region (region_name VARCHAR, region_id VARCHAR); CREATE TABLE affected_region (region_id VARCHAR)
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
1,599
<question>: List the name for storms and the number of affected regions for each storm. <context>: CREATE TABLE affected_region (storm_id VARCHAR); CREATE TABLE storm (name VARCHAR, storm_id VARCHAR)
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