0 votes
in SQLite by
What is the usage of AND & OR operators with WHERE clause?

1 Answer

0 votes
by

AND & OR operators are used with WHERE clause to combine two or more than two conditions together.

Syntax:

SELECT column1, column2, columnN     

FROM table_name    

WHERE [condition1] AND [condition2]...OR [conditionN];  

Related questions

0 votes
asked Nov 24, 2021 in Oracle by DavidAnderson
0 votes
asked Apr 8, 2020 in SAP by amita rallin
...