question
stringlengths 63
269
| answer
stringlengths 18
557
|
---|---|
Find the maximum and total number of followers of all users.
Additional table information: table: twitter_1 | SELECT MAX(followers), SUM(followers) FROM user_profiles |
Find the names of all the catalog entries.
Additional table information: table: product_catalog | SELECT DISTINCT (catalog_entry_name) FROM catalog_contents |
What are all the catalog entry names?
Additional table information: table: product_catalog | SELECT DISTINCT (catalog_entry_name) FROM catalog_contents |
Find the list of attribute data types possessed by more than 3 attribute definitions.
Additional table information: table: product_catalog | SELECT attribute_data_type FROM Attribute_Definitions GROUP BY attribute_data_type HAVING COUNT(*) > 3 |
What are the attribute data types with more than 3 attribute definitions?
Additional table information: table: product_catalog | SELECT attribute_data_type FROM Attribute_Definitions GROUP BY attribute_data_type HAVING COUNT(*) > 3 |
What is the attribute data type of the attribute with name 'Green'?
Additional table information: table: product_catalog | SELECT attribute_data_type FROM Attribute_Definitions WHERE attribute_name = 'Green' |
Find the attribute data type for the attribute named 'Green'.
Additional table information: table: product_catalog | SELECT attribute_data_type FROM Attribute_Definitions WHERE attribute_name = 'Green' |
Find the name and level of catalog structure with level between 5 and 10.
Additional table information: table: product_catalog | SELECT catalog_level_name, catalog_level_number FROM Catalog_Structure WHERE catalog_level_number BETWEEN 5 AND 10 |
What are the name and level of catalog structure with level number between 5 and 10
Additional table information: table: product_catalog | SELECT catalog_level_name, catalog_level_number FROM Catalog_Structure WHERE catalog_level_number BETWEEN 5 AND 10 |
Find all the catalog publishers whose name contains 'Murray'
Additional table information: table: product_catalog | SELECT DISTINCT (catalog_publisher) FROM catalogs WHERE catalog_publisher LIKE '%Murray%' |
Which catalog publishers have substring 'Murray' in their names?
Additional table information: table: product_catalog | SELECT DISTINCT (catalog_publisher) FROM catalogs WHERE catalog_publisher LIKE '%Murray%' |
Which catalog publisher has published the most catalogs?
Additional table information: table: product_catalog | SELECT catalog_publisher FROM catalogs GROUP BY catalog_publisher ORDER BY COUNT(*) DESC LIMIT 1 |
Find the catalog publisher that has the most catalogs.
Additional table information: table: product_catalog | SELECT catalog_publisher FROM catalogs GROUP BY catalog_publisher ORDER BY COUNT(*) DESC LIMIT 1 |
Find the names and publication dates of all catalogs that have catalog level number greater than 5.
Additional table information: table: product_catalog | SELECT t1.catalog_name, t1.date_of_publication FROM catalogs AS t1 JOIN catalog_structure AS t2 ON t1.catalog_id = t2.catalog_id WHERE catalog_level_number > 5 |
What are the name and publication date of the catalogs with catalog level number above 5?
Additional table information: table: product_catalog | SELECT t1.catalog_name, t1.date_of_publication FROM catalogs AS t1 JOIN catalog_structure AS t2 ON t1.catalog_id = t2.catalog_id WHERE catalog_level_number > 5 |
What are the entry names of catalog with the attribute possessed by most entries.
Additional table information: table: product_catalog | SELECT t1.catalog_entry_name FROM Catalog_Contents AS t1 JOIN Catalog_Contents_Additional_Attributes AS t2 ON t1.catalog_entry_id = t2.catalog_entry_id WHERE t2.attribute_value = (SELECT attribute_value FROM Catalog_Contents_Additional_Attributes GROUP BY attribute_value ORDER BY COUNT(*) DESC LIMIT 1) |
Find the entry names of the catalog with the attribute that have the most entries.
Additional table information: table: product_catalog | SELECT t1.catalog_entry_name FROM Catalog_Contents AS t1 JOIN Catalog_Contents_Additional_Attributes AS t2 ON t1.catalog_entry_id = t2.catalog_entry_id WHERE t2.attribute_value = (SELECT attribute_value FROM Catalog_Contents_Additional_Attributes GROUP BY attribute_value ORDER BY COUNT(*) DESC LIMIT 1) |
What is the entry name of the most expensive catalog (in USD)?
Additional table information: table: product_catalog | SELECT catalog_entry_name FROM catalog_contents ORDER BY price_in_dollars DESC LIMIT 1 |
Find the entry name of the catalog with the highest price (in USD).
Additional table information: table: product_catalog | SELECT catalog_entry_name FROM catalog_contents ORDER BY price_in_dollars DESC LIMIT 1 |
What is the level name of the cheapest catalog (in USD)?
Additional table information: table: product_catalog | SELECT t2.catalog_level_name FROM catalog_contents AS t1 JOIN catalog_structure AS t2 ON t1.catalog_level_number = t2.catalog_level_number ORDER BY t1.price_in_dollars NULLS FIRST LIMIT 1 |
Find the level name of the catalog with the lowest price (in USD).
Additional table information: table: product_catalog | SELECT t2.catalog_level_name FROM catalog_contents AS t1 JOIN catalog_structure AS t2 ON t1.catalog_level_number = t2.catalog_level_number ORDER BY t1.price_in_dollars NULLS FIRST LIMIT 1 |
What are the average and minimum price (in Euro) of all products?
Additional table information: table: product_catalog | SELECT AVG(price_in_euros), MIN(price_in_euros) FROM catalog_contents |
Give me the average and minimum price (in Euro) of the products.
Additional table information: table: product_catalog | SELECT AVG(price_in_euros), MIN(price_in_euros) FROM catalog_contents |
What is the product with the highest height? Give me the catalog entry name.
Additional table information: table: product_catalog | SELECT catalog_entry_name FROM catalog_contents ORDER BY height DESC LIMIT 1 |
Which catalog content has the highest height? Give me the catalog entry name.
Additional table information: table: product_catalog | SELECT catalog_entry_name FROM catalog_contents ORDER BY height DESC LIMIT 1 |
Find the name of the product that has the smallest capacity.
Additional table information: table: product_catalog | SELECT catalog_entry_name FROM catalog_contents ORDER BY capacity ASC NULLS FIRST LIMIT 1 |
Which catalog content has the smallest capacity? Return the catalog entry name.
Additional table information: table: product_catalog | SELECT catalog_entry_name FROM catalog_contents ORDER BY capacity ASC NULLS FIRST LIMIT 1 |
Find the names of all the products whose stock number starts with '2'.
Additional table information: table: product_catalog | SELECT catalog_entry_name FROM catalog_contents WHERE product_stock_number LIKE '2%' |
Which catalog contents have a product stock number that starts from '2'? Show the catalog entry names.
Additional table information: table: product_catalog | SELECT catalog_entry_name FROM catalog_contents WHERE product_stock_number LIKE '2%' |
Find the names of catalog entries with level number 8.
Additional table information: table: product_catalog | SELECT t1.catalog_entry_name FROM Catalog_Contents AS t1 JOIN Catalog_Contents_Additional_Attributes AS t2 ON t1.catalog_entry_id = t2.catalog_entry_id WHERE t2.catalog_level_number = '8' |
What are the names of catalog entries with level number 8?
Additional table information: table: product_catalog | SELECT t1.catalog_entry_name FROM Catalog_Contents AS t1 JOIN Catalog_Contents_Additional_Attributes AS t2 ON t1.catalog_entry_id = t2.catalog_entry_id WHERE t2.catalog_level_number = '8' |
Find the names of the products with length smaller than 3 or height greater than 5.
Additional table information: table: product_catalog | SELECT catalog_entry_name FROM catalog_contents WHERE LENGTH < 3 OR width > 5 |
Which catalog contents have length below 3 or above 5? Find the catalog entry names.
Additional table information: table: product_catalog | SELECT catalog_entry_name FROM catalog_contents WHERE LENGTH < 3 OR width > 5 |
Find the name and attribute ID of the attribute definitions with attribute value 0.
Additional table information: table: product_catalog | SELECT t1.attribute_name, t1.attribute_id FROM Attribute_Definitions AS t1 JOIN Catalog_Contents_Additional_Attributes AS t2 ON t1.attribute_id = t2.attribute_id WHERE t2.attribute_value = 0 |
Which attribute definitions have attribute value 0? Give me the attribute name and attribute ID.
Additional table information: table: product_catalog | SELECT t1.attribute_name, t1.attribute_id FROM Attribute_Definitions AS t1 JOIN Catalog_Contents_Additional_Attributes AS t2 ON t1.attribute_id = t2.attribute_id WHERE t2.attribute_value = 0 |
Find the name and capacity of products with price greater than 700 (in USD).
Additional table information: table: product_catalog | SELECT catalog_entry_name, capacity FROM Catalog_Contents WHERE price_in_dollars > 700 |
Which catalog contents has price above 700 dollars? Show their catalog entry names and capacities.
Additional table information: table: product_catalog | SELECT catalog_entry_name, capacity FROM Catalog_Contents WHERE price_in_dollars > 700 |
Find the dates on which more than one revisions were made.
Additional table information: table: product_catalog | SELECT date_of_latest_revision FROM Catalogs GROUP BY date_of_latest_revision HAVING COUNT(*) > 1 |
On which days more than one revisions were made on catalogs.
Additional table information: table: product_catalog | SELECT date_of_latest_revision FROM Catalogs GROUP BY date_of_latest_revision HAVING COUNT(*) > 1 |
How many products are there in the records?
Additional table information: table: product_catalog | SELECT COUNT(*) FROM catalog_contents |
Find the total number of catalog contents.
Additional table information: table: product_catalog | SELECT COUNT(*) FROM catalog_contents |
Name all the products with next entry ID greater than 8.
Additional table information: table: product_catalog | SELECT catalog_entry_name FROM catalog_contents WHERE next_entry_id > 8 |
What are the catalog entry names of the products with next entry ID above 8?
Additional table information: table: product_catalog | SELECT catalog_entry_name FROM catalog_contents WHERE next_entry_id > 8 |
How many aircrafts do we have?
Additional table information: table: flight_1 | SELECT COUNT(*) FROM Aircraft |
How many aircrafts exist in the database?
Additional table information: table: flight_1 | SELECT COUNT(*) FROM Aircraft |
Show name and distance for all aircrafts.
Additional table information: table: flight_1 | SELECT name, distance FROM Aircraft |
What are the names and distances for all airplanes?
Additional table information: table: flight_1 | SELECT name, distance FROM Aircraft |
Show ids for all aircrafts with more than 1000 distance.
Additional table information: table: flight_1 | SELECT aid FROM Aircraft WHERE distance > 1000 |
What are the ids of all aircrafts that can cover a distance of more than 1000?
Additional table information: table: flight_1 | SELECT aid FROM Aircraft WHERE distance > 1000 |
How many aircrafts have distance between 1000 and 5000?
Additional table information: table: flight_1 | SELECT COUNT(*) FROM Aircraft WHERE distance BETWEEN 1000 AND 5000 |
What is the count of aircrafts that have a distance between 1000 and 5000?
Additional table information: table: flight_1 | SELECT COUNT(*) FROM Aircraft WHERE distance BETWEEN 1000 AND 5000 |
What is the name and distance for aircraft with id 12?
Additional table information: table: flight_1 | SELECT name, distance FROM Aircraft WHERE aid = 12 |
What is the name and distance for the aircraft that has an id of 12?
Additional table information: table: flight_1 | SELECT name, distance FROM Aircraft WHERE aid = 12 |
What is the minimum, average, and maximum distance of all aircrafts.
Additional table information: table: flight_1 | SELECT MIN(distance), AVG(distance), MAX(distance) FROM Aircraft |
Return the minimum, average and maximum distances traveled across all aircrafts.
Additional table information: table: flight_1 | SELECT MIN(distance), AVG(distance), MAX(distance) FROM Aircraft |
Show the id and name of the aircraft with the maximum distance.
Additional table information: table: flight_1 | SELECT aid, name FROM Aircraft ORDER BY distance DESC LIMIT 1 |
What is the id and name of the aircraft that can cover the maximum distance?
Additional table information: table: flight_1 | SELECT aid, name FROM Aircraft ORDER BY distance DESC LIMIT 1 |
Show the name of aircrafts with top three lowest distances.
Additional table information: table: flight_1 | SELECT name FROM Aircraft ORDER BY distance NULLS FIRST LIMIT 3 |
What are the aircrafts with top 3 shortest lengthes? List their names.
Additional table information: table: flight_1 | SELECT name FROM Aircraft ORDER BY distance NULLS FIRST LIMIT 3 |
Show names for all aircrafts with distances more than the average.
Additional table information: table: flight_1 | SELECT name FROM Aircraft WHERE distance > (SELECT AVG(distance) FROM Aircraft) |
What are the names of all aircrafts that can cover more distances than average?
Additional table information: table: flight_1 | SELECT name FROM Aircraft WHERE distance > (SELECT AVG(distance) FROM Aircraft) |
How many employees do we have?
Additional table information: table: flight_1 | SELECT COUNT(*) FROM Employee |
What is the number of employees?
Additional table information: table: flight_1 | SELECT COUNT(*) FROM Employee |
Show name and salary for all employees sorted by salary.
Additional table information: table: flight_1 | SELECT name, salary FROM Employee ORDER BY salary NULLS FIRST |
What is the name and salary of all employees in order of salary?
Additional table information: table: flight_1 | SELECT name, salary FROM Employee ORDER BY salary NULLS FIRST |
Show ids for all employees with at least 100000 salary.
Additional table information: table: flight_1 | SELECT eid FROM Employee WHERE salary > 100000 |
What is the id of every employee who has at least a salary of 100000?
Additional table information: table: flight_1 | SELECT eid FROM Employee WHERE salary > 100000 |
How many employees have salary between 100000 and 200000?
Additional table information: table: flight_1 | SELECT COUNT(*) FROM Employee WHERE salary BETWEEN 100000 AND 200000 |
What is the number of employees that have a salary between 100000 and 200000?
Additional table information: table: flight_1 | SELECT COUNT(*) FROM Employee WHERE salary BETWEEN 100000 AND 200000 |
What is the name and salary for employee with id 242518965?
Additional table information: table: flight_1 | SELECT name, salary FROM Employee WHERE eid = 242518965 |
What is the name and salary of the employee with the id 242518965?
Additional table information: table: flight_1 | SELECT name, salary FROM Employee WHERE eid = 242518965 |
What is average and maximum salary of all employees.
Additional table information: table: flight_1 | SELECT AVG(salary), MAX(salary) FROM Employee |
What is the average and largest salary of all employees?
Additional table information: table: flight_1 | SELECT AVG(salary), MAX(salary) FROM Employee |
Show the id and name of the employee with maximum salary.
Additional table information: table: flight_1 | SELECT eid, name FROM Employee ORDER BY salary DESC LIMIT 1 |
What is the id and name of the employee with the highest salary?
Additional table information: table: flight_1 | SELECT eid, name FROM Employee ORDER BY salary DESC LIMIT 1 |
Show the name of employees with three lowest salaries.
Additional table information: table: flight_1 | SELECT name FROM Employee ORDER BY salary ASC NULLS FIRST LIMIT 3 |
What is the name of the 3 employees who get paid the least?
Additional table information: table: flight_1 | SELECT name FROM Employee ORDER BY salary ASC NULLS FIRST LIMIT 3 |
Show names for all employees with salary more than the average.
Additional table information: table: flight_1 | SELECT name FROM Employee WHERE salary > (SELECT AVG(salary) FROM Employee) |
What are the names of all employees who have a salary higher than average?
Additional table information: table: flight_1 | SELECT name FROM Employee WHERE salary > (SELECT AVG(salary) FROM Employee) |
Show the id and salary of Mark Young.
Additional table information: table: flight_1 | SELECT eid, salary FROM Employee WHERE name = 'Mark Young' |
What is the id and salary of the employee named Mark Young?
Additional table information: table: flight_1 | SELECT eid, salary FROM Employee WHERE name = 'Mark Young' |
How many flights do we have?
Additional table information: table: flight_1 | SELECT COUNT(*) FROM Flight |
What is the number of flights?
Additional table information: table: flight_1 | SELECT COUNT(*) FROM Flight |
Show flight number, origin, destination of all flights in the alphabetical order of the departure cities.
Additional table information: table: flight_1 | SELECT flno, origin, destination FROM Flight ORDER BY origin NULLS FIRST |
What is the flight number, origin, and destination for all flights in alphabetical order by departure cities?
Additional table information: table: flight_1 | SELECT flno, origin, destination FROM Flight ORDER BY origin NULLS FIRST |
Show all flight number from Los Angeles.
Additional table information: table: flight_1 | SELECT flno FROM Flight WHERE origin = 'Los Angeles' |
What are the numbers of all flights coming from Los Angeles?
Additional table information: table: flight_1 | SELECT flno FROM Flight WHERE origin = 'Los Angeles' |
Show origins of all flights with destination Honolulu.
Additional table information: table: flight_1 | SELECT origin FROM Flight WHERE destination = 'Honolulu' |
What are the origins of all flights that are headed to Honolulu?
Additional table information: table: flight_1 | SELECT origin FROM Flight WHERE destination = 'Honolulu' |
Show me the departure date and arrival date for all flights from Los Angeles to Honolulu.
Additional table information: table: flight_1 | SELECT departure_date, arrival_date FROM Flight WHERE origin = 'Los Angeles' AND destination = 'Honolulu' |
What are the departure and arrival dates of all flights from LA to Honolulu?
Additional table information: table: flight_1 | SELECT departure_date, arrival_date FROM Flight WHERE origin = 'Los Angeles' AND destination = 'Honolulu' |
Show flight number for all flights with more than 2000 distance.
Additional table information: table: flight_1 | SELECT flno FROM Flight WHERE distance > 2000 |
What are the numbers of all flights that can cover a distance of more than 2000?
Additional table information: table: flight_1 | SELECT flno FROM Flight WHERE distance > 2000 |
What is the average price for flights from Los Angeles to Honolulu.
Additional table information: table: flight_1 | SELECT AVG(price) FROM Flight WHERE origin = 'Los Angeles' AND destination = 'Honolulu' |
What is the average price for flights from LA to Honolulu?
Additional table information: table: flight_1 | SELECT AVG(price) FROM Flight WHERE origin = 'Los Angeles' AND destination = 'Honolulu' |
Show origin and destination for flights with price higher than 300.
Additional table information: table: flight_1 | SELECT origin, destination FROM Flight WHERE price > 300 |
What is the origin and destination for all flights whose price is higher than 300?
Additional table information: table: flight_1 | SELECT origin, destination FROM Flight WHERE price > 300 |
Show the flight number and distance of the flight with maximum price.
Additional table information: table: flight_1 | SELECT flno, distance FROM Flight ORDER BY price DESC LIMIT 1 |
What is the flight number and its distance for the one with the maximum price?
Additional table information: table: flight_1 | SELECT flno, distance FROM Flight ORDER BY price DESC LIMIT 1 |
Show the flight number of flights with three lowest distances.
Additional table information: table: flight_1 | SELECT flno FROM Flight ORDER BY distance ASC NULLS FIRST LIMIT 3 |