I'm trying to figure out the dependencies for the table. However, I've realized that the primary key is composed of a single candidate key which is the Ticket#. I know that every Parking Ticket # will be unique every instance. With that in mind, doesn't that mean this table is already normalized? Other examples in my textbook always had a composite primary key. I've tried going through the process of normalizing anyways.
For my fully functional dependencies I had: Ticket# -> (all other attributes) For my partial dependencies: Ticket# -> (LicNo Date, Code, Fine) For my transitive dependencies: St_ID -> (LName, FName, PhoneNo, StLic) & Code-> (Fine)
Am I doing something wrong? Should I have my StID as part of the primary key with Ticket#?