Which aisle contains the most SKUs picked as a partial case? Rename the first co
ID: 3881021 • Letter: W
Question
Which aisle contains the most SKUs picked as a partial case? Rename the first column as Aisle and the second column as NumPartialPickItems. Use aliases for all database tables. Save the query using the name: Question3. Paste the SQL code and the table of results into the Solution Document
Hint: SKUs having a “Y” in the field PCpick correspond to partial case picks.
Hint: The quantity of items picked are not critical, therefore this question may be answered using the Item Master table only.
Hint: The query should determine how many items in each aisle can be picked as a partial case. Based on the results, you can then answer the question.
Explanation / Answer
Which aisle contains the most SKUs picked :
select max(totalItems) as highest_total
Rename the first column as Aisle :
Rename the secondcolumn as NumPartialPickItems:
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.