在 Propel 中使用 GROUP_CONCAT (MySQl) 和 WM_CONCAT (Oracle)
Propel ORM 中是否有一个函数,允许我在 Oracle10gGROUP_CONCAT (或 WM_CONCAT
)聚合的功能strong> 和 MySQL 数据库?
好吧,我知道我可以编写自己的开关,但这对我来说并不理想。
有什么建议吗?
Is there a function in Propel ORM which allows me to use something like a GROUP_CONCAT
(or WM_CONCAT
) aggregation on both Oracle10g and MySQL databases?
Well, I know that I can write my own switch, but that's not desirable for me.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,请使用
withColumn()
并将 Oracle 函数放入其中:)No, use
withColumn()
instead and put your Oracle function in it :)