Login using Social Account
     Continue with GoogleLogin using your credentials
Follow the below steps to drop and create a table 'emp'. Then, write and execute an insert statement per as given details.
drop table emp;
create table emp(
empid int not null auto_increment,
empfname varchar(100) not null,
emplname varchar(100) not null,
depid int not null,
doj datetime,
empsal int not null,
mgrempid int,
primary key ( empid )
);
Now, write an insert statement to create a row with below data:
empid - System generated
empfname - Sam
emplname - Fox
depid - 1
doj - July 12 2018 2 PM
empsal - 2200
mgrempid - NULL
Now, execute the insert statement. When done, submit your answer.
Taking you to the next exercise in seconds...
Want to create exercises like this yourself? Click here.
Note - Having trouble with the assessment engine? Follow the steps listed here
Loading comments...