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%';
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…