I have a table "Transactio n" with the following struct
Transaction
TransactionID int primary key,
CustomerID int,
TranTime DateTime
----------------------------------------------------------------
How can i set a composite key between CustomerID and TranTime
Transaction
TransactionID int primary key,
CustomerID int,
TranTime DateTime
----------------------------------------------------------------
How can i set a composite key between CustomerID and TranTime
Comment