续集选择太多列

发布于 2024-07-29 17:26:51 字数 221 浏览 3 评论 0原文

似乎 Sequel 的默认选择是“select *”,当您添加一些连接时,这会导致各种问题。 至少你最终会在对象中得到错误的 id(因为随后将返回多个“id”列)。 做类似的事情

.select("people.*")

似乎可行,但这会将传入的字符串视为列并引用它。 到目前为止,我不得不恢复到纯 SQL 来解决这个问题,但我知道必须有更好的方法。

It seems like the default select for Sequel is "select *", which causes all kinds of problems when you add some joins. At the very least you end up with the wrong ids in your objects (because there will then be more than one "id" column returned). Doing something like

.select("people.*")

would seem to work, but that treats the string passed in as a column and quotes it. So far I've had to revert back to bare SQL to solve this, but I know there has to be a better way.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空袭的梦i 2024-08-05 17:26:51

Sequel 的默认行为是选择所有列,但很容易覆盖。 如果您只想选择单个表中的所有列:

.select(:people.*)

如果您想使用文字 SQL 字符串:

.select('people.*'.lit)

The default behavior for Sequel is to select all columns, but it is easy to override. If you want to select only all columns from a single table:

.select(:people.*)

If you want to use a literal SQL string:

.select('people.*'.lit)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文