[SalesForce] Soql query field value starts with

How to retrieve account records where the name starts with "comp"?

Select Id,Name From Account Where Name Like 'comp%'

Does the above query guarantee at least 4 characters in length?

Best Answer

the expression 'comp%' will bring everything that starts with 'comp' and ends with anything

if you want to always guarantee 4 letters after 'comp' you can use it as follows LIKE 'comp____' use 4 underscore to ensure 4 characters after 'comp'

Related Topic