Science, asked by rashidkhna73, 1 month ago

Write about AND, OR and NOT operator​

Answers

Answered by shajidajui13
1

Answer:

Boolean Operators are simple words (AND, OR, NOT or AND NOT) used as conjunctions to combine or exclude keywords in a search, resulting in more focused and productive results. This should save time and effort by eliminating inappropriate hits that must be scanned before discarding.

Explanation:

Answered by itzPapaKaHelicopter
2

\huge\mathfrak\green{☟ \:  \:  \: answer \:  \:  \:  \: ✎}

The SQL AND, OR and NOT Operators

‣ The WHERE clause can be combined with AND, OR, and NOT operators.

‣ The AND and OR operators are used to filter records based on more than one condition:

‣ The AND operator displays a record if all the conditions separated by AND are TRUE.

‣ The OR operator displays a record if any of the conditions separated by OR is TRUE.

‣ The NOT operator displays a record if the condition(s) is NOT TRUE.

\sf \colorbox{pink} {\red⇒ \: AND Syntax}

SELECT column1, column2, ...

FROM table_name

WHERE condition1 AND condition2 AND condition3 ...;

\sf \colorbox{pink} {\red⇒ \: OR Syntax}

SELECT column1, column2, ...

FROM table_name

WHERE condition1 OR condition2 OR condition3 ...;

\sf \colorbox{pink} {\red⇒ \:  \: NOT Syntax}

SELECT column1, column2, ...

FROM table_name

WHERE NOT condition;

 \\  \\  \\  \\  \\ \sf \colorbox{gold} {\red(ANSWER ᵇʸ ⁿᵃʷᵃᵇ⁰⁰⁰⁸} \\  and\\ \sf \colorbox{lightgreen} {\red❤ANSWER ᵇʸ ᶠˡⁱʳᵗʸ ᵇᵒʸ}

Similar questions