How to Make boolean search string


 How to Make Boolean Search String

There are mainly 6 Types of Boolean Search string Operator

1.      AND

2.      OR

3.      NOT

4.      ( )

5.      “ “

6.      *

 1. Use of AND (Boolean Search String Operator)

When you want to search for more than one basic words or keywords or required skills, then you can use and. Let us understand this with the help of some examples.

 1.      Suppose we have to search both A and B together.

 A AND B

 2.      Suppose we have to search both Java and Spring together.

 Java AND Spring

 3.      Suppose we have to search all Java, spring and Intellij together.

   Java AND Spring AND IntelliJ             

 4.      Suppose we have to search all Java, spring, Intellij and AWS together.

 Java AND Spring AND IntelliJ AND AWS   

 5.      Suppose we have to search all Java, spring, Intellij, AWS and SQL together.

 Java AND Spring AND IntelliJ AND AWS AND SQL

 

 

 

Comments

Popular Posts