ORACLE where clauseIn Oracle, where clause is used to filter the result. Where clause can be used in INSERT, UPDATE, DELETE, and SELECT statements. SyntaxParametersConditions: for getting specified records. Table 1: employee1Table 2: employee2Example 1Select *from employee1 where city = 'raipur' Example 2Select *from employee2 where name like 's%' Next Topic# |