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

can anyone tell what's wrong with this syntax
Can anyone tell what's wrong with this syntax:
Full Query:
"Where PostalMailingCode Like '10019%'"
This crashes my entire HTML S-Control even though I know there are Contacts with that zip code.Full Query:
Code:
//*********** Query *********************************** var result = sforce.connection.query("SELECT c.Phone, c.title, c.firstname, " + "c.lastname, c.email, a.Id, a.name, a.industry, c.accountId " + "FROM Contact c, c.account a " + "Where PostalMailingCode Like '10019%'" + "limit 10");
Finky