作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想查询一个模型,以便 Fluent 生成如下所示的 SQL:
SELECT DISTINCT ON(<my columns>) * FROM my_table...
我该怎么做?
最佳答案
感叹。
因此,最终不得不使用原始查询。你可以这样做:
let distinctModels = req.withPooledConnection(to: .psql) { (conn) -> Future<[MyModel]> in
conn.raw("SELECT DISTINCT ON(<my columns>) * FROM <my_table> INNER JOIN <another_table> ON <some_condition> WHERE <conditions>")
.all(decoding: MyModel.self)
}
其中 req
是 Request
类型。 withPooledConnection
函数将返回您模型的 future ——只需确保您对它们进行解码!
关于postgresql - 适用于 Postgres 的 Vapor 3/Fluent : How do I make a SELECT DISTINCT query?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53030158/
我是一名优秀的程序员,十分优秀!