--Create the main employee table
CREATE TABLE employee (
id int PRIMARY KEY,
name varchar(255),
age int
);
--Create the employee age table
CREATE TABLE employee_age (
id int PRIMARY KEY,
age int
);
INSERT INTO employee
VALUES (1, 'Ashish', 'Pune');
INSERT INTO employee
VALUES (2, 'patel', 'Nagpur');
INSERT INTO employee
VALUES (4, 'Ansu', 'Bikaner');
INSERT INTO employee_age
VALUES (1, 23);
INSERT INTO employee_age
VALUES (2, 27);
INSERT INTO employee_age
VALUES (3, 21);
SELECT * FROM employee;
id name city
1 Ashish Pune
2 patel Nagpur
4 Ansu Bikaner
SELECT * FROM employee_age;
id age
1 23
2 27
3 21
.scroll-to-top {
font-size: 2.5rem;
width: 3.2rem;
height: 3.2rem;
display: none;
align-items: center;
justify-content: center;
position: fixed;
padding: 0.75rem;
bottom: 4rem;
right: calc(1.25rem + 90px + var(--page-padding));
z-index: 999;
cursor: pointer;
border: none;
color: var(--bg);
background: var(--fg);
border-radius: 50%;
}
.scroll-to-top.hidden {
display: none;
}
.scroll-to-top i {
transform: translateY(-2px);
}
@media (min-width: 1080px) {
.scroll-to-top {
display: flex;
}
}