How to use SQL “LIKE” operator in SLICK
Maybe a silly question. But I have not found an answer so far. So how do you represent the SQL's "LIKE" operator in SLICK ? Exactly as you normally would! val query = for { coffee <- Coffees if coffee.name like "%expresso%" } yield (coffee.name, coffee.price) Will generate SQL like SELECT name, price FROM coffees WHERE NAME like '%expresso%'; 来源: https://stackoverflow.com/questions/14700821/how-to-use-sql-like-operator-in-slick