which field would best function as a primary key for a table that tracks orders?\norderdate\ncustomertype\nor…

which field would best function as a primary key for a table that tracks orders?\norderdate\ncustomertype\norderid\ncustomerid
Answer
Brief Explanations:
A primary key uniquely identifies each record in a table. OrderID is likely unique for each order, making it a suitable primary key. OrderDate can be the same for multiple orders, CustomerType is a category that can be shared among orders, and CustomerID can have multiple orders associated with it.
Answer:
C. OrderID