Question: Consider the Company example that we are using in our textbook. The complete relational schema for this scenario. Using this code provided below build this
Consider the Company example that we are using in our textbook.
The complete relational schema for this scenario. Using this code provided below build this schema. Perform the following steps:
Show the list of tables (there should be none) before executing the six scripts using "SHOW TABLES" .
DROP TABLE department; CREATE TABLE department ( dname varchar(25) not null, dnumber integer(4), mgrssn char(9) not null, mgrstartdate date, primary key (dnumber), key (dname) );
Step by Step Solution
There are 3 Steps involved in it
To perform the steps you outlined well first check if there are any existing tables then e... View full answer
Get step-by-step solutions from verified subject matter experts
