Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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 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
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