You need to sign in to do that
Don't have an account?

how to read characters like ś or ł in soql?
how can we read characters from other languages on SOQL?
function readOnly(count){ }
You need to sign in to do that
Don't have an account?
how can we read characters from other languages on SOQL?
Hello,
What is your query, are you getting any error. None english character are not working with LIKE, for this the workaround is to replace these non english characters wit '-'.
Hello,
What is your query, are you getting any error. None english character are not working with LIKE, for this the workaround is to replace these non english characters with '-'.
I am querying on Geography Name which is a lookup field.
The name of the geography contains characters from other languages.
which SOQL is unable to read.
Hello,
You'd have to perform a SOSL instead: SOQL doesn't support accent translation. However, SOSL uses a full-text search index that is accent agnostic.
In SOSL, if you search for "Ltes", "Lteś" will be returned. However if you search for "Lteś", "Ltes" (no accent) will NOT be returned.
Hi,
SOSL Query returns no records.
Please find the query below:
SELECT SLS_ZONE_CD__c, Geo_Level_4__r.Name FROM Geo_to_Zone_Mapping__c WHERE Geo_Level_1__r.Name='kujawsko-pomorskie' AND Geo_Level_2__r.Name='grudziadzki' AND Geo_Level_3__r.Name='Maly Rudnik' AND SLS_ZONE_CD__c='500'
while Geo_Level_2__r.Name='grudziądzki' and Geo_Level_3__r.Name='Mały Rudnik'
characters that are mismatching appear in bold.
Hello,
This is not SOSL, this is SOQL. In SOSL we use FIND keyword, not SELECT. Please refer following link for examples and better understanding on SOSL query:
http://www.salesforce.com/us/developer/docs/officetoolkit/Content/sforce_api_calls_sosl_examples.htm
http://www.salesforce.com/us/developer/docs/soql_sosl/Content/sforce_api_calls_sosl_syntax.htm
http://www.salesforce.com/us/developer/docs/officetoolkit/Content/sforce_api_calls_sosl.htm