Hello,
I have a problem with LIKE operator. If I write :
WHERE path LIKE 'D:\test\January\cost.txt'
the result is nothing but I'm sure it should get at least one row. I found out that the problem is the character '\' therefore if I write:
WHERE path LIKE 'D:_test_January_cost.txt'
I get one row result. Am I doing something wrong ? Is it a bug ? How can I handle if I have some text with '\' ?
Thank you for your help
MM

