BookatlasTwo-Day MuleSoft → Salesforce Bootcamp
93 / 278 · Module 5 — Salesforce Data Model + SOQL · filtered: code← prev⊞ allnext →

5.30LIMIT

SELECT Id, Name
FROM Account
ORDER BY CreatedDate DESC
LIMIT 100

Great during:

development
debugging
validation

but don't accidentally leave:

LIMIT 100

inside synchronization logic intended to retrieve everything.

Your QA brain should immediately ask:

What happens when record 101 exists?