Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Draw an er diagram for the following two tables: A student can only have one account, and an account can only be created by the
Draw an er diagram for the following two tables: A student can only have one account, and an account can only be created by the student.
create table student (FirstName varchar(25), LastName varchar (25), StudentID varchar (25), Address varchar(200), Major varchar(25), Telephone varchar (25), Email varchar(25), PRIMARY KEY (StudentID)); create table StudentLogin(StudentID varchar(25), StudentPass varchar(25), PRIMARY KEY(StudentID), FOREIGN KEY (StudentID) REFERENCES Student (StudentID) ON DELETE CASCADE)Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started