0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Salesforce】条件分岐で動的SOQLを作成してみよう!

Posted at

動的SOQLとは?

動的 SOQL は、Apex コードを使用して、実行時に SOQL 文字列の作成を参照します。動的 SOQL によって、さらに柔軟なアプリケーションの作成が可能になります。たとえば、エンドユーザの入力に基づいた検索を作成したり、さまざまな項目名のレコードを更新したりできます。
動的 SOQL

テストデータ

コメント 2020-04-11 080310.png 「Warm」が3件、「Hot」が2件、「Cold」が2件で全部で7件存在する状態。

テストコード

test.cls
// パラメータから取得してきた値から条件分岐することを想定
String flag = '1';

String selectPart = 'SELECT Id, Name, Rating ';
String fromPart = 'FROM Account ';
String wherePart = 'WHERE ';

if(flag == '1'){
    wherePart += 'Rating = \'' + 'Hot' + '\'';
}else{
    wherePart += 'Rating = \'' + 'Cold' + '\'';
}

String soql = selectPart + fromPart + wherePart;
System.Debug('★★ 変数 soql : ' + soql);
List<Account> accList = Database.query(soql);

for(Account acc : accList){
    System.Debug('★★ 変数 acc : ' + acc);
}

実行結果

コメント 2020-04-11 081951.png

もし渡したフラグが「2」であった場合は以下のとおりです。
コメント 2020-04-11 082144.png

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?