Joins
Joins It help to stiches rows of two or more table together to provide meaningful information for business usecase. It is the best way to unite distributed information in database responsibly and help to safe space. To join to tables we must use right condition and criteria else cartition product will be created and will make the information inconsistent and will even leads to incorrect information generation. create table student_scaler( id int not null primary key auto_increment, name varchar(500) not null, b_id int, psp int); select * from student_scaler; insert into student_scaler (name, b_id, psp) values('Puneet Kumar Singh', 1, 90), ('Anubha Panwar', 1, 100), ('Devansh Singh', 2, 99), ('Sachin Panwar', 3, 96); create table batches_detail( b_id int not null primary key auto_increment, name varchar(500) ); select * from batches_detail; insert into batches_detail (name) values ('A'), ('B'), ('C'); -- joining student_scaler and...