Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Tom26487
Contributor
Contributor

Filtering on values with non-english letters

Hi

When running load script,  I'm trying to filter a column that contains values in hebrew, but the query returns empty (though the hebrew values exist in the table).

for example: 

Where

product = 'מלמ'.

What can I do to make it work?

 

Thanks

Labels (2)
1 Solution

Accepted Solutions
Channa
Specialist III
Specialist III

product = 'מלמ.'

or 

product = N'מלמ.'

or since it is product try to generate autokey and then filter on key

 

Channa

View solution in original post

2 Replies
Channa
Specialist III
Specialist III

product = 'מלמ.'

or 

product = N'מלמ.'

or since it is product try to generate autokey and then filter on key

 

Channa
Tom26487
Contributor
Contributor
Author

Hi Channa !

it worked with the "N" !!

 

Thank you very much !

 

Tom