sql starts with string code example
Example 1: like sql
WHERE CustomerName LIKE 'a%'
WHERE CustomerName LIKE '%a'
WHERE CustomerName LIKE '%or%'
WHERE CustomerName LIKE '_r%'
WHERE CustomerName LIKE 'a__%'
WHERE ContactName LIKE 'a%o'
Example 2: sql string starts with
SELECT * FROM my_table WHERE upper(my_column) LIKE 'SEARCHED %';
SELECT * FROM my_table WHERE upper(my_column) LIKE '% SEARCHED';
SELECT * FROM my_table WHERE upper(my_column) LIKE '%SEARCHED%';
Example 3: like operator in sql
(Like) Operator for partial searches using wildcard '%' and '_'
For Example:
Select * From Employees
Where last_name LIKE '_a%';
Example 4: sql where value like a or b
SELECT Id, ProductName, UnitPrice, Package
FROM Product
WHERE ProductName LIKE 'Cha_' OR ProductName LIKE 'Chan_'