ORACLE ANDIn Oracle, AND is used in select, insert, delete or update statement for checking two or more conditions. SyntaxParameterscondition 1, condition 2,......, condition n: condition to match the records. Table:Example 1select id, name from table1 where name='dolly' AND age=18 Example 2select id, name from table1 where name='shristee' AND id=1 Next TopicAND & OR |