Anorm LIKE clause with String Interpolation

核能气质少年 提交于 2019-11-27 07:53:32

问题


Is it possible to use LIKE clause with String Interpolation in Anorm?

// e.g. this doesn't work
SQL"SELECT * FROM users WHERE last_name LIKE $lastName%".as(userParser.*)

UPDATED: I need SQL statement that selects all users with a last name starting with given letters e.g. :

SELECT * FROM users WHERE last_name LIKE 'Smi%';

回答1:


If expected WHERE clause is something like WHERE last_name LIKE '%pattern%' you will have to prepare string before passing it as argument.

SQL"""SELECT * FROM users WHERE last_name LIKE ${"%"+lastName+"%"}""".
  as(userParser.*)


来源:https://stackoverflow.com/questions/25146075/anorm-like-clause-with-string-interpolation

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!