searchForMembers のソース
データベースから指定されたメンバー情報を検索するための Z SQL Method のソースコードです。
サイズ 1.7 kB - File type text/x-sqlファイルのコンテンツ
select * from member
<dtml-sqlgroup where>
<dtml-if searchable_text>
searchable_text like
<dtml-sqlvar "'%' + searchable_text + '%'" type="nb" optional>
</dtml-if>
<dtml-and>
<dtml-if id>
id like
<dtml-sqlvar "id + '%'" type="nb" optional>
</dtml-if>
<dtml-and>
<dtml-if fullname>
fullname like
<dtml-sqlvar "'%' + fullname + '%'" type="nb" optional>
</dtml-if>
<dtml-and>
<dtml-if kananame>
kananame like
<dtml-sqlvar "'%' + kananame + '%'" type="nb" optional>
</dtml-if>
<dtml-and>
<dtml-if nickname>
nickname like
<dtml-sqlvar "'%' + nickname + '%'" type="nb" optional>
</dtml-if>
<dtml-and>
<dtml-if email>
email like
<dtml-sqlvar "'%' + email + '%'" type="nb" optional>
</dtml-if>
<dtml-and>
<dtml-if organization>
organization like
<dtml-sqlvar "'%' + organization + '%'" type="nb" optional>
</dtml-if>
<dtml-and>
<dtml-if workplace>
workplace like
<dtml-sqlvar "'%' + workplace + '%'" type="nb" optional>
</dtml-if>
<dtml-and>
<dtml-if telno>
telno like
<dtml-sqlvar "'%' + telno + '%'" type="nb" optional>
</dtml-if>
<dtml-and>
<dtml-sqltest sex type="nb" optional>
<dtml-and>
<dtml-sqltest blood type="nb" optional>
<dtml-and>
<dtml-if location>
location like
<dtml-sqlvar "'%' + location + '%'" type="nb" optional>
</dtml-if>
<dtml-and>
<dtml-if hometown>
hometown like
<dtml-sqlvar "'%' + hometown + '%'" type="nb" optional>
</dtml-if>
<dtml-and>
<dtml-sqltest photo type="nb" optional>
</dtml-sqlgroup>
order by id
Click here to get the file