SpiderQuestion
stringlengths
16
224
query
stringlengths
18
577
SpiderSynQuestion
stringlengths
19
222
db_id
stringlengths
4
31
What is the maximum and minimum market value of companies?
SELECT max(Market_Value_in_Billion) , min(Market_Value_in_Billion) FROM company
What is the maximum and minimum market value of enterprises?
company_employee
What is the headquarter of the company with the largest sales?
SELECT Headquarters FROM company ORDER BY Sales_in_Billion DESC LIMIT 1
What is the head office of the enterprise with the largest sales?
company_employee
Show the different headquarters and number of companies at each headquarter.
SELECT Headquarters , COUNT(*) FROM company GROUP BY Headquarters
Show the different head office and number of enterprises at each head office.
company_employee
Show the most common headquarter for companies.
SELECT Headquarters FROM company GROUP BY Headquarters ORDER BY COUNT(*) DESC LIMIT 1
Show the most common head office for enterprises.
company_employee
Show the headquarters that have at least two companies.
SELECT Headquarters FROM company GROUP BY Headquarters HAVING COUNT(*) >= 2
Show the head office that have at least two enterprises.
company_employee
Show the headquarters that have both companies in banking industry and companies in oil and gas industry.
SELECT Headquarters FROM company WHERE Industry = "Banking" INTERSECT SELECT Headquarters FROM company WHERE Industry = "Oil and gas"
Show the head office that have both companies in banking industry and companies in oil and gas industry.
company_employee
Show the names of companies and of employees.
SELECT T3.Name , T2.Name FROM employment AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID JOIN company AS T3 ON T1.Company_ID = T3.Company_ID
Show the names of enterprises and of staffs.
company_employee
Show names of companies and that of employees in descending order of number of years working for that employee.
SELECT T3.Name , T2.Name FROM employment AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID JOIN company AS T3 ON T1.Company_ID = T3.Company_ID ORDER BY T1.Year_working
Show names of companies and that of staffs in descending order of number of years working for that staff.
company_employee
Show the names of employees that work for companies with sales bigger than 200.
SELECT T2.Name FROM employment AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID JOIN company AS T3 ON T1.Company_ID = T3.Company_ID WHERE T3.Sales_in_Billion > 200
Show the names of staffs that work for companies with sales bigger than 200.
company_employee
Show the names of companies and the number of employees they have
SELECT T3.Name , COUNT(*) FROM employment AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID JOIN company AS T3 ON T1.Company_ID = T3.Company_ID GROUP BY T3.Name
Show the names of enterprises and the number of staffs they have
company_employee
List the names of people that are not employed by any company
SELECT Name FROM people WHERE People_ID NOT IN (SELECT People_ID FROM employment)
List the names of people that are not employed by any company
company_employee
list the names of the companies with more than 200 sales in the descending order of sales and profits.
SELECT name FROM company WHERE Sales_in_Billion > 200 ORDER BY Sales_in_Billion , Profits_in_Billion DESC
list the names of the enterprises with more than 200 sales in the descending order of sales and profits.
company_employee
How many film are there?
SELECT count(*) FROM film
How many movie are there?
film_rank
Count the number of films.
SELECT count(*) FROM film
Count the number of movies.
film_rank
List the distinct director of all films.
SELECT DISTINCT Director FROM film
List the different director of all movies.
film_rank
What are the different film Directors?
SELECT DISTINCT Director FROM film
What are the different movie Directors?
film_rank
What is the average ticket sales gross in dollars of films?
SELECT avg(Gross_in_dollar) FROM film
What is the average ticket sales gross in dollars of movies?
film_rank
Return the average gross sales in dollars across all films.
SELECT avg(Gross_in_dollar) FROM film
Return the average gross sales in dollars across all movies.
film_rank
What are the low and high estimates of film markets?
SELECT Low_Estimate , High_Estimate FROM film_market_estimation
What are the low and high estimates of film markets?
film_rank
Return the low and high estimates for all film markets.
SELECT Low_Estimate , High_Estimate FROM film_market_estimation
Return the low and high estimates for all film markets.
film_rank
What are the types of film market estimations in year 1995?
SELECT TYPE FROM film_market_estimation WHERE YEAR = 1995
What are the categories of film market estimates in year 1995?
film_rank
Return the types of film market estimations in 1995.
SELECT TYPE FROM film_market_estimation WHERE YEAR = 1995
Return the categories of film market estimates in 1995.
film_rank
What are the maximum and minimum number of cities in all markets.
SELECT max(Number_cities) , min(Number_cities) FROM market
What are the maximum and minimum number of towns in all markets.
film_rank
Return the maximum and minimum number of cities across all markets.
SELECT max(Number_cities) , min(Number_cities) FROM market
Return the maximum and minimum number of towns across all markets.
film_rank
How many markets have number of cities smaller than 300?
SELECT count(*) FROM market WHERE Number_cities < 300
How many markets have number of towns smaller than 300?
film_rank
Count the number of markets that have a number of cities lower than 300.
SELECT count(*) FROM market WHERE Number_cities < 300
Count the number of markets that have a number of towns lower than 300.
film_rank
List all countries of markets in ascending alphabetical order.
SELECT Country FROM market ORDER BY Country ASC
List all nations of markets in ascending alphabetical order.
film_rank
What are the countries for each market, ordered alphabetically?
SELECT Country FROM market ORDER BY Country ASC
What are the nations for each market, ordered alphabetically?
film_rank
List all countries of markets in descending order of number of cities.
SELECT Country FROM market ORDER BY Number_cities DESC
List all nations of markets in descending order of number of towns.
film_rank
What are the countries for each market ordered by decreasing number of cities?
SELECT Country FROM market ORDER BY Number_cities DESC
What are the nations for each market ordered by decreasing number of cities?
film_rank
Please show the titles of films and the types of market estimations.
SELECT T1.Title , T2.Type FROM film AS T1 JOIN film_market_estimation AS T2 ON T1.Film_ID = T2.Film_ID
Please show the names of movies and the types of market estimations.
film_rank
What are the titles of films and corresponding types of market estimations?
SELECT T1.Title , T2.Type FROM film AS T1 JOIN film_market_estimation AS T2 ON T1.Film_ID = T2.Film_ID
What are the names of movies and corresponding types of market estimations?
film_rank
Show the distinct director of films with market estimation in the year of 1995.
SELECT DISTINCT T1.Director FROM film AS T1 JOIN film_market_estimation AS T2 ON T1.Film_ID = T2.Film_ID WHERE T2.Year = 1995
Show the different director of movies with market estimation in the year of 1995.
film_rank
Who are the different directors of films which had market estimation in 1995?
SELECT DISTINCT T1.Director FROM film AS T1 JOIN film_market_estimation AS T2 ON T1.Film_ID = T2.Film_ID WHERE T2.Year = 1995
Who are the different directors of movies which had market estimation in 1995?
film_rank
What is the average number of cities of markets with low film market estimate bigger than 10000?
SELECT avg(T2.Number_cities) FROM film_market_estimation AS T1 JOIN market AS T2 ON T1.Market_ID = T2.Market_ID WHERE T1.Low_Estimate > 10000
What is the average number of towns of markets with low film market estimate bigger than 10000?
film_rank
Give the average number of cities within markets that had a low market estimation larger than 10000?
SELECT avg(T2.Number_cities) FROM film_market_estimation AS T1 JOIN market AS T2 ON T1.Market_ID = T2.Market_ID WHERE T1.Low_Estimate > 10000
Give the average number of towns within markets that had a low market estimation larger than 10000?
film_rank
Please list the countries and years of film market estimations.
SELECT T2.Country , T1.Year FROM film_market_estimation AS T1 JOIN market AS T2 ON T1.Market_ID = T2.Market_ID
Please list the nations and years of movie market estimations.
film_rank
What are the countries of markets and their corresponding years of market estimation?
SELECT T2.Country , T1.Year FROM film_market_estimation AS T1 JOIN market AS T2 ON T1.Market_ID = T2.Market_ID
What are the nations of markets and their corresponding years of market estimation?
film_rank
Please list the years of film market estimations when the market is in country "Japan" in descending order.
SELECT T1.Year FROM film_market_estimation AS T1 JOIN market AS T2 ON T1.Market_ID = T2.Market_ID WHERE T2.Country = "Japan" ORDER BY T1.Year DESC
Please list the years of movie market estimations when the market is in country "Japan" in descending order.
film_rank
What are the years of film market estimation for the market of Japan, ordered by year descending?
SELECT T1.Year FROM film_market_estimation AS T1 JOIN market AS T2 ON T1.Market_ID = T2.Market_ID WHERE T2.Country = "Japan" ORDER BY T1.Year DESC
What are the years of movie market estimation for the market of Japan, ordered by year descending?
film_rank
List the studios of each film and the number of films produced by that studio.
SELECT Studio , COUNT(*) FROM film GROUP BY Studio
List the studios of each movie and the number of movies produced by that studio.
film_rank
How films are produced by each studio?
SELECT Studio , COUNT(*) FROM film GROUP BY Studio
How movies are produced by each studio?
film_rank
List the name of film studio that have the most number of films.
SELECT Studio FROM film GROUP BY Studio ORDER BY COUNT(*) DESC LIMIT 1
List the name of movie studio that have the most number of movies.
film_rank
What is the name of teh studio that created the most films?
SELECT Studio FROM film GROUP BY Studio ORDER BY COUNT(*) DESC LIMIT 1
What is the name of teh studio that created the most movies?
film_rank
List the names of studios that have at least two films.
SELECT Studio FROM film GROUP BY Studio HAVING COUNT(*) >= 2
List the names of studios that have at least two movies.
film_rank
What are the names of studios that have made two or more films?
SELECT Studio FROM film GROUP BY Studio HAVING COUNT(*) >= 2
What are the names of studios that have made two or more movies?
film_rank
List the title of films that do not have any market estimation.
SELECT Title FROM film WHERE Film_ID NOT IN (SELECT Film_ID FROM film_market_estimation)
List the name of movies that do not have any market estimation.
film_rank
What are the titles of films that do not have a film market estimation?
SELECT Title FROM film WHERE Film_ID NOT IN (SELECT Film_ID FROM film_market_estimation)
What are the names of movies that do not have a movie market estimation?
film_rank
Show the studios that have produced films with director "Nicholas Meyer" and "Walter Hill".
SELECT Studio FROM film WHERE Director = "Nicholas Meyer" INTERSECT SELECT Studio FROM film WHERE Director = "Walter Hill"
Show the studios that have produced movies with director "Nicholas Meyer" and "Walter Hill".
film_rank
What are the names of studios that have produced films with both Nicholas Meyer and Walter Hill?
SELECT Studio FROM film WHERE Director = "Nicholas Meyer" INTERSECT SELECT Studio FROM film WHERE Director = "Walter Hill"
What are the names of studios that have produced movies with both Nicholas Meyer and Walter Hill?
film_rank
Find the titles and studios of the films that are produced by some film studios that contained the word "Universal".
SELECT title , Studio FROM film WHERE Studio LIKE "%Universal%"
Find the names and studios of the films that are produced by some movie studios that contained the word "Universal".
film_rank
What are the titles and studios of films that have been produced by a studio whose name contains "Universal"?
SELECT title , Studio FROM film WHERE Studio LIKE "%Universal%"
What are the names and studios of movies that have been produced by a studio whose name contains "Universal"?
film_rank
Show the studios that have not produced films with director "Walter Hill".
SELECT Studio FROM film EXCEPT SELECT Studio FROM film WHERE Director = "Walter Hill"
Show the studios that have not produced movies with director "Walter Hill".
film_rank
Which studios have never worked with the director Walter Hill?
SELECT Studio FROM film EXCEPT SELECT Studio FROM film WHERE Director = "Walter Hill"
Which studios have never worked with the director Walter Hill?
film_rank
List the studios which average gross is above 4500000.
SELECT Studio FROM film GROUP BY Studio HAVING avg(Gross_in_dollar) >= 4500000
List the studios which average gross is above 4500000.
film_rank
Which studios have an average gross of over 4500000?
SELECT Studio FROM film GROUP BY Studio HAVING avg(Gross_in_dollar) >= 4500000
Which studios have an average gross of over 4500000?
film_rank
What is the title of the film that has the highest high market estimation.
SELECT t1.title FROM film AS T1 JOIN film_market_estimation AS T2 ON T1.Film_ID = T2.Film_ID ORDER BY high_estimate DESC LIMIT 1
What is the name of the movie that has the highest high market estimation.
film_rank
Return the title of the film with the highest high estimate?
SELECT t1.title FROM film AS T1 JOIN film_market_estimation AS T2 ON T1.Film_ID = T2.Film_ID ORDER BY high_estimate DESC LIMIT 1
Return the name of the movie with the highest high estimate?
film_rank
What are the titles and directors of the films were never presented in China?
SELECT title , director FROM film WHERE film_id NOT IN (SELECT film_id FROM film_market_estimation AS T1 JOIN market AS T2 ON T1.market_id = T2.Market_ID WHERE country = 'China')
What are the names and directors of the movies were never presented in China?
film_rank
Return the titles and directors of films that were never in the market of China.
SELECT title , director FROM film WHERE film_id NOT IN (SELECT film_id FROM film_market_estimation AS T1 JOIN market AS T2 ON T1.market_id = T2.Market_ID WHERE country = 'China')
Return the names and directors of movies that were never in the market of China.
film_rank
How many calendar items do we have?
SELECT count(*) FROM Ref_calendar
How many calendar items do we have?
cre_Doc_Tracking_DB
Count the number of all the calendar items.
SELECT count(*) FROM Ref_calendar
Count the number of all the calendar items.
cre_Doc_Tracking_DB
Show all calendar dates and day Numbers.
SELECT calendar_date , day_Number FROM Ref_calendar
Show all calendar dates and day Numbers.
cre_Doc_Tracking_DB
What are all the calendar dates and day Numbers?
SELECT calendar_date , day_Number FROM Ref_calendar
What are all the calendar dates and day Numbers?
cre_Doc_Tracking_DB
Show the number of document types.
SELECT count(*) FROM Ref_document_types
Show the number of file categories.
cre_Doc_Tracking_DB
How many document types are there?
SELECT count(*) FROM Ref_document_types
How many file categories are there?
cre_Doc_Tracking_DB
List all document type codes and document type names.
SELECT document_type_code , document_type_name FROM Ref_document_types
List all file category codes and file category names.
cre_Doc_Tracking_DB
What are all the document type codes and document type names?
SELECT document_type_code , document_type_name FROM Ref_document_types
What are all the file category codes and file category names?
cre_Doc_Tracking_DB
What is the name and description for document type code RV?
SELECT document_type_name , document_type_description FROM Ref_document_types WHERE document_type_code = "RV"
What is the name and describing content for file category code RV?
cre_Doc_Tracking_DB
Give me the name and description of the document type code RV.
SELECT document_type_name , document_type_description FROM Ref_document_types WHERE document_type_code = "RV"
Give me the name and describing content of the file category code RV.
cre_Doc_Tracking_DB
What is the document type code for document type "Paper"?
SELECT document_type_code FROM Ref_document_types WHERE document_type_name = "Paper"
What is the file category code for file category "Paper"?
cre_Doc_Tracking_DB
Find the code of the document type "Paper".
SELECT document_type_code FROM Ref_document_types WHERE document_type_name = "Paper"
Find the code of the file category "Paper".
cre_Doc_Tracking_DB
Show the number of documents with document type code CV or BK.
SELECT count(*) FROM All_documents WHERE document_type_code = "CV" OR document_type_code = "BK"
Show the number of files with file category code CV or BK.
cre_Doc_Tracking_DB
How many documents have document type code CV or BK?
SELECT count(*) FROM All_documents WHERE document_type_code = "CV" OR document_type_code = "BK"
How many files have file category code CV or BK?
cre_Doc_Tracking_DB
What is the date when the document "Marry CV" was stored?
SELECT date_stored FROM All_documents WHERE Document_name = "Marry CV"
What is the day when the file "Marry CV" was stored?
cre_Doc_Tracking_DB
When was the document named "Marry CV" stored? Give me the date.
SELECT date_stored FROM All_documents WHERE Document_name = "Marry CV"
When was the file named "Marry CV" stored? Give me the day.
cre_Doc_Tracking_DB
What is the day Number and date of all the documents?
SELECT T2.day_Number , T1.Date_Stored FROM All_documents AS T1 JOIN Ref_calendar AS T2 ON T1.date_stored = T2.calendar_date
What is the day Number and date of all the files?
cre_Doc_Tracking_DB
Return the day Number and stored date for all the documents.
SELECT T2.day_Number , T1.Date_Stored FROM All_documents AS T1 JOIN Ref_calendar AS T2 ON T1.date_stored = T2.calendar_date
Return the day Number and stored date for all the files.
cre_Doc_Tracking_DB
What is the document type name for the document with name "How to read a book"?
SELECT T2.document_type_name FROM All_documents AS T1 JOIN Ref_document_types AS T2 ON T1.document_type_code = T2.document_type_code WHERE T1.document_name = "How to read a book"
What is the file category name for the file with name "How to read a book"?
cre_Doc_Tracking_DB
Find the document type name of the document named "How to read a book".
SELECT T2.document_type_name FROM All_documents AS T1 JOIN Ref_document_types AS T2 ON T1.document_type_code = T2.document_type_code WHERE T1.document_name = "How to read a book"
Find the file category name of the file named "How to read a book".
cre_Doc_Tracking_DB
Show the number of locations.
SELECT count(*) FROM Ref_locations
Show the number of cities.
cre_Doc_Tracking_DB
How many locations are listed in the database?
SELECT count(*) FROM Ref_locations
How many cities are listed in the database?
cre_Doc_Tracking_DB
List all location codes and location names.
SELECT location_code , location_name FROM Ref_locations
List all city codes and city names.
cre_Doc_Tracking_DB
What are all the location codes and location names?
SELECT location_code , location_name FROM Ref_locations
What are all the city codes and city names?
cre_Doc_Tracking_DB
What are the name and description for location code x?
SELECT location_name , location_description FROM Ref_locations WHERE location_code = "x"
What are the name and describing content for city code x?
cre_Doc_Tracking_DB
Give me the name and description of the location with code x.
SELECT location_name , location_description FROM Ref_locations WHERE location_code = "x"
Give me the name and describing content of the city with code x.
cre_Doc_Tracking_DB
What is the location code for the country "Canada"?
SELECT location_code FROM Ref_locations WHERE location_name = "Canada"
What is the city code for the country "Canada"?
cre_Doc_Tracking_DB
Show the location code of the country "Canada".
SELECT location_code FROM Ref_locations WHERE location_name = "Canada"
Show the city code of the country "Canada".
cre_Doc_Tracking_DB
How many roles are there?
SELECT count(*) FROM ROLES
How many roles are there?
cre_Doc_Tracking_DB
Count the total number of roles listed.
SELECT count(*) FROM ROLES
Count the total number of roles listed.
cre_Doc_Tracking_DB
List all role codes, role names, and role descriptions.
SELECT role_code , role_name , role_description FROM ROLES
List all role codes, role names, and role describing contents.
cre_Doc_Tracking_DB
What are all the role codes, role names, and role descriptions?
SELECT role_code , role_name , role_description FROM ROLES
What are all the role codes, role names, and role describing contents?
cre_Doc_Tracking_DB
What are the name and description for role code "MG"?
SELECT role_name , role_description FROM ROLES WHERE role_code = "MG"
What are the name and describing content for role code "MG"?
cre_Doc_Tracking_DB
Find the name and description of the role with code "MG".
SELECT role_name , role_description FROM ROLES WHERE role_code = "MG"
Find the name and describing content of the role with code "MG".
cre_Doc_Tracking_DB
Show the description for role name "Proof Reader".
SELECT role_description FROM ROLES WHERE role_name = "Proof Reader"
Show the describing content for role name "Proof Reader".
cre_Doc_Tracking_DB
What is the description of the role named "Proof Reader"?
SELECT role_description FROM ROLES WHERE role_name = "Proof Reader"
What is the describing content of the role named "Proof Reader"?
cre_Doc_Tracking_DB
How many employees do we have?
SELECT count(*) FROM Employees
How many staffs do we have?
cre_Doc_Tracking_DB
Find the number of employees we have.
SELECT count(*) FROM Employees
Find the number of staffs we have.
cre_Doc_Tracking_DB
Show the name, role code, and date of birth for the employee with name 'Armani'.
SELECT employee_name , role_code , date_of_birth FROM Employees WHERE employee_Name = 'Armani'
Show the name, role code, and birthday for the staff with name 'Armani'.
cre_Doc_Tracking_DB
What are the name, role code, and date of birth of the employee named 'Armani'?
SELECT employee_name , role_code , date_of_birth FROM Employees WHERE employee_Name = 'Armani'
What are the name, role code, and birthday of the staff named 'Armani'?
cre_Doc_Tracking_DB