নিজে নিজে কর

উপরের প্রত্যেকটা প্রশ্নের উত্তর নিজে নিজে খুঁজে বের করার চেষ্টা করো। যদি না পাও তাহলে নিচের Show Answer বাটনে ক্লিক করো। না বুঝতে পারলে নিচে কমেন্ট করো।

প্রশ্ন-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

Chapters

হাবলু কপি কালেক্ট করো

বলদ টু বস কালেক্ট করো