প্রশ্ন-11.1 তোর আগের লেখা Student আর Result এই দুইটা টেবিল জয়েন করে স্টুডেন্টের নাম, সাবজেক্টে নাম আর সেই সাবজেক্টে প্রাপ্ত নম্বর দেখা।
SELECT * FROM Student
INNER JOIN Result
on Student.id = Result.studentId;
প্রশ্ন-11.2 Normalization কেন করা হয়?
ব্রো, এইটা তুমি গুগল করো
প্রশ্ন-11.3 Left join ও right join এর মধ্যে প্রার্থক্যগুলো কি কি?
INNER JOIN: gets all records that are common between both tables based on the foreign key
LEFT JOIN gets all records from the LEFT linked table but if you have selected some columns from the RIGHT table, if there is no related records, these columns will contain NULL
RIGHT JOIN is like the above but gets all records in the RIGHT table
FULL JOINgets all records from both tables and puts NULL in the columns where related records do not exist in the opposite table
Must read this article about Visualization of SQL join