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 again, it fetches all the records starting with "Tesz".
Any idea what the problem might be?
Thanks for your help in advance.