id int64 0 9.43k | db_id stringclasses 69
values | schema stringclasses 69
values | question stringlengths 24 325 | output stringlengths 23 804 | evidence stringlengths 0 673 | filtered_schema listlengths 0 16 |
|---|---|---|---|---|---|---|
7,200 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | List down the email address of female single employees. | SELECT T3.EmailAddress FROM Employee AS T1 INNER JOIN Person AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID INNER JOIN EmailAddress AS T3 ON T2.BusinessEntityID = T3.BusinessEntityID WHERE T1.Gender = 'F' AND T1.MaritalStatus = 'S' | female refers to Gender = 'F'; single refers to MaritalStatus = 'S'; | [
"EmailAddress.BusinessEntityID",
"EmailAddress.EmailAddress",
"Employee.BusinessEntityID",
"Employee.Gender",
"Employee.MaritalStatus",
"Person.BusinessEntityID"
] |
7,201 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What are the color of products that were reviewed? | SELECT T1.Color FROM Product AS T1 INNER JOIN ProductReview AS T2 ON T1.ProductID = T2.ProductID WHERE T1.ProductID = 709 OR 937 OR 798 | [
"Product.Color",
"Product.ProductID",
"ProductReview.ProductID"
] | |
7,202 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the projected sales quota amount in 2013 and sales YTD amount for sales person with business entity ID 275? | SELECT SUM(T1.SalesQuota) FROM SalesPerson AS T1 INNER JOIN SalesPersonQuotaHistory AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID WHERE T1.BusinessEntityID = 275 AND STRFTIME('%Y', QuotaDate) = '2013' | projected sales quota refers to SalesQuota; projected sales quota in 2013 refers to year(QuotaDate) = 2013; projected sales quota for 2013 = SUM(SalesQuota where year(QuotaDate) = 2013); | [
"SalesPerson.BusinessEntityID",
"SalesPerson.SalesQuota",
"SalesPersonQuotaHistory.BusinessEntityID"
] |
7,203 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Provide the business entity ID who did not achieved projected yearly sales quota in 2013. | SELECT DISTINCT T1.BusinessEntityID FROM SalesPerson AS T1 INNER JOIN SalesPersonQuotaHistory AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID WHERE STRFTIME('%Y', T2.QuotaDate) = '2013' AND T1.SalesQuota < T1.SalesLastYear | projected yearly sales quota refers to SalesQuota; sales quota in 2013 refers to year(QuotaDate) = 2013; person who did not achieve projected yearly sales quota refers to SalesQuota>SalesYTD; | [
"SalesPerson.BusinessEntityID",
"SalesPerson.SalesLastYear",
"SalesPerson.SalesQuota",
"SalesPersonQuotaHistory.BusinessEntityID",
"SalesPersonQuotaHistory.QuotaDate"
] |
7,204 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Among the employees who wish to receive e-mail promotion from AdventureWorks, how many percent of them are female? | SELECT CAST(SUM(CASE WHEN T1.Gender = 'F' THEN 1 ELSE 0 END) AS REAL) * 100 / COUNT(T1.BusinessEntityID) FROM Employee AS T1 INNER JOIN Person AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID WHERE T2.EmailPromotion = 1 | female refers to Gender = 'F'; employee who wish to receive email promotion refers to EmailPromotion = 1; percentage = DIVIDE(SUM(Gender = 'F')), (sum(Gender = 'F' or Gender = 'M'))) as percentage; | [
"Employee.BusinessEntityID",
"Employee.Gender",
"Person.BusinessEntityID",
"Person.EmailPromotion"
] |
7,205 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | How many times is married non sales employees against single non-sales employees? | SELECT CAST(SUM(CASE WHEN T1.MaritalStatus = 'M' THEN 1 ELSE 0 END) AS REAL) * 100 / SUM(CASE WHEN T1.MaritalStatus = 'S' THEN 1 ELSE 0 END) FROM Employee AS T1 INNER JOIN Person AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID WHERE T2.PersonType = 'EM' | non-sales employee refers to PersonType = 'EM'; married refers to MaritalStatus = 'M'; single refers to MaritalStatus = 'S'; percentage = DIVIDE(SUM(MaritalStatus = 'M'), (SUM(MaritalStatus = 'S') as percentage; | [
"Employee.BusinessEntityID",
"Employee.MaritalStatus",
"Person.BusinessEntityID",
"Person.PersonType"
] |
7,206 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | How much is the total bonus received by sales person and what is the percentage of it against the projected yearly sales quota in 2013? | SELECT SUM(T1.Bonus) , CAST(SUM(T1.Bonus) AS REAL) * 100 / SUM(T1.SalesQuota) FROM SalesPerson AS T1 INNER JOIN SalesPersonQuotaHistory AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID WHERE STRFTIME('%Y', T2.QuotaDate) = '2013' | projected yearly sales quota refers to SalesQuota; projected yearly sales quota in 2013 refers to year(QuotaDate) = 2013; percentage = (MULTIPLY(DIVIDE(SUM(Bonus)), (SUM(SalesQuota))) as percentage; | [
"SalesPerson.Bonus",
"SalesPerson.BusinessEntityID",
"SalesPerson.SalesQuota",
"SalesPersonQuotaHistory.BusinessEntityID",
"SalesPersonQuotaHistory.QuotaDate"
] |
7,207 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | How many types of credit cards are there and how many are vista? | SELECT COUNT(CardNumber) FROM CreditCard WHERE CardType = 'vista' | type of credit card refers to CardType; CardType = 'Vista'; | [
"CreditCard.CardNumber",
"CreditCard.CardType"
] |
7,208 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the name of the product with the id "475"? | SELECT Name FROM Product WHERE ProductID = 475 | [
"Product.Name",
"Product.ProductID"
] | |
7,209 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Among the employees born before 1980 , how many of them are single? | SELECT COUNT(BusinessEntityID) FROM Employee WHERE MaritalStatus = 's' AND BirthDate < '1980-1-1' | BirthDate<'1980-01-01'; single refers to MaritalStatus = 'S' or null; | [
"Employee.BirthDate",
"Employee.BusinessEntityID",
"Employee.MaritalStatus"
] |
7,210 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | List all the names of the stores assigned to the sales person with the id "277". | SELECT Name FROM Store WHERE SalesPersonID = 277 | [
"Store.Name",
"Store.SalesPersonID"
] | |
7,211 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | How many products with the id "989" were sold in August 2013? | SELECT SUM(Quantity) FROM TransactionHistory WHERE TransactionDate LIKE '2013-08%' AND TransactionType = 'S' AND ProductID = 989 | TransactionDate BETWEEN '2013-08-01' AND '2013-08-30'; sold in refers to TransactionType = 'S' which means SalesOrder; | [
"TransactionHistory.ProductID",
"TransactionHistory.Quantity",
"TransactionHistory.TransactionDate",
"TransactionHistory.TransactionType"
] |
7,212 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | List all of the credit cards that had expired by 2007. | SELECT CardNumber FROM CreditCard WHERE ExpYear < 2007 | card that expires in 2007 refers to ExpYear = 2007; | [
"CreditCard.CardNumber",
"CreditCard.ExpYear"
] |
7,213 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | List all the pay rates of all employees that were hired at 20 years of age. | SELECT T2.Rate FROM Employee AS T1 INNER JOIN EmployeePayHistory AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID WHERE STRFTIME('%Y', T1.HireDate) - STRFTIME('%Y', T1.BirthDate) = 20 | pay rate refers to Rate; 20 years old at the time of being hired refers to SUBTRACT(year(HireDate)), (year(BirthDate))) = 20; | [
"Employee.BirthDate",
"Employee.BusinessEntityID",
"Employee.HireDate",
"EmployeePayHistory.BusinessEntityID",
"EmployeePayHistory.Rate"
] |
7,214 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the name of the territory assigned to the sales person with business id "277"? | SELECT T2.Name FROM SalesPerson AS T1 INNER JOIN SalesTerritory AS T2 ON T1.TerritoryID = T2.TerritoryID WHERE T1.BusinessEntityID = 277 | business id refers to BusinessEntityID | [
"SalesPerson.BusinessEntityID",
"SalesPerson.TerritoryID",
"SalesTerritory.Name",
"SalesTerritory.TerritoryID"
] |
7,215 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the full name of the Vice President of Production? | SELECT T2.FirstName, T2.MiddleName, T2.LastName FROM Employee AS T1 INNER JOIN Person AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID WHERE T1.JobTitle = 'Vice President of Production' | full name = FirstName+MiddleName+LastName; Vice President of Production is a JobTitle; | [
"Employee.BusinessEntityID",
"Employee.JobTitle",
"Person.BusinessEntityID",
"Person.FirstName",
"Person.LastName",
"Person.MiddleName"
] |
7,216 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | How many employees in the Information Service department work the evening shift? | SELECT COUNT(T2.BusinessEntityID) FROM Department AS T1 INNER JOIN EmployeeDepartmentHistory AS T2 ON T1.DepartmentID = T2.DepartmentID INNER JOIN Shift AS T3 ON T2.ShiftId = T3.ShiftId WHERE T1.Name = 'Information Services' AND T3.Name = 'Evening' | Information Service is a name of department; | [
"Department.DepartmentID",
"Department.Name",
"EmployeeDepartmentHistory.BusinessEntityID",
"EmployeeDepartmentHistory.DepartmentID",
"EmployeeDepartmentHistory.ShiftId",
"Shift.Name",
"Shift.ShiftId"
] |
7,217 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | List all the purchase order ids of the vendor with a below average rating. | SELECT T2.PurchaseOrderID FROM Vendor AS T1 INNER JOIN PurchaseOrderHeader AS T2 ON T1.BusinessEntityID = T2.VendorID WHERE T1.CreditRating = 5 | below average rating refers to CreditRating = 5; | [
"PurchaseOrderHeader.PurchaseOrderID",
"PurchaseOrderHeader.VendorID",
"Vendor.BusinessEntityID",
"Vendor.CreditRating"
] |
7,218 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Is the phone number "114-555-0100" a work number or a home number? | SELECT T2.Name FROM PersonPhone AS T1 INNER JOIN PhoneNumberType AS T2 ON T1.PhoneNumberTypeID = T2.PhoneNumberTypeID WHERE T1.PhoneNumber = '114-555-0100' | [
"PersonPhone.PhoneNumber",
"PersonPhone.PhoneNumberTypeID",
"PhoneNumberType.Name",
"PhoneNumberType.PhoneNumberTypeID"
] | |
7,219 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the total shipment by "cargo transport 5" cost of all purchase orders created on 12/14/2011? | SELECT SUM(t2.freight) FROM ShipMethod AS t1 INNER JOIN PurchaseOrderHeader AS t2 ON t1.shipmethodid = t2.shipmethodid WHERE t1.name = 'cargo transport 5' AND t2.orderdate = '2011-12-14' | Catgo Transport 5 is a name of shipping method; OrderDate = '2011-12-14'; total shipment cost = SUM(Freight); | [
"PurchaseOrderHeader.freight",
"PurchaseOrderHeader.orderdate",
"PurchaseOrderHeader.shipmethodid",
"ShipMethod.name",
"ShipMethod.shipmethodid"
] |
7,220 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | How many sales orders did the salesperson David R. Campbell create? | SELECT COUNT(T2.TotalDue) FROM Person AS T1 INNER JOIN SalesOrderHeader AS T2 ON T1.ModifiedDate = T2.DueDate WHERE T1.FirstName = 'David' AND T1.MiddleName = 'R' AND T1.LastName = 'Campbell' AND T1.PersonType = 'SP' | SP is an abbreviation for Sales Person; PersonType = 'SP'; | [
"Person.FirstName",
"Person.LastName",
"Person.MiddleName",
"Person.ModifiedDate",
"Person.PersonType",
"SalesOrderHeader.DueDate",
"SalesOrderHeader.TotalDue"
] |
7,221 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the email address of the Facilities Manager? | SELECT T3.EmailAddress FROM Employee AS T1 INNER JOIN Person AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID INNER JOIN EmailAddress AS T3 ON T2.BusinessEntityID = T3.BusinessEntityID WHERE T1.JobTitle = 'Facilities Manager' | Facilities Manager is a job title | [
"EmailAddress.BusinessEntityID",
"EmailAddress.EmailAddress",
"Employee.BusinessEntityID",
"Employee.JobTitle",
"Person.BusinessEntityID"
] |
7,222 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | How many customers are there in Canada? | SELECT COUNT(T2.CustomerID) FROM SalesTerritory AS T1 INNER JOIN Customer AS T2 ON T1.TerritoryID = T2.TerritoryID WHERE T1.Name = 'Canada' | Canada is name of sales territory | [
"Customer.CustomerID",
"Customer.TerritoryID",
"SalesTerritory.Name",
"SalesTerritory.TerritoryID"
] |
7,223 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the shipping address for the sales order "43873"? | SELECT T1.ShipToAddressID FROM SalesOrderHeader AS T1 INNER JOIN Address AS T2 ON T1.BillToAddressID = T2.AddressID WHERE T1.SalesOrderID = 43873 GROUP BY T1.ShipToAddressID | shipping address = AddressLine1+AddressLine2+City; | [
"Address.AddressID",
"SalesOrderHeader.BillToAddressID",
"SalesOrderHeader.SalesOrderID",
"SalesOrderHeader.ShipToAddressID"
] |
7,224 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | List the first names of the people with more than 65 sick leave hours. | SELECT T2.FirstName FROM Employee AS T1 INNER JOIN Person AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID WHERE T1.SickLeaveHours > 65 | SickLeaveHours>65; | [
"Employee.BusinessEntityID",
"Employee.SickLeaveHours",
"Person.BusinessEntityID",
"Person.FirstName"
] |
7,225 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Among all the production technicians, how many have a below average pay rate for a production technician? | SELECT COUNT(T1.BusinessEntityID) FROM Employee AS T1 INNER JOIN EmployeePayHistory AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID WHERE T1.JobTitle LIKE 'Production Technician%' AND T2.Rate < ( SELECT AVG(T2.Rate) FROM Employee AS T1 INNER JOIN EmployeePayHistory AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID ... | production technician is a job title; below average rate refers to Rate<AVG(Rate); | [
"Employee.BusinessEntityID",
"Employee.JobTitle",
"EmployeePayHistory.BusinessEntityID",
"EmployeePayHistory.Rate"
] |
7,226 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What proportion of sales orders are made from the United Kingdom? | SELECT CAST(SUM(CASE WHEN T2.Name = 'United Kingdom' THEN 1 ELSE 0 END) AS REAL) * 100 / COUNT(T1.SalesOrderID) FROM SalesOrderHeader AS T1 INNER JOIN SalesTerritory AS T2 ON T1.TerritoryID = T2.TerritoryID | proportion = DIVIDE(SUM(Name = 'UK')), (COUNT(SalesOrderID))) as count; | [
"SalesOrderHeader.SalesOrderID",
"SalesOrderHeader.TerritoryID",
"SalesTerritory.Name",
"SalesTerritory.TerritoryID"
] |
7,227 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | When is the modified date of the phone number "1500 555-0143"? | SELECT ModifiedDate FROM PersonPhone WHERE PhoneNumber = '1 (11) 500 555-0143' | [
"PersonPhone.ModifiedDate",
"PersonPhone.PhoneNumber"
] | |
7,228 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the business ID of the person who has made the most sales total year to date? | SELECT BusinessEntityID FROM SalesPerson ORDER BY SalesYTD DESC LIMIT 1 | business ID refers to BusinessEntityID; sales total year to date refers to SalesYTD; most sales total year to date refers to MAX(SalesYTD); | [
"SalesPerson.BusinessEntityID",
"SalesPerson.SalesYTD"
] |
7,229 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | List all active vendors who offer a purchasing web service. | SELECT Name FROM Vendor WHERE ActiveFlag = 1 | active vendors refers to ActiveFlag = 1; vendor who offer a purchasing web service refers to PurchasingWebServiceURL NOT null; | [
"Vendor.ActiveFlag",
"Vendor.Name"
] |
7,230 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Which territory has the most customers as of 9/12/2014? | SELECT TerritoryID FROM Customer WHERE ModifiedDate < '2014-12-09' GROUP BY TerritoryID ORDER BY COUNT(TerritoryID) DESC LIMIT 1 | ModifiedDate between'2014-09-12 00:00:00' and '2014-09-12 23:59:59'; | [
"Customer.ModifiedDate",
"Customer.TerritoryID"
] |
7,231 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the total cost for all the orders placed on 5/29/2013? | SELECT SUM(TotalDue) FROM PurchaseOrderHeader WHERE OrderDate LIKE '2013-05-29%' | total cost = SUM(TotalDue); OrderDate = '2013-05-29'; | [
"PurchaseOrderHeader.OrderDate",
"PurchaseOrderHeader.TotalDue"
] |
7,232 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the most common first name among the vendor contact? | SELECT FirstName FROM Person WHERE PersonType = 'VC' GROUP BY FirstName ORDER BY COUNT(*) DESC LIMIT 1 | vendor contact refers to PersonType = 'VC'; | [
"Person.FirstName",
"Person.PersonType"
] |
7,233 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | List the full name of all the 'Production Technician - WC50' | SELECT T2.FirstName, T2.MiddleName, T2.LastName FROM Employee AS T1 INNER JOIN Person AS T2 USING (BusinessEntityID) WHERE T1.JobTitle = 'Production Technician - WC50' GROUP BY T2.FirstName, T2.MiddleName, T2.LastName | full name = FirstName+MiddleName+LastName; Production Technician - WC50 is a job title; | [
"Employee.JobTitle",
"Person.FirstName",
"Person.LastName",
"Person.MiddleName"
] |
7,234 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | How many Minipumps have been sold? | SELECT COUNT(OrderQty) FROM SalesOrderDetail WHERE ProductID IN ( SELECT ProductID FROM Product WHERE Name = 'Minipump' ) | Minipump is name of a product | [
"Product.Name",
"Product.ProductID"
] |
7,235 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the person's business ID with a vista credit card number "11113366963373"? | SELECT T2.BusinessEntityID FROM CreditCard AS T1 INNER JOIN PersonCreditCard AS T2 ON T1.CreditCardID = T2.CreditCardID WHERE T1.CardNumber = 11113366963373 | business id refers to BusinessEntityID | [
"CreditCard.CardNumber",
"CreditCard.CreditCardID",
"PersonCreditCard.BusinessEntityID",
"PersonCreditCard.CreditCardID"
] |
7,236 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Where does the person with the BusinessEntityID "5555" live? | SELECT T3.City, T3.AddressLine1 FROM BusinessEntityAddress AS T1 INNER JOIN AddressType AS T2 ON T1.AddressTypeID = T2.AddressTypeID INNER JOIN Address AS T3 ON T1.AddressID = T3.AddressID WHERE T1.BusinessEntityID = 5555 AND T2.Name = 'Home' | where the person live refers addresstype.Name = 'Home' | [
"Address.AddressID",
"Address.AddressLine1",
"Address.City",
"AddressType.AddressTypeID",
"AddressType.Name",
"BusinessEntityAddress.AddressID",
"BusinessEntityAddress.AddressTypeID",
"BusinessEntityAddress.BusinessEntityID"
] |
7,237 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | List all the names of products with the special offer "15". | SELECT T2.Name FROM SpecialOfferProduct AS T1 INNER JOIN Product AS T2 ON T1.ProductID = T2.ProductID WHERE T1.SpecialOfferID = 15 | [
"Product.Name",
"Product.ProductID",
"SpecialOfferProduct.ProductID",
"SpecialOfferProduct.SpecialOfferID"
] | |
7,238 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the credit card number for Michelle E Cox? | SELECT T3.CreditCardID FROM Person AS T1 INNER JOIN PersonCreditCard AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID INNER JOIN CreditCard AS T3 ON T2.CreditCardID = T3.CreditCardID WHERE T1.FirstName = 'Michelle' AND T1.MiddleName = 'E' AND T1.LastName = 'Cox' | credit card number refers to CreditCardID | [
"CreditCard.CreditCardID",
"Person.BusinessEntityID",
"Person.FirstName",
"Person.LastName",
"Person.MiddleName",
"PersonCreditCard.BusinessEntityID",
"PersonCreditCard.CreditCardID"
] |
7,239 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the reason for sales order "51883"? | SELECT T2.Name FROM SalesOrderHeaderSalesReason AS T1 INNER JOIN SalesReason AS T2 ON T1.SalesReasonID = T2.SalesReasonID WHERE T1.SalesOrderID = 51883 | reason means the category of sales reason which refers to ReasonType | [
"SalesOrderHeaderSalesReason.SalesOrderID",
"SalesOrderHeaderSalesReason.SalesReasonID",
"SalesReason.Name",
"SalesReason.SalesReasonID"
] |
7,240 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the credit card number for the sales order "45793"? | SELECT T2.CardNumber FROM SalesOrderHeader AS T1 INNER JOIN CreditCard AS T2 ON T1.CreditCardID = T2.CreditCardID WHERE T1.SalesOrderID = 45793 | [
"CreditCard.CardNumber",
"CreditCard.CreditCardID",
"SalesOrderHeader.CreditCardID",
"SalesOrderHeader.SalesOrderID"
] | |
7,241 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | List all the sales people in the Northwest US. | SELECT T2.BusinessEntityID FROM SalesTerritory AS T1 INNER JOIN SalesPerson AS T2 ON T1.TerritoryID = T2.TerritoryID WHERE T1.Name = 'Northwest' AND T1.CountryRegionCode = 'US' | Northwest is name of SalesTerritory; US is the CountryRegionCode; | [
"SalesPerson.BusinessEntityID",
"SalesPerson.TerritoryID",
"SalesTerritory.CountryRegionCode",
"SalesTerritory.Name",
"SalesTerritory.TerritoryID"
] |
7,242 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Which Production Technician has the highest pay rate? | SELECT T1.BusinessEntityID FROM Employee AS T1 INNER JOIN EmployeePayHistory AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID WHERE T1.JobTitle LIKE 'Production Technician%' ORDER BY T2.Rate DESC LIMIT 1 | highest pay rate refers to MAX(Rate); | [
"Employee.BusinessEntityID",
"Employee.JobTitle",
"EmployeePayHistory.BusinessEntityID",
"EmployeePayHistory.Rate"
] |
7,243 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Who is the sales person in charge of the territory with the id "9"? Provide their full name. | SELECT T2.FirstName, T2.MiddleName, T2.LastName FROM SalesPerson AS T1 INNER JOIN Person AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID WHERE T1.TerritoryID = 9 | full name = FirstName+MiddleName+LastName; | [
"Person.BusinessEntityID",
"Person.FirstName",
"Person.LastName",
"Person.MiddleName",
"SalesPerson.BusinessEntityID",
"SalesPerson.TerritoryID"
] |
7,244 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the description of the discount for the product with the id "762"? | SELECT T2.Description FROM SpecialOfferProduct AS T1 INNER JOIN SpecialOffer AS T2 ON T1.SpecialOfferID = T2.SpecialOfferID WHERE T1.ProductID = 762 | [
"SpecialOffer.Description",
"SpecialOffer.SpecialOfferID",
"SpecialOfferProduct.ProductID",
"SpecialOfferProduct.SpecialOfferID"
] | |
7,245 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Compare the average pay rate of male and female employees. | SELECT AVG(T2.Rate) FROM Employee AS T1 INNER JOIN EmployeePayHistory AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID GROUP BY T1.Gender | male refers to Gender = 'M'; female refers to Gender = 'F'; difference in average rate = DIVIDE(AVG(Rate where Gender = 'F')), (AVG(Rate where Gender = 'M'))) as diff; | [
"Employee.BusinessEntityID",
"Employee.Gender",
"EmployeePayHistory.BusinessEntityID",
"EmployeePayHistory.Rate"
] |
7,246 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the percentage of employees who work the night shift? | SELECT CAST(SUM(CASE WHEN T1.Name = 'Night' THEN 1 ELSE 0 END) AS REAL) * 100 / COUNT(T2.BusinessEntityID) FROM Shift AS T1 INNER JOIN EmployeeDepartmentHistory AS T2 ON T1.ShiftId = T2.ShiftId | percentage = DIVIDE(SUM(Name = 'Night')), (COUNT(ShiftID)) as percentage; | [
"EmployeeDepartmentHistory.BusinessEntityID",
"EmployeeDepartmentHistory.ShiftId",
"Shift.Name",
"Shift.ShiftId"
] |
7,247 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | How many married male employees were born before the year 1960? | SELECT COUNT(BusinessEntityID) FROM Employee WHERE MaritalStatus = 'M' AND STRFTIME('%Y', BirthDate) < '1960' AND Gender = 'M' | married refers to MaritalStatus = 'M'; male refers to Gender = 'M'; BirthDate < = '1959-12-31'; | [
"Employee.BirthDate",
"Employee.BusinessEntityID",
"Employee.Gender",
"Employee.MaritalStatus"
] |
7,248 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What are the top 5 types of products with the highest selling price? ? | SELECT Name FROM Product ORDER BY ListPrice DESC LIMIT 5 | highest selling price refers to MAX(ListPrice); | [
"Product.ListPrice",
"Product.Name"
] |
7,249 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | When did the company hired its first Accountant? | SELECT MIN(HireDate) FROM Employee WHERE JobTitle = 'Accountant' | Accountant is a job title; first hired = MIN(HireDate) | [
"Employee.HireDate",
"Employee.JobTitle"
] |
7,250 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | In 2007, which job position was hired the most? | SELECT JobTitle FROM Employee WHERE STRFTIME('%Y', HireDate) = '2007' GROUP BY HireDate ORDER BY COUNT(JobTitle) DESC LIMIT 1 | Job position and job title are synonyms; job position that was hired the most refers to MAX(COUNT(JobTitle); HireDate BETWEEN '2007-1-1' AND '2007-12-31'; | [
"Employee.HireDate",
"Employee.JobTitle"
] |
7,251 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the profit on net of the vendor with the highest standard price? If there are two vendors of the same amount, calculate only for one vendor. | SELECT LastReceiptCost - StandardPrice FROM ProductVendor ORDER BY StandardPrice DESC LIMIT 1 | profit on net = SUBTRACT(LastReceiptCost, StandardPrice); | [
"ProductVendor.LastReceiptCost",
"ProductVendor.StandardPrice"
] |
7,252 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | How many departments did Sheela Ward work in between 1/1/2011 to 12/31/2012 | SELECT COUNT(T3.Name) FROM Person AS T1 INNER JOIN EmployeeDepartmentHistory AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID INNER JOIN Department AS T3 ON T2.DepartmentID = T3.DepartmentID WHERE T1.FirstName = 'Sheela' AND T1.LastName = 'Word' AND STRFTIME('%Y', T3.ModifiedDate) BETWEEN '2011' AND '2012' | number of departments an employee works for between 2011 and 2012 refers to year(StartDate) BETWEEN 2011 AND 2012 and year(EndDate) BETWEEN 2011 and 2012; | [
"Department.DepartmentID",
"Department.ModifiedDate",
"Department.Name",
"EmployeeDepartmentHistory.BusinessEntityID",
"EmployeeDepartmentHistory.DepartmentID",
"Person.BusinessEntityID",
"Person.FirstName",
"Person.LastName"
] |
7,253 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the average age of the sales agents in the company by 12/31/2009? | SELECT AVG(2009 - STRFTIME('%Y', T2.BirthDate)) FROM Person AS T1 INNER JOIN Employee AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID WHERE T1.PersonType = 'SP' | average age as of 12/31/2009 = AVG(SUBTRACT(2009, year(BirthDate)); | [
"Employee.BirthDate",
"Employee.BusinessEntityID",
"Person.BusinessEntityID",
"Person.PersonType"
] |
7,254 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | To which group does the department with the least amount of workers belong to? Indicate the name of the department as well. | SELECT T2.GroupName FROM EmployeeDepartmentHistory AS T1 INNER JOIN Department AS T2 ON T1.DepartmentID = T2.DepartmentID GROUP BY T2.GroupName ORDER BY COUNT(T1.BusinessEntityID) LIMIT 1 | least amount of workers refers to MIN(count(DepartmentID)); | [
"Department.DepartmentID",
"Department.GroupName",
"EmployeeDepartmentHistory.BusinessEntityID",
"EmployeeDepartmentHistory.DepartmentID"
] |
7,255 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the age of the oldest Marketing Specialist by 12/31/2015 and what is his/her hourly rate? | SELECT 2015 - STRFTIME('%Y', T1.BirthDate), T2.Rate FROM Employee AS T1 INNER JOIN EmployeePayHistory AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID WHERE T1.JobTitle = 'Marketing Specialist' ORDER BY 2015 - STRFTIME('%Y', T1.BirthDate) DESC LIMIT 1 | age as of 12/31/2015 = SUBTRACT(2015, year(BirthDate)); hourly rate refers to Rate; | [
"Employee.BirthDate",
"Employee.BusinessEntityID",
"Employee.JobTitle",
"EmployeePayHistory.BusinessEntityID",
"EmployeePayHistory.Rate"
] |
7,256 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the total amount due of all the purchases made by the company to the vendor that has the lowest selling price amount of a single product? Indicate the name of the vendor to which the purchases was made. | SELECT T1.UnitPrice, T3.Name FROM PurchaseOrderDetail AS T1 INNER JOIN PurchaseOrderHeader AS T2 ON T1.PurchaseOrderID = T2.PurchaseOrderID INNER JOIN Vendor AS T3 ON T2.VendorID = T3.BusinessEntityID ORDER BY T1.UnitPrice LIMIT 1 | Vendor's selling price of a single product refers to UnitPrice; | [
"PurchaseOrderDetail.PurchaseOrderID",
"PurchaseOrderDetail.UnitPrice",
"PurchaseOrderHeader.PurchaseOrderID",
"PurchaseOrderHeader.VendorID",
"Vendor.BusinessEntityID",
"Vendor.Name"
] |
7,257 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Who made the purchase order with the greatest total due before freight? Indicate her employee ID and calculate for his/her age when he/she was hired. | SELECT T2.BusinessEntityID, STRFTIME('%Y', T2.HireDate) - STRFTIME('%Y', T2.BirthDate) FROM PurchaseOrderHeader AS T1 INNER JOIN Employee AS T2 ON T1.EmployeeID = T2.BusinessEntityID ORDER BY T1.TotalDue DESC LIMIT 1 | total due before freight = SUBTRACT(TotalDue, Freight); age at the time an employee was hired = SUBTRACT(HireDate, year(BirthDate); | [
"Employee.BirthDate",
"Employee.BusinessEntityID",
"Employee.HireDate",
"PurchaseOrderHeader.EmployeeID",
"PurchaseOrderHeader.TotalDue"
] |
7,258 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the position of the employee with the 10th highest salary? Indicate his/her salary amount and his/her full name. | SELECT T2.JobTitle, T1.Rate, T3.FirstName, T3.MiddleName, T3.LastName FROM EmployeePayHistory AS T1 INNER JOIN Employee AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID INNER JOIN Person AS T3 ON T2.BusinessEntityID = T3.BusinessEntityID ORDER BY T1.Rate DESC LIMIT 9, 1 | salary and Rate are synonyms; full name = FirstName+MiddleName+LastName; | [
"Employee.BusinessEntityID",
"Employee.JobTitle",
"EmployeePayHistory.BusinessEntityID",
"EmployeePayHistory.Rate",
"Person.BusinessEntityID",
"Person.FirstName",
"Person.LastName",
"Person.MiddleName"
] |
7,259 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the profit of a single product that received the highest rating from John Smith? List the product/s' names. | SELECT T1.ListPrice - T1.StandardCost, T1.Name FROM Product AS T1 INNER JOIN ProductReview AS T2 ON T1.ProductID = T2.ProductID WHERE T2.ReviewerName = 'John Smith' ORDER BY T2.Rating DESC LIMIT 1 | highest rating refers to Rating = 5; profit = SUBTRACT(ListPrice, StandardCost); | [
"Product.ListPrice",
"Product.Name",
"Product.ProductID",
"Product.StandardCost",
"ProductReview.ProductID",
"ProductReview.Rating",
"ProductReview.ReviewerName"
] |
7,260 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the salary rate per hour that the company paid to the first 5 employees that they hired? | SELECT T1.Rate FROM EmployeePayHistory AS T1 INNER JOIN Employee AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID INNER JOIN Person AS T3 ON T2.BusinessEntityID = T3.BusinessEntityID ORDER BY T2.HireDate ASC LIMIT 0, 5 | salary rate per hour refers to Rate; first 5 employees that were hired refers to 5 oldest HireDate; | [
"Employee.BusinessEntityID",
"Employee.HireDate",
"EmployeePayHistory.BusinessEntityID",
"EmployeePayHistory.Rate",
"Person.BusinessEntityID"
] |
7,261 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Among the vendors with maximum orders betweeen 500 to 750, which vendor has the 10th highest profit on net? | SELECT T2.Name FROM ProductVendor AS T1 INNER JOIN Vendor AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID WHERE T1.MaxOrderQty BETWEEN 500 AND 750 ORDER BY T1.LastReceiptCost - T1.StandardPrice DESC LIMIT 9, 1 | maximum orders refers to MaxOrderQty; MaxOrderQty BETWEEN '500' AND '750'; profit on net = SUBTRACT(LastReceiptCost, StandardPrice); | [
"ProductVendor.BusinessEntityID",
"ProductVendor.LastReceiptCost",
"ProductVendor.MaxOrderQty",
"ProductVendor.StandardPrice",
"Vendor.BusinessEntityID",
"Vendor.Name"
] |
7,262 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | As of 12/31/2011, how long has the employee assigned to all pending for approval papers been working in the company from the date he was hired? | SELECT 2011 - STRFTIME('%Y', T2.HireDate) FROM Document AS T1 INNER JOIN Employee AS T2 ON T1.Owner = T2.BusinessEntityID WHERE T1.Status = 1 | pending for approval papers refer to Status = 1; length of stay in the company as of 12/31/2011 = SUBTRACT(2011, year(HireDate)); | [
"Document.Owner",
"Document.Status",
"Employee.BusinessEntityID",
"Employee.HireDate"
] |
7,263 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Jill ranked which medium-quality class product as the highest, and how long will it take the company to manufacture such a product? | SELECT T1.DaysToManufacture FROM Product AS T1 INNER JOIN ProductReview AS T2 ON T1.ProductID = T2.ProductID WHERE T2.Rating = 5 AND T1.Class = 'M' ORDER BY T2.Rating LIMIT 1 | second-lowest rating refers to Rating = 2; high-quality class product refers to Class = 'H'; length of time it takes the company to manufacture a product refers to DaysToManufacture; | [
"Product.Class",
"Product.DaysToManufacture",
"Product.ProductID",
"ProductReview.ProductID",
"ProductReview.Rating"
] |
7,264 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What was the first job position that the company needed, and who was hired? Indicate his/her full name. | SELECT T1.JobTitle, T2.FirstName, T2.MiddleName, T2.LastName FROM Employee AS T1 INNER JOIN Person AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID ORDER BY T1.HireDate LIMIT 1 | job position and job title are synonyms; full name = FirstName+MiddleName+LastName; | [
"Employee.BusinessEntityID",
"Employee.HireDate",
"Employee.JobTitle",
"Person.BusinessEntityID",
"Person.FirstName",
"Person.LastName",
"Person.MiddleName"
] |
7,265 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | How many work orders with quantities ranging from 100 to 250 have a reorder point of no more than 375? | SELECT COUNT(T1.TransactionID) FROM TransactionHistory AS T1 INNER JOIN Product AS T2 ON T1.ProductID = T2.ProductID WHERE T1.Quantity BETWEEN 100 AND 250 AND T2.ReorderPoint <= 375 | work order refers to TransactionType = 'W'; Quantity BETWEEN 100 AND 250; ReorderPoint< = 375; | [
"Product.ProductID",
"Product.ReorderPoint",
"TransactionHistory.ProductID",
"TransactionHistory.Quantity",
"TransactionHistory.TransactionID"
] |
7,266 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | How much is the average salary of female employees in comparison to male employees? | SELECT AVG(T2.Rate) FROM Employee AS T1 INNER JOIN EmployeePayHistory AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID WHERE T1.Gender = 'F' | female refers to Gender = 'F'; male refers to Gender = 'M'; difference in the average salary of female against male employees = SUBTRACT(AVG(Rate where Gender = 'F')), (AVG(Rate where Gender = 'M'))); | [
"Employee.BusinessEntityID",
"Employee.Gender",
"EmployeePayHistory.BusinessEntityID",
"EmployeePayHistory.Rate"
] |
7,267 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What are the names of the vendors to which the company purchased its women's tights products? | SELECT DISTINCT T4.Name FROM Product AS T1 INNER JOIN ProductVendor AS T2 ON T1.ProductID = T2.ProductID INNER JOIN ProductSubcategory AS T3 ON T1.ProductSubcategoryID = T3.ProductSubcategoryID INNER JOIN Vendor AS T4 ON T2.BusinessEntityID = T4.BusinessEntityID WHERE T1.MakeFlag = 0 AND T1.Style = 'W' AND T3.Name = 'T... | product is purchased refers to MakeFlag = 0; women's refers to Style = 'W'; ProductSubcategoryID = 'Tights'; | [
"Product.MakeFlag",
"Product.ProductID",
"Product.ProductSubcategoryID",
"Product.Style",
"ProductSubcategory.Name",
"ProductSubcategory.ProductSubcategoryID",
"ProductVendor.BusinessEntityID",
"ProductVendor.ProductID",
"Vendor.BusinessEntityID",
"Vendor.Name"
] |
7,268 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | How frequently does the first-ever Scheduling Assistant get paid? | SELECT T2.PayFrequency FROM Employee AS T1 INNER JOIN EmployeePayHistory AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID WHERE T1.JobTitle = 'Scheduling Assistant' ORDER BY T1.HireDate LIMIT 1 | PayFrequency = 1 refers to ‘Salary received monthly’; PayFrequency = 2 refers to ‘Salary received biweekly'; | [
"Employee.BusinessEntityID",
"Employee.HireDate",
"Employee.JobTitle",
"EmployeePayHistory.BusinessEntityID",
"EmployeePayHistory.PayFrequency"
] |
7,269 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What product has the fewest online orders from one customer? List the product's class, line of business, and list price. | SELECT T2.Class, T2.ProductLine, T2.ListPrice FROM ShoppingCartItem AS T1 INNER JOIN Product AS T2 ON T1.ProductID = T2.ProductID GROUP BY T1.ProductID ORDER BY SUM(Quantity) LIMIT 1 | fewest online orders refer to MIN(Quantity); | [
"Product.Class",
"Product.ListPrice",
"Product.ProductID",
"Product.ProductLine",
"ShoppingCartItem.ProductID"
] |
7,270 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the full name of the sales person who has the the highest commission percent received per sale? | SELECT T2.FirstName, T2.MiddleName, T2.LastName FROM SalesPerson AS T1 INNER JOIN Person AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID ORDER BY T1.CommissionPct DESC LIMIT 1 | commision percent received per sale refers to CommissionPct; highest commision percent received per sale refers to MAX(CommissionPcT); full name = FirstName+MiddleName+LastName; | [
"Person.BusinessEntityID",
"Person.FirstName",
"Person.LastName",
"Person.MiddleName",
"SalesPerson.BusinessEntityID",
"SalesPerson.CommissionPct"
] |
7,271 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the full name of the second oldest person in the company at the time he was hired? | SELECT T2.FirstName, T2.MiddleName, T2.LastName FROM Employee AS T1 INNER JOIN Person AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID ORDER BY STRFTIME('%Y', T1.HireDate) - STRFTIME('%Y', T1.BirthDate) DESC LIMIT 1, 1 | age at the time of being hired = SUBTRACT(HireDate, BirthDate); full name = FirstName+MiddleName+LastName; | [
"Employee.BirthDate",
"Employee.BusinessEntityID",
"Employee.HireDate",
"Person.BusinessEntityID",
"Person.FirstName",
"Person.LastName",
"Person.MiddleName"
] |
7,272 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the total profit gained by the company from the product that has the highest amount of quantity ordered from online customers? Indicate the name of the product. | SELECT (T2.ListPrice - T2.StandardCost) * SUM(T1.Quantity), T2.Name FROM ShoppingCartItem AS T1 INNER JOIN Product AS T2 ON T1.ProductID = T2.ProductID GROUP BY T1.ProductID, T2.Name, T2.ListPrice, T2.StandardCost, T1.Quantity ORDER BY SUM(T1.Quantity) DESC LIMIT 1 | profit = MULTIPLY(SUBTRACT(ListPrice, Standardcost)), (Quantity))); | [
"Product.ListPrice",
"Product.Name",
"Product.ProductID",
"Product.StandardCost",
"ShoppingCartItem.ProductID",
"ShoppingCartItem.Quantity"
] |
7,273 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the highest amount of difference between the ordered quantity and actual quantity received in a single purchase order and to which vendor was the purchase order made? | SELECT T2.OrderQty - T2.ReceivedQty, VendorID FROM PurchaseOrderHeader AS T1 INNER JOIN PurchaseOrderDetail AS T2 ON T1.PurchaseOrderID = T2.PurchaseOrderID ORDER BY T2.OrderQty - T2.ReceivedQty DESC LIMIT 1 | highest amount of difference between the ordered quantity and actual quantity received in a single purchase order refers to MAX(SUBTRACT(OrderQty, ReceivedQty)); | [
"PurchaseOrderDetail.OrderQty",
"PurchaseOrderDetail.PurchaseOrderID",
"PurchaseOrderDetail.ReceivedQty",
"PurchaseOrderHeader.PurchaseOrderID"
] |
7,274 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the average lead time of product ID 843? Calculate for its profit on net and indicate the full location to which the vendor is located. | SELECT T1.AverageLeadTime, T1.LastReceiptCost - T1.StandardPrice, T4.AddressLine1, T4.AddressLine2 , T4.City, T4.PostalCode FROM ProductVendor AS T1 INNER JOIN Vendor AS T2 ON T1.BusinessEntityID = T2.BusinessEntityID INNER JOIN BusinessEntityAddress AS T3 ON T1.BusinessEntityID = T3.BusinessEntityID INNER JOIN Address... | Profit on net = SUBTRACT(LastReceiptCost, StandardPrice); full location = AddressLine1+AddressLine2+City+PostalCode; | [
"Address.AddressID",
"Address.AddressLine1",
"Address.AddressLine2",
"Address.City",
"Address.PostalCode",
"BusinessEntityAddress.AddressID",
"BusinessEntityAddress.BusinessEntityID",
"ProductVendor.AverageLeadTime",
"ProductVendor.BusinessEntityID",
"ProductVendor.LastReceiptCost",
"ProductVend... |
7,275 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | How many salespersons haven't met quota? | SELECT COUNT(BusinessEntityID) FROM SalesPerson WHERE Bonus = 0 | salesperson that haven't met the quota refers to Bonus = 0; | [
"SalesPerson.Bonus",
"SalesPerson.BusinessEntityID"
] |
7,276 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Among the sales with a tax applied to retail transaction, how many of them are charged by multiple types of taxes? | SELECT COUNT(SalesTaxRateID) FROM SalesTaxRate WHERE Name LIKE '%+%' | tax applied to retail transaction refers to Taxtype = 1; sales that are charged with multiple types of tax refers to NAME LIKE '%+%'; | [
"SalesTaxRate.Name",
"SalesTaxRate.SalesTaxRateID"
] |
7,277 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Please give the highest product cost of a purchase order. | SELECT ActualCost FROM TransactionHistory WHERE TransactionType = 'P' ORDER BY ActualCost DESC LIMIT 1 | product cost refers to ActualCost; purchase order refers to TransactionType = 'P'; | [
"TransactionHistory.ActualCost",
"TransactionHistory.TransactionType"
] |
7,278 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the current status of the order with the highest shipping cost? | SELECT Status FROM SalesOrderHeader ORDER BY Freight DESC LIMIT 1 | shipping cost and Freight are synonyms; highest shipping cost refers to MAX(Freight); | [
"SalesOrderHeader.Freight",
"SalesOrderHeader.Status"
] |
7,279 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | How many products are out of stock? | SELECT COUNT(ProductID) FROM ProductVendor WHERE OnOrderQty = 0 | out of stock product refers to OnOrderQty = 0; | [
"ProductVendor.OnOrderQty",
"ProductVendor.ProductID"
] |
7,280 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the highest profit on net for a product? | SELECT LastReceiptCost - StandardPrice FROM ProductVendor ORDER BY LastReceiptCost - StandardPrice DESC LIMIT 1 | profit on net = subtract(LastReceiptCost, StandardPrice) | [
"ProductVendor.LastReceiptCost",
"ProductVendor.StandardPrice"
] |
7,281 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Which reviewer gives the biggest number of the highest rating? | SELECT ReviewerName FROM ProductReview WHERE Rating = ( SELECT Rating FROM ProductReview ORDER BY Rating DESC LIMIT 1 ) | highest rating refers to MAX(Rating) | [
"ProductReview.Rating",
"ProductReview.ReviewerName"
] |
7,282 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Which product gets the most reviews? | SELECT T2.Name FROM ProductReview AS T1 INNER JOIN Product AS T2 ON T1.ProductID = T2.ProductID GROUP BY T1.ProductID ORDER BY COUNT(T1.ProductReviewID) DESC LIMIT 1 | most reviews refers to MAX(count(ProductID))
| [
"Product.Name",
"Product.ProductID",
"ProductReview.ProductID",
"ProductReview.ProductReviewID"
] |
7,283 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Among the products that are purchased, how many of them have never received the highest rating? | SELECT COUNT(T1.ProductID) FROM ProductReview AS T1 INNER JOIN Product AS T2 ON T1.ProductID = T2.ProductID WHERE T2.MakeFlag = 0 AND T1.Rating != 5 | product that are purchased refers to MakeFlag = 0; never received highest rating refers to Rating! = 5
| [
"Product.MakeFlag",
"Product.ProductID",
"ProductReview.ProductID",
"ProductReview.Rating"
] |
7,284 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the biggest amount of reviews a salable product gets? | SELECT T1.Comments FROM ProductReview AS T1 INNER JOIN Product AS T2 ON T1.ProductID = T2.ProductID WHERE T2.FinishedGoodsFlag = 1 GROUP BY T1.Comments ORDER BY COUNT(T1.ProductReviewID) DESC LIMIT 1 | salable product refers to FinishedGoodsFlag = 1; biggest amount reviews refers to MAX(count(ProductID)) | [
"Product.FinishedGoodsFlag",
"Product.ProductID",
"ProductReview.Comments",
"ProductReview.ProductID",
"ProductReview.ProductReviewID"
] |
7,285 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Among the products that are both manufactured in house and salable, how many of them get over 10 reviews? | SELECT T2.Name FROM ProductReview AS T1 INNER JOIN Product AS T2 USING (ProductID) WHERE T2.FinishedGoodsFlag = 1 AND T2.MakeFlag = 1 GROUP BY T2.Name ORDER BY COUNT(T1.COMMENTS) > 10 | manufactured in house refers to MakeFlag = 1; salable product refers to FinishedGoodsFlag = 1; over 10 reviews refers to count(comments)>10 | [
"Product.FinishedGoodsFlag",
"Product.MakeFlag",
"Product.Name",
"ProductReview.COMMENTS"
] |
7,286 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Please list the names of the products that get over 10 reviews and a salable. | SELECT T2.NAME FROM ProductReview AS T1 INNER JOIN Product AS T2 ON T1.ProductID = T2.ProductID WHERE T2.FinishedGoodsFlag = 1 GROUP BY T2.NAME ORDER BY COUNT(T1.comments) > 10 | salable product refers to FinishedGoodsFlag = 1; over 10 reviews refers to count(comments)>10 | [
"Product.FinishedGoodsFlag",
"Product.NAME",
"Product.ProductID",
"ProductReview.ProductID",
"ProductReview.comments"
] |
7,287 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Please list the reviewers who have given the highest rating for a medium class, women's product. | SELECT T1.ReviewerName FROM ProductReview AS T1 INNER JOIN Product AS T2 ON T1.ProductID = T2.ProductID WHERE T2.Class = 'M' AND T2.Style = 'W' AND T1.Rating = 5 | highest rating refers to Rating = 5; high class refers to Class = 'H'; men's product refers to Style = 'M' | [
"Product.Class",
"Product.ProductID",
"Product.Style",
"ProductReview.ProductID",
"ProductReview.Rating",
"ProductReview.ReviewerName"
] |
7,288 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the class of the product with the most reviews? | SELECT T2.Class FROM ProductReview AS T1 INNER JOIN Product AS T2 ON T1.ProductID = T2.ProductID GROUP BY T2.Class ORDER BY COUNT(T1.ProductReviewID) DESC LIMIT 1 | most review refers to MAX(count(comments)); high class refers to Class = 'H'; medium class refers to Class = 'M'; low class refers to Class = 'L' | [
"Product.Class",
"Product.ProductID",
"ProductReview.ProductID",
"ProductReview.ProductReviewID"
] |
7,289 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Please list the e-mails of the reviewers who have reviewed high class. | SELECT T1.EmailAddress FROM ProductReview AS T1 INNER JOIN Product AS T2 ON T1.ProductID = T2.ProductID WHERE T2.Class = 'H' | high class refers to Class = 'H'; men's product refers to Style = 'M' | [
"Product.Class",
"Product.ProductID",
"ProductReview.EmailAddress",
"ProductReview.ProductID"
] |
7,290 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Please list the names of the products that have over 3 price changes. | SELECT T2.Name FROM ProductListPriceHistory AS T1 INNER JOIN Product AS T2 ON T1.ProductID = T2.ProductID GROUP BY T2.Name ORDER BY COUNT(T1.ListPrice) > 3 | over 3 price changes refers to count(ListPrice)>3 | [
"Product.Name",
"Product.ProductID",
"ProductListPriceHistory.ListPrice",
"ProductListPriceHistory.ProductID"
] |
7,291 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the product description of Headset Ball Bearings? | SELECT T1.Description FROM ProductDescription AS T1 INNER JOIN Product AS T2 WHERE T2.Name = 'Headset Ball Bearings' AND T1.productDescriptionID = T2.ProductID | Headset Ball Bearings is name of a product | [
"Product.Name",
"Product.ProductID",
"ProductDescription.Description",
"ProductDescription.productDescriptionID"
] |
7,292 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | What is the highest vendor's selling price for Hex Nut 5? | SELECT T1.StandardPrice FROM ProductVendor AS T1 INNER JOIN Product AS T2 ON T1.ProductID = T2.ProductID WHERE T2.Name = 'Hex Nut 5' ORDER BY T1.StandardPrice DESC LIMIT 1 | vendor's selling price refers to StandardPrice | [
"Product.Name",
"Product.ProductID",
"ProductVendor.ProductID",
"ProductVendor.StandardPrice"
] |
7,293 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Please list all the vendors' usual selling prices of the product Hex Nut 5. | SELECT T1.StandardPrice FROM ProductVendor AS T1 INNER JOIN Product AS T2 ON T1.ProductID = T2.ProductID WHERE T2.Name = 'Hex Nut 5' GROUP BY T1.StandardPrice ORDER BY COUNT(T1.StandardPrice) DESC LIMIT 1 | vendor's selling price refers to StandardPrice | [
"Product.Name",
"Product.ProductID",
"ProductVendor.ProductID",
"ProductVendor.StandardPrice"
] |
7,294 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Among the vendors that sell the product Hex Nut 5, how many of them have a good credit rating? | SELECT COUNT(DISTINCT T3.Name) FROM ProductVendor AS T1 INNER JOIN Product AS T2 ON T1.ProductID = T2.ProductID INNER JOIN Vendor AS T3 ON T1.BusinessEntityID = T3.BusinessEntityID WHERE T2.Name = 'Hex Nut 5' AND T3.CreditRating = 1 AND 3 | good credit rating refers to CreditRating between 1 and 3 | [
"Product.Name",
"Product.ProductID",
"ProductVendor.BusinessEntityID",
"ProductVendor.ProductID",
"Vendor.BusinessEntityID",
"Vendor.CreditRating",
"Vendor.Name"
] |
7,295 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Please list the website purchasing links of the vendors from whom the product Hex Nut 5 can be purchased. | SELECT T3.PurchasingWebServiceURL FROM ProductVendor AS T1 INNER JOIN Product AS T2 ON T1.ProductID = T2.ProductID INNER JOIN Vendor AS T3 ON T1.BusinessEntityID = T3.BusinessEntityID WHERE T2.Name = 'Hex Nut 5' | website purchasing link refers to PurchasingWebServiceURL | [
"Product.Name",
"Product.ProductID",
"ProductVendor.BusinessEntityID",
"ProductVendor.ProductID",
"Vendor.BusinessEntityID",
"Vendor.PurchasingWebServiceURL"
] |
7,296 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Which vendor's selling price for Hex Nut 5 is the lowest, please give the vendor's name. | SELECT T3.Name FROM ProductVendor AS T1 INNER JOIN Product AS T2 ON T1.ProductID = T2.ProductID INNER JOIN Vendor AS T3 ON T1.BusinessEntityID = T3.BusinessEntityID WHERE T2.Name = 'Hex Nut 5' ORDER BY T1.StandardPrice LIMIT 1 | vendor's selling price refers to StandardPrice; lowest selling price = MIN(StandardPrice) | [
"Product.Name",
"Product.ProductID",
"ProductVendor.BusinessEntityID",
"ProductVendor.ProductID",
"ProductVendor.StandardPrice",
"Vendor.BusinessEntityID",
"Vendor.Name"
] |
7,297 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | How many high-class products are sold by preferred vendors? | SELECT COUNT(T2.Name) FROM ProductVendor AS T1 INNER JOIN Product AS T2 USING (ProductID) INNER JOIN Vendor AS T3 ON T1.BusinessEntityID = T3.BusinessEntityID WHERE T3.PreferredVendorStatus = 1 AND T2.Class = 'M' | preferred vendor refers to PreferredVendorStatus = 1; high class refers to Class = 'H' | [
"Product.Class",
"Product.Name",
"ProductVendor.BusinessEntityID",
"Vendor.BusinessEntityID",
"Vendor.PreferredVendorStatus"
] |
7,298 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Please give all the list prices of the product LL Fork. | SELECT T2.ListPrice FROM Product AS T1 INNER JOIN ProductListPriceHistory AS T2 ON T1.ProductID = T2.ProductID WHERE T1.Name = 'LL Fork' | Hex Nut 5 is name of a product | [
"Product.Name",
"Product.ProductID",
"ProductListPriceHistory.ListPrice",
"ProductListPriceHistory.ProductID"
] |
7,299 | works_cycles | CREATE TABLE sqlite_sequence(name,seq);
CREATE TABLE CountryRegion
(
CountryRegionCode TEXT not null
primary key,
Name TEXT not null
unique,
ModifiedDate DATETIME default current_timestamp not null
);
CREATE TABLE Cultur... | Among the products from the mountain product line, how many of them are sold by over 2 vendors? | SELECT SUM(CASE WHEN T1.ProductLine = 'M' THEN 1 ELSE 0 END) FROM Product AS T1 INNER JOIN ProductVendor AS T2 ON T1.ProductID = T2.ProductID INNER JOIN Vendor AS T3 ON T2.BusinessEntityID = T3.BusinessEntityID GROUP BY T1.ProductID HAVING COUNT(T1.Name) > 2 | mountain product line refers to ProductLine = 'M'; sold by over 5 vendors refers to count(Name)>5 | [
"Product.Name",
"Product.ProductID",
"Product.ProductLine",
"ProductVendor.BusinessEntityID",
"ProductVendor.ProductID",
"Vendor.BusinessEntityID"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.