C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
ORACLE AND & ORIn Oracle, AND & OR can be combined and used in select, insert, delete or update statement for checking two or more conditions. SyntaxWhere condition 1 AND condition 2 . . . . AND condition n Parameterscondition 1, condition 2,...., condition n: condition to match the records. Table:Example 1select id, name, age from table1 where id>2 AND age<28 OR age>25
Next TopicBETWEEN
|