C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
ORACLE INIn Oracle, In clause is used with SELECT, INSERT, UPDATE, or DELETE statement to decrease the use of multiple OR conditions. Syntaxexpressions IN (value1, value2,.... value n) ParametersExpressions: name of the column for getting value. Table:Example 1Query: select *from table1 where name in ('shristee', 'dolly', 'sid')
Next TopicINTERSECT
|