Oracle SQL & PL/SQL: SQL LIKE
SQL LIKE The SQL LIKE operator is used in a WHERE clause to look for a particular pattern in a column. Examples of SQL LIKE Now we want to select the employees which have their names starting with "s". SELECT * FROM employees WHERE ename LIKE ...
sql-plsql.blogspot.com |