Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ばかげた質問かもしれません。しかし、私は今のところ答えを見つけていません。では、 SLICKで SQL の "LIKE" 演算子をどのように表現しますか?
いつもとまったく同じように!
val query = for { coffee <- Coffees if coffee.name like "%expresso%" } yield (coffee.name, coffee.price)
のような SQL を生成します
SELECT name, price FROM coffees WHERE NAME like '%expresso%';