Help desk Setup is below DROP TABLE IF EXISTS employee ;
Help desk Setup is below
DROP TABLE IF EXISTS employee ;
CREATE TABLE IF NOT EXISTS employee (
idEmployee INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
FirstName NULL DEFAULT NULL,
LastName TEXT NULL DEFAULT NULL,
Location TEXT NULL DEFAULT NULL);
DROP TABLE IF EXISTS tickets ;
CREATE TABLE IF NOT EXISTS tickets (
idTickets INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
Description TEXT NULL DEFAULT NULL,
Duration INTEGER NULL DEFAULT NULL,
Priority TEXT NULL DEFAULT NULL,
Status TEXT NULL DEFAULT NULL,
Employee_idEmployee INTEGER NULL DEFAULT NULL);
Helpdesk insert is below
select * from employee;
INSERT INTO employee (FirstName, LastName, Location) VALUES
(‘Will’, ‘Smith’,’MD’),
(‘Ben’, ‘Johnson’,’MD’),
(‘Charlie’, ‘Jackson’,’MD’),
(‘Diamond’, ‘Lee’,’CA’),
(‘Elena’, ‘Gomez’,’CA’),
(‘Fabian’, ‘Williams’,’CA’),
(‘Giriraj’, ‘Patel’,’CA’);
select * from employee;
select * from tickets;
INSERT INTO tickets (Description, Duration, Priority, Status, Employee_idEmployee) VALUES
(‘Malware’, ’33’,’3-Low’, ‘Completed’,’1′),
(‘Virus’, ’17’,’1-High’, ‘In Progress’,’7′),
(‘Hardware’, Null,’3-Low’, ‘Not Started’,Null),
(‘Malware’, ’28’,’1-High’, ‘Completed’,’7′),
(‘Virus’, ’14’,’2-Medium’, ‘Completed’,’5′),
(‘Virus’, ’20’,’2-Medium’, ‘Completed’,’2′),
(‘Virus’, Null,’3-Low’, ‘Not Started’,Null),
(‘Malware’, ’27’,’2-Medium’, ‘In Progress’,’7′),
(‘Malware’, ’18’,’3-Low’, ‘Completed’,’1′),
(‘Hardware’, ’63’,’2-Medium’, ‘Completed’,’7′),
(‘Malware’, ‘7’,’3-Low’, ‘Completed’,’2′),
(‘Malware’, ‘8’,’1-High’, ‘In Progress’,’2′),
(‘Virus’, ’40’,’3-Low’, ‘Completed’,’7′),
(‘Software’, ’42’,’3-Low’, ‘Completed’,’7′),
(‘Virus’, Null,’1-High’, ‘Not Started’,Null),
(‘Hardware’, ’12’,’3-Low’, ‘Completed’,’2′),
(‘Malware’, ’33’,’3-Low’, ‘Completed’,’2′),
(‘Virus’, ’53’,’2-Medium’, ‘Completed’,’4′),
(‘Malware’, ’15’,’1-High’, ‘Completed’,’2′),
(‘Hardware’, ’16’,’2-Medium’, ‘In Progress’,’7′),
(‘Malware’, ’16’,’3-Low’, ‘Completed’,’2′),
(‘Hardware’, ’11’,’3-Low’, ‘Completed’,’7′),
(‘Virus’, ’27’,’3-Low’, ‘Completed’,’7′),
(‘Malware’, Null,’1-High’, ‘Not Started’,Null),
(‘Internet’, ’36’,’2-Medium’, ‘In Progress’,’4′),
(‘Internet’, ’40’,’2-Medium’, ‘Completed’,’2′),
(‘Malware’, ’39’,’2-Medium’, ‘Completed’,’5′),
(‘Malware’, ’39’,’3-Low’, ‘Completed’,’2′),
(‘Malware’, Null,’1-High’, ‘Not Started’,Null),
(‘Hardware’, ’20’,’1-High’, ‘Completed’,’1′)
;
select * from tickets;
Collepals.com Plagiarism Free Papers
Are you looking for custom essay writing service or even dissertation writing services? Just request for our write my paper service, and we'll match you with the best essay writer in your subject! With an exceptional team of professional academic experts in a wide range of subjects, we can guarantee you an unrivaled quality of custom-written papers.
Get ZERO PLAGIARISM, HUMAN WRITTEN ESSAYS
Why Hire Collepals.com writers to do your paper?
Quality- We are experienced and have access to ample research materials.
We write plagiarism Free Content
Confidential- We never share or sell your personal information to third parties.
Support-Chat with us today! We are always waiting to answer all your questions.
