C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
ORACLE where clauseIn Oracle, where clause is used to filter the result. Where clause can be used in INSERT, UPDATE, DELETE, and SELECT statements. SyntaxWHERE conditions; ParametersConditions: 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#
|