Apex 中的 SOQL 查询
要在 Apex 中执行查询,请使用方括号括起查询。结果可以分配给列表或单个对象。
List<Account> allAccounts = [SELECT Id, Name FROM Account];
Account oldestAccount = [SELECT Id, Name FROM Account ORDER BY CreatedDate LIMIT 1];
要在 Apex 中执行查询,请使用方括号括起查询。结果可以分配给列表或单个对象。
List<Account> allAccounts = [SELECT Id, Name FROM Account];
Account oldestAccount = [SELECT Id, Name FROM Account ORDER BY CreatedDate LIMIT 1];