我正在尝试使用 slick / slick-pg 在 scala 中编写以下查询,但是我经验不足光滑,不知道如何:
SELECT *
FROM attributes a
WHERE a.other_id = 10
and ARRAY(SELECT jsonb_array_elements_text(a.value->'value'))
&& array['1','30','205'];
这是 attributes 表的简化版本,其中 value 字段是 jsonb :
class Attributes(tag: Tag) extends Table[Attribute](tag, "ship_attributes") {
def id = column[Int]("id")
def other_id = column[Int]("other_id")
def value = column[Json]("value")
def * = (id, other_id, value) <> (Attribute.tupled, Attribute.unapply)
}
样本数据:
| id | other_id | value |
|:-----|:-----------|:------------------------------------------|
| 1 | 10 | {"type": "IdList", "value": [1, 21]} |
| 2 | 10 | {"type": "IdList", "value": [5, 30]} |
| 3 | 10 | {"type": "IdList", "value": [7, 36]} |
这是我当前的查询:
attributes
.filter(_.other_id = 10)
.filter { a =>
val innerQuery = attributes.map { _ =>
a.+>"value".arrayElementsText
}.to[List]
innerQuery @& List("1", "30", "205").bind
}
但是它抱怨.to[List]
转换。
我尝试创建一个SimpleFunction.unary[X, List[String]]("ARRAY")
,但是我不知道如何将innerQuery
传递给它(innerQuery
是Query[Rep[String], String, Seq]
)。
非常感谢任何想法。
更新1
虽然我无法弄清楚,但我更改了应用程序以将json字段存储为数据库中的字符串列表,而不是整数列表,以便能够执行此简单查询:
attributes
.filter(_.other_id = 10)
.filter(_.+>"value" ?| List("1", "30", "205").bind)
| id | other_id | value |
|:-----|:-----------|:------------------------------------------|
| 1 | 10 | {"type": "IdList", "value": ["1", "21"]} |
| 2 | 10 | {"type": "IdList", "value": ["5", "30"]} |
| 3 | 10 | {"type": "IdList", "value": ["7", "36"]} |