C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
ORACLE LIKE CONDITIONIn oracle, like condition is used with select, insert, update, and delete in where clause using wildcard. It allows pattern matching. Syntaxexpression LIKE pattern [ESCAPE 'escape_character' ] Parametersexpression: name of column. pattern: patter to be matched in expression. Pattern can be in one of the following:-
Table 1:Table 2:Example 1Query: select * from table1 where name like 's%' Example 2Query: select * from table1 where name like '22___' Example 3Query: select * from table1 where name NOT like 's%'
Next TopicMINUS
|