QuestionQ236
Data Store ManagementA company stores employee data in Amazon Resdshift. A table named Employee uses columns named Region ID, Department ID, and Role ID as a compound sort key.
Which queries will benefit MOST in query speed from the table’s compound sort key?
Choose two
- A Select *from Employee where Region ID=’North America’;
- B Select *from Employee where Region ID=’North America’ and Department ID=20;
- C Select *from Employee where Department ID=20 and Region ID=’North America’;
- D Select *from Employee where Role ID=50;
- E Select *from Employee where Region ID=’North America’ and Role ID=50;
Community Discussion