create table entries (
name varchar(20),
address varchar(20),
email varchar(20),
floor int,
resources varchar(10));
insert into entries
values ('A','Bangalore','A@[Link]',1,'CPU'),
('A','Bangalore','A1@[Link]',1,'CPU'),
('A','Bangalore','A2@[Link]',2,'DESKTOP')
,('B','Bangalore','B@[Link]',2,'DESKTOP'),
('B','Bangalore','B1@[Link]',2,'DESKTOP'),
('B','Bangalore','B2@[Link]',1,'MONITOR');
select * from entries;