Skip to content

Instantly share code, notes, and snippets.

@tyoshikawa1106
Created August 25, 2014 13:49
Show Gist options
  • Save tyoshikawa1106/2c182c1efc2bffa2e3d5 to your computer and use it in GitHub Desktop.
Save tyoshikawa1106/2c182c1efc2bffa2e3d5 to your computer and use it in GitHub Desktop.
SOQLのLIKEと%
String key = '株式会社 セールスフォース%ドットコム';
String query = 'SELECT Name FROM Account WHERE Name LIKE ' + '\'' + String.escapeSingleQuotes(key + '%') + '\'';
System.debug(query);
List<Account> accounts = database.query(query);
for (Account a : accounts) {
System.debug(a.Name);
}
System.debug(accounts.size());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment