text
stringlengths
182
1.07k
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT title FROM Movie WHERE director = "James Cameron" OR YEAR < 1980
convert the question into postgresql query using the context values ### 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) ###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
convert the question into postgresql query using the context values ### 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) ###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
convert the question into postgresql query using the context values ### Question: How many counties are there? ### Context: CREATE TABLE county_public_safety (Id VARCHAR) ###Answer: SELECT COUNT(*) FROM county_public_safety
convert the question into postgresql query using the context values ### Question: List the names of counties in descending order of population. ### Context: CREATE TABLE county_public_safety (Name VARCHAR, Population VARCHAR) ###Answer: SELECT Name FROM county_public_safety ORDER BY Population DESC
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT DISTINCT Police_force FROM county_public_safety WHERE LOCATION <> "East"
convert the question into postgresql query using the context values ### Question: What are the minimum and maximum crime rate of counties? ### Context: CREATE TABLE county_public_safety (Crime_rate INTEGER) ###Answer: SELECT MIN(Crime_rate), MAX(Crime_rate) FROM county_public_safety
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT Crime_rate FROM county_public_safety ORDER BY Police_officers
convert the question into postgresql query using the context values ### Question: What are the names of cities in ascending alphabetical order? ### Context: CREATE TABLE city (Name VARCHAR) ###Answer: SELECT Name FROM city ORDER BY Name
convert the question into postgresql query using the context values ### Question: What are the percentage of hispanics in cities with the black percentage higher than 10? ### Context: CREATE TABLE city (Hispanic VARCHAR, Black INTEGER) ###Answer: SELECT Hispanic FROM city WHERE Black > 10
convert the question into postgresql query using the context values ### Question: List the name of the county with the largest population. ### Context: CREATE TABLE county_public_safety (Name VARCHAR, Population VARCHAR) ###Answer: SELECT Name FROM county_public_safety ORDER BY Population DESC LIMIT 1
convert the question into postgresql query using the context values ### Question: List the names of the city with the top 5 white percentages. ### Context: CREATE TABLE city (Name VARCHAR, White VARCHAR) ###Answer: SELECT Name FROM city ORDER BY White DESC LIMIT 5
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT T1.Name, T2.Name FROM city AS T1 JOIN county_public_safety AS T2 ON T1.County_ID = T2.County_ID
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT T1.White, T2.Crime_rate FROM city AS T1 JOIN county_public_safety AS T2 ON T1.County_ID = T2.County_ID
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT name FROM city WHERE county_ID = (SELECT county_ID FROM county_public_safety ORDER BY Police_officers DESC LIMIT 1)
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT COUNT(*) FROM city WHERE county_ID IN (SELECT county_ID FROM county_public_safety WHERE population > 20000)
convert the question into postgresql query using the context values ### 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) ###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
convert the question into postgresql query using the context values ### Question: Please show the police forces and the number of counties with each police force. ### Context: CREATE TABLE county_public_safety (Police_force VARCHAR) ###Answer: SELECT Police_force, COUNT(*) FROM county_public_safety GROUP BY Police_force
convert the question into postgresql query using the context values ### Question: What is the location shared by most counties? ### Context: CREATE TABLE county_public_safety (LOCATION VARCHAR) ###Answer: SELECT LOCATION FROM county_public_safety GROUP BY LOCATION ORDER BY COUNT(*) DESC LIMIT 1
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT Name FROM county_public_safety WHERE NOT County_ID IN (SELECT County_ID FROM city)
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT Police_force FROM county_public_safety WHERE LOCATION = "East" INTERSECT SELECT Police_force FROM county_public_safety WHERE LOCATION = "West"
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT name FROM city WHERE county_id IN (SELECT county_id FROM county_public_safety WHERE Crime_rate < 100)
convert the question into postgresql query using the context values ### Question: Show the case burden of counties in descending order of population. ### Context: CREATE TABLE county_public_safety (Case_burden VARCHAR, Population VARCHAR) ###Answer: SELECT Case_burden FROM county_public_safety ORDER BY Population DESC
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT roomName FROM Rooms WHERE basePrice < 160 AND beds = 2 AND decor = 'modern'
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT roomName, RoomId FROM Rooms WHERE basePrice > 160 AND maxOccupancy > 2
convert the question into postgresql query using the context values ### 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) ###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
convert the question into postgresql query using the context values ### Question: How many kids stay in the rooms reserved by ROY SWEAZY? ### Context: CREATE TABLE Reservations (kids VARCHAR, FirstName VARCHAR, LastName VARCHAR) ###Answer: SELECT kids FROM Reservations WHERE FirstName = "ROY" AND LastName = "SWEAZY"
convert the question into postgresql query using the context values ### Question: How many times does ROY SWEAZY has reserved a room. ### Context: CREATE TABLE Reservations (FirstName VARCHAR, LastName VARCHAR) ###Answer: SELECT COUNT(*) FROM Reservations WHERE FirstName = "ROY" AND LastName = "SWEAZY"
convert the question into postgresql query using the context values ### 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) ###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
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT Adults FROM Reservations WHERE CheckIn = "2010-10-23" AND FirstName = "CONRAD" AND LastName = "SELBIG"
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT Kids FROM Reservations WHERE CheckIn = "2010-09-21" AND FirstName = "DAMIEN" AND LastName = "TRACHSEL"
convert the question into postgresql query using the context values ### Question: How many king beds are there? ### Context: CREATE TABLE Rooms (beds INTEGER, bedtype VARCHAR) ###Answer: SELECT SUM(beds) FROM Rooms WHERE bedtype = 'King'
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT roomName, decor FROM Rooms WHERE bedtype = 'King' ORDER BY basePrice
convert the question into postgresql query using the context values ### Question: Which room has cheapest base price? List the room's name and the base price. ### Context: CREATE TABLE Rooms (roomName VARCHAR, basePrice VARCHAR) ###Answer: SELECT roomName, basePrice FROM Rooms ORDER BY basePrice LIMIT 1
convert the question into postgresql query using the context values ### Question: What is the decor of room Recluse and defiance? ### Context: CREATE TABLE Rooms (decor VARCHAR, roomName VARCHAR) ###Answer: SELECT decor FROM Rooms WHERE roomName = "Recluse and defiance"
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT bedType, AVG(basePrice) FROM Rooms GROUP BY bedType
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT SUM(maxOccupancy) FROM Rooms WHERE decor = 'modern'
convert the question into postgresql query using the context values ### Question: What kind of decor has the least number of reservations? ### Context: CREATE TABLE Reservations (Room VARCHAR); CREATE TABLE Rooms (decor VARCHAR, RoomId VARCHAR) ###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
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT COUNT(*) FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId WHERE T2.maxOccupancy = T1.Adults + T1.Kids
convert the question into postgresql query using the context values ### 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) ###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
convert the question into postgresql query using the context values ### Question: How many rooms are there? ### Context: CREATE TABLE Rooms (Id VARCHAR) ###Answer: SELECT COUNT(*) FROM Rooms
convert the question into postgresql query using the context values ### Question: Find the number of rooms with a king bed. ### Context: CREATE TABLE Rooms (bedType VARCHAR) ###Answer: SELECT COUNT(*) FROM Rooms WHERE bedType = "King"
convert the question into postgresql query using the context values ### Question: Find the number of rooms for each bed type. ### Context: CREATE TABLE Rooms (bedType VARCHAR) ###Answer: SELECT bedType, COUNT(*) FROM Rooms GROUP BY bedType
convert the question into postgresql query using the context values ### Question: Find the name of the room with the maximum occupancy. ### Context: CREATE TABLE Rooms (roomName VARCHAR, maxOccupancy VARCHAR) ###Answer: SELECT roomName FROM Rooms ORDER BY maxOccupancy DESC LIMIT 1
convert the question into postgresql query using the context values ### Question: Find the id and name of the most expensive base price room. ### Context: CREATE TABLE Rooms (RoomId VARCHAR, roomName VARCHAR, basePrice VARCHAR) ###Answer: SELECT RoomId, roomName FROM Rooms ORDER BY basePrice DESC LIMIT 1
convert the question into postgresql query using the context values ### Question: List the type of bed and name of all traditional rooms. ### Context: CREATE TABLE Rooms (roomName VARCHAR, bedType VARCHAR, decor VARCHAR) ###Answer: SELECT roomName, bedType FROM Rooms WHERE decor = "traditional"
convert the question into postgresql query using the context values ### Question: Find the number of rooms with king bed for each decor type. ### Context: CREATE TABLE Rooms (decor VARCHAR, bedType VARCHAR) ###Answer: SELECT decor, COUNT(*) FROM Rooms WHERE bedType = "King" GROUP BY decor
convert the question into postgresql query using the context values ### Question: Find the average and minimum price of the rooms in different decor. ### Context: CREATE TABLE Rooms (decor VARCHAR, basePrice INTEGER) ###Answer: SELECT decor, AVG(basePrice), MIN(basePrice) FROM Rooms GROUP BY decor
convert the question into postgresql query using the context values ### Question: List the name of all rooms sorted by their prices. ### Context: CREATE TABLE Rooms (roomName VARCHAR, basePrice VARCHAR) ###Answer: SELECT roomName FROM Rooms ORDER BY basePrice
convert the question into postgresql query using the context values ### Question: Find the number of rooms with price higher than 120 for different decor. ### Context: CREATE TABLE Rooms (decor VARCHAR, basePrice INTEGER) ###Answer: SELECT decor, COUNT(*) FROM Rooms WHERE basePrice > 120 GROUP BY decor
convert the question into postgresql query using the context values ### Question: List the name of rooms with king or queen bed. ### Context: CREATE TABLE Rooms (roomName VARCHAR, bedType VARCHAR) ###Answer: SELECT roomName FROM Rooms WHERE bedType = "King" OR bedType = "Queen"
convert the question into postgresql query using the context values ### Question: How many different types of beds are there? ### Context: CREATE TABLE Rooms (bedType VARCHAR) ###Answer: SELECT COUNT(DISTINCT bedType) FROM Rooms
convert the question into postgresql query using the context values ### Question: Find the name and id of the top 3 expensive rooms. ### Context: CREATE TABLE Rooms (RoomId VARCHAR, roomName VARCHAR, basePrice VARCHAR) ###Answer: SELECT RoomId, roomName FROM Rooms ORDER BY basePrice DESC LIMIT 3
convert the question into postgresql query using the context values ### Question: Find the name of rooms whose price is higher than the average price. ### Context: CREATE TABLE Rooms (roomName VARCHAR, basePrice INTEGER) ###Answer: SELECT roomName FROM Rooms WHERE basePrice > (SELECT AVG(basePrice) FROM Rooms)
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT COUNT(*) FROM rooms WHERE NOT roomid IN (SELECT DISTINCT room FROM reservations)
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT T2.roomName, COUNT(*), T1.Room FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId GROUP BY T1.Room
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT T2.roomName FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId GROUP BY T1.Room HAVING COUNT(*) > 60
convert the question into postgresql query using the context values ### Question: Find the name of rooms whose base price is between 120 and 150. ### Context: CREATE TABLE rooms (roomname VARCHAR, baseprice INTEGER) ###Answer: SELECT roomname FROM rooms WHERE baseprice BETWEEN 120 AND 150
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT T2.roomName FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId WHERE firstname LIKE '%ROY%'
convert the question into postgresql query using the context values ### 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) ###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'
convert the question into postgresql query using the context values ### 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) ###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
convert the question into postgresql query using the context values ### 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) ###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
convert the question into postgresql query using the context values ### 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) ###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
convert the question into postgresql query using the context values ### 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) ###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
convert the question into postgresql query using the context values ### 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) ###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'
convert the question into postgresql query using the context values ### 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) ###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'
convert the question into postgresql query using the context values ### Question: How many different source system code for the cmi cross references are there? ### Context: CREATE TABLE CMI_cross_references (source_system_code VARCHAR) ###Answer: SELECT COUNT(DISTINCT source_system_code) FROM CMI_cross_references
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT * FROM customer_master_index ORDER BY cmi_details DESC
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT council_tax_id, cmi_cross_ref_id FROM parking_fines
convert the question into postgresql query using the context values ### Question: How many council taxes are collected for renting arrears ? ### Context: CREATE TABLE rent_arrears (Id VARCHAR) ###Answer: SELECT COUNT(*) FROM rent_arrears
convert the question into postgresql query using the context values ### 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) ###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'
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT cmi_cross_ref_id FROM cmi_cross_references EXCEPT SELECT cmi_cross_ref_id FROM parking_fines
convert the question into postgresql query using the context values ### Question: Which distinct source system code includes the substring 'en'? ### Context: CREATE TABLE cmi_cross_references (source_system_code VARCHAR) ###Answer: SELECT DISTINCT source_system_code FROM cmi_cross_references WHERE source_system_code LIKE '%en%'
convert the question into postgresql query using the context values ### Question: How many parties are there? ### Context: CREATE TABLE party (Id VARCHAR) ###Answer: SELECT COUNT(*) FROM party
convert the question into postgresql query using the context values ### Question: List the themes of parties in ascending order of number of hosts. ### Context: CREATE TABLE party (Party_Theme VARCHAR, Number_of_hosts VARCHAR) ###Answer: SELECT Party_Theme FROM party ORDER BY Number_of_hosts
convert the question into postgresql query using the context values ### Question: What are the themes and locations of parties? ### Context: CREATE TABLE party (Party_Theme VARCHAR, LOCATION VARCHAR) ###Answer: SELECT Party_Theme, LOCATION FROM party
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT First_year, Last_year FROM party WHERE Party_Theme = "Spring" OR Party_Theme = "Teqnology"
convert the question into postgresql query using the context values ### Question: What is the average number of hosts for parties? ### Context: CREATE TABLE party (Number_of_hosts INTEGER) ###Answer: SELECT AVG(Number_of_hosts) FROM party
convert the question into postgresql query using the context values ### Question: What is the location of the party with the most hosts? ### Context: CREATE TABLE party (LOCATION VARCHAR, Number_of_hosts VARCHAR) ###Answer: SELECT LOCATION FROM party ORDER BY Number_of_hosts DESC LIMIT 1
convert the question into postgresql query using the context values ### Question: Show different nationalities along with the number of hosts of each nationality. ### Context: CREATE TABLE HOST (Nationality VARCHAR) ###Answer: SELECT Nationality, COUNT(*) FROM HOST GROUP BY Nationality
convert the question into postgresql query using the context values ### Question: Show the most common nationality of hosts. ### Context: CREATE TABLE HOST (Nationality VARCHAR) ###Answer: SELECT Nationality FROM HOST GROUP BY Nationality ORDER BY COUNT(*) DESC LIMIT 1
convert the question into postgresql query using the context values ### Question: Show the nations that have both hosts older than 45 and hosts younger than 35. ### Context: CREATE TABLE HOST (Nationality VARCHAR, Age INTEGER) ###Answer: SELECT Nationality FROM HOST WHERE Age > 45 INTERSECT SELECT Nationality FROM HOST WHERE Age < 35
convert the question into postgresql query using the context values ### 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) ###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
convert the question into postgresql query using the context values ### 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) ###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
convert the question into postgresql query using the context values ### 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) ###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
convert the question into postgresql query using the context values ### 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) ###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
convert the question into postgresql query using the context values ### Question: Show the name and the nationality of the oldest host. ### Context: CREATE TABLE HOST (Name VARCHAR, Nationality VARCHAR, Age VARCHAR) ###Answer: SELECT Name, Nationality FROM HOST ORDER BY Age DESC LIMIT 1
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT Name FROM HOST WHERE NOT Host_ID IN (SELECT Host_ID FROM party_host)
convert the question into postgresql query using the context values ### Question: Show all region code and region name sorted by the codes. ### Context: CREATE TABLE region (region_code VARCHAR, region_name VARCHAR) ###Answer: SELECT region_code, region_name FROM region ORDER BY region_code
convert the question into postgresql query using the context values ### Question: List all region names in alphabetical order. ### Context: CREATE TABLE region (region_name VARCHAR) ###Answer: SELECT region_name FROM region ORDER BY region_name
convert the question into postgresql query using the context values ### Question: Show names for all regions except for Denmark. ### Context: CREATE TABLE region (region_name VARCHAR) ###Answer: SELECT region_name FROM region WHERE region_name <> 'Denmark'
convert the question into postgresql query using the context values ### Question: How many storms had death records? ### Context: CREATE TABLE storm (Number_Deaths INTEGER) ###Answer: SELECT COUNT(*) FROM storm WHERE Number_Deaths > 0
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT name, dates_active, number_deaths FROM storm WHERE number_deaths >= 1
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT AVG(damage_millions_USD), MAX(damage_millions_USD) FROM storm WHERE max_speed > 1000
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT SUM(number_deaths), SUM(damage_millions_USD) FROM storm WHERE max_speed > (SELECT AVG(max_speed) FROM storm)
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT name, damage_millions_USD FROM storm ORDER BY max_speed DESC
convert the question into postgresql query using the context values ### Question: How many regions are affected? ### Context: CREATE TABLE affected_region (region_id VARCHAR) ###Answer: SELECT COUNT(DISTINCT region_id) FROM affected_region
convert the question into postgresql query using the context values ### 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) ###Answer: SELECT region_name FROM region WHERE NOT region_id IN (SELECT region_id FROM affected_region)
convert the question into postgresql query using the context values ### 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) ###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
convert the question into postgresql query using the context values ### 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) ###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