This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #THEBASE | |
| 1.create a table employee with attributes empid, name, dob, gender, address, zipcode. The attributw empid is a unique value given to all employee. Make sure no sttributes allow null values | |
| create database newdb; | |
| use newdb; | |
| create table employee( | |
| empid int not null primary key, | |
| name varchar(50) not null, | |
| dob date not null, |