Answers for "mssql where like"

SQL
4

sql where value like a or b

-- example
SELECT Id, ProductName, UnitPrice, Package
  FROM Product
 WHERE ProductName LIKE 'Cha_' OR ProductName LIKE 'Chan_'
Posted by: Guest on April-01-2020
0

sql like %

SELECT * FROM Customers

 WHERE CustomerName LIKE '%a';
Posted by: Guest on June-01-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language