Skip to content

Console based project to perform basic operation Online Hardware and software support system Problem Description: The system will be available on an online platform for 24x7 access to the employees, the engineers, the Head of the Department and the administration.

Notifications You must be signed in to change notification settings

Nancy8570/-honest-trees-8857

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 

Repository files navigation

-honest-trees-8857

Tables in SQl----------------------------------->

Engineer Table---->

create table engineer( engId int primary key auto_increment, name varchar(15) not null, department varchar(10) not null, email varchar(15) not null unique, password varchar(10) not null );

Problem Table---->

create table problem( problemId int primary key auto_increment, type varchar(10) not null, description varchar(150) not null, status varchar(10) default 'pending', date date not null );

Engineer Problem Table--->

create table engineer_problem( engId int not null, problemId int not null, foreign key(engId) references engineer(engId), foreign key(problemId) references problem(problemId) );

Employee Table--->

create table employee( empId int primary key auto_increment, empName varchar(15) not null, username varchar(15) not null unique, password varchar(15) not null );

About

Console based project to perform basic operation Online Hardware and software support system Problem Description: The system will be available on an online platform for 24x7 access to the employees, the engineers, the Head of the Department and the administration.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages