Create a database named 'My_BIS325' and two tables: 'Employee' and 'Projects'. The 'Employee' table has columns for first name, last name, middle initial, home phone, social security number, home address, home state, home city, salary, and email. The 'Projects' table has columns for project ID and project name. Insert three employees into the database, including Brian Finnegan with a social security number of 123-45-6789. Update Brian's salary to $175000. Update Julia Waite's salary by 50%. Drop the 'Secret_Projects' table and truncate it before dropping it. Delete all employees with salaries greater than $100000. Finally, change the primary key of the 'Employee' table from social security number to a composite key of first name and last name.