I have a table where specific service providers will be store there-car shops for example. The car shops offer various services.
My problem how to store in a column these services? I could create a second table where the services are stored but that would needed if I wanted to provide search functionality-which my intention is not to, at least not now.
So how I would store all the services in one row(that corresponds to a specific car shop for eaxmple). It would be of the VARCHAR type as I see it.
Furthermore is it OK that a primary key in a table references a primary key in another table?
WHat else do I have to do?
I need to stress also that there might be cases where there might be a unique service offered by a service provider-that only one service provider offers a specific service.