3.6.1 Logical operators

3.6.1 লজিকেল অপাৰেটৰ

The three logical operators are AND, OR, and NOT.3.6.

তিনিটা যৌক্তিক অপাৰেটৰ হৈছে এণ্ড, বা, আৰু নট.3.6।

AND operator It requires that all the conditions be true for inclusion in the result. The query:

আৰু অপাৰেটৰ ইয়াৰ বাবে ফলাফলত অন্তৰ্ভুক্তিৰ বাবে সকলো চৰ্ত সঁচা হোৱাটো প্ৰয়োজন। প্ৰশ্ন:

SELECT * FROM studentdata WHERE TotalMarks >= 200 AND TotalMarks <= 400;

শিক্ষাৰ্থীৰ তথ্যৰ পৰা বাছনি কৰক য’ত মুঠ নম্বৰ >= 200 আৰু মুঠ নম্বৰ <= 400;

will display all the records that satisfy both the conditions given in the WHERE clause and will be included in the output.

সকলো ৰেকৰ্ড প্ৰদৰ্শন কৰিব যি য়ে ক’ত ধাৰাত দিয়া দুয়োটা চৰ্ত পূৰণ কৰে আৰু আউটপুটত অন্তৰ্ভুক্ত কৰা হ’ব।