我的表中的数据形成一个树型结构,其中一列可以在同一个表中引用父行。
我想实现,使用油滑的,是写一个查询,将返回一行和所有它的孩子。 另外,我想这样做,但编写一个查询将返回一个孩子和所有它的祖先。
换一种说法:
findDown(1)
应返回
List(Group(1, 0, "1"), Group(3, 1, "3 (Child of 1)"))
findUp(5)
应返回
List(Group(5, 2, "5 (Child of 2)"), Group(2, 0, "2"))
这里是一个全功能的工作表(除了丢失的解决方案;-)。
package com.exp.worksheets
import scala.slick.driver.H2Driver.simple._
object ParentChildTreeLookup {
implicit val session = Database.forURL("jdbc:h2:mem:test1;", driver = "org.h2.Driver").createSession()
session.withTransaction {
Groups.ddl.create
}
Groups.insertAll(
Group(1, 0, "1"),
Group(2, 0, "2"),
Group(3, 1, "3 (Child of 1)"),
Group(4, 3, "4 (Child of 3)"),
Group(5, 2, "5 (Child of 2)"),
Group(6, 2, "6 (Child of 2)"))
case class Group(
id: Long = -1,
id_parent: Long = -1,
label: String = "")
object Groups extends Table[Group]("GROUPS") {
def id = column[Long]("ID", O.PrimaryKey, O.AutoInc)
def id_parent = column[Long]("ID_PARENT")
def label = column[String]("LABEL")
def * = id ~ id_parent ~ label <> (Group, Group.unapply _)
def autoInc = id_parent ~ label returning id into {
case ((_, _), id) => id
}
def findDown(groupId: Long)(implicit session: Session) = { ??? }
def findUp(groupId: Long)(implicit session: Session) = { ??? }
}
}
在一个非常糟糕的,和静态尝试findDown
可能是这样的:
private def groupsById = for {
group_id <- Parameters[Long]
g <- Groups; if g.id === group_id
} yield g
private def childrenByParentId = for {
parent_id <- Parameters[Long]
g <- Groups; if g.id_parent === parent_id
} yield g
def findDown(groupId: Long)(implicit session: Session) = { groupsById(groupId).list union childrenByParentId(groupId).list }
但是,我正在寻找一个圆滑的方式来递归搜索使用id和id_parent链接同桌。 任何其他好的方法来解决这个问题实在是值得欢迎的。 但请记住,这将是最好的,以尽量减少数据库往返次数。