我刚开始使用 squeryl,对于如何编写这样的查询没有答案
SELECT ref label
FROM x_table
WHERE ref like x% or lable like x%
用户的价值在哪里x
,特别是我还没有找到类似%
squeryl 的登录或如何使用它。
我的版本:
val products = from(AppDB.productTable) (
s => where ((s.label like value) or (s.ref like value)) select(s)
)
不正确。
val value : Option[String]
我从用户那里得到。