Microsoft SQL Server does not return everything when using LIKE clause
问题 I have a Products table in SQL Server 2014 Express with records in it. A few product names (records) are the following: Test product Teszt termék Teszt termék 2 When I execute the following query, everything works just fine: SELECT * FROM Products WHERE name LIKE 'te%' It retrieves all three records. However, when I use SELECT * FROM Products WHERE name LIKE 'tes%' is executed, only "Test product" is retrieved. And when the query is SELECT * FROM Products WHERE name LIKE 'tesz%' then it works