Question: The following SQL statements will create tables successfully USE sample; CREATE TABLE employee (emp_no INTEGER NOT NULL, emp_fname CHAR (20) NOT NULL, emp_lname CHAR (20)

 The following SQL statements will create tables successfully USE sample; CREATE

The following SQL statements will create tables successfully USE sample; CREATE TABLE employee (emp_no INTEGER NOT NULL, emp_fname CHAR (20) NOT NULL, emp_lname CHAR (20) NOT NULL, dept_no CHAR NULL); CREATE TABLE department (dept_no CHAR NOT NULL, dept_name CHAR (25) NOT NULL, location CHAR(30) NULL); CREATE TABLE project (project_no CHAR NOT NULL, project_name CHAR(15) NOT NULL, budget FLOAT NULL); CREATE TABLE works_on (emp_no INTEGER NOT NULL, project_no CHAR NOT NULL, job CHAR (15) NULL, enter_date DATE NULL); True False

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!