LoginSignup
0
0

More than 1 year has passed since last update.

個人用apexのSOQL例文

Posted at

ここで記述するのが自分がよく使う例文です。
//期限内最も適応開始日に近い行を選択する

 list<TaxRateMaster__c> tr = [select Id, Name, TaxRate__c,StartDate__c from TaxRateMaster__c where StartDate__c <=:qs[0].LastModifiedDate
                 order by StartDate__c desc limit 1];
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0