EXTRA CREDIT – 10PTS Guidelines on Extra Credit: Partial cre…
EXTRA CREDIT – 10PTS Guidelines on Extra Credit: Partial credit will be applied based on effort shown. Establish a relationship between tables… In the previous 2 questions you added a ClientProfile table to your client management system database to track basic client information and populated it with the initial profiles. Now you need to create a second table that tracks services provided to those clients. Each client may receive multiple services, but each service record should belong to a valid client profile. The program needs to track: A unique identifier for each service record The client who received the service The date the service was provided The type of service provided The only service types that should be allowed are: Case Management Transportation Referral Write a SQL statement that makes a table called ClientServices under the same schema as ClientProfile. HINT: You should only have 4 columns in your table. Make sure your table includes appropriate: Column names Data types Column definitions, including any constraints (table or column level) Relationships
Read Details