KOHANA 3 ORM:如何在 ->where 中使用 sha1

发布于 2024-10-07 21:35:10 字数 211 浏览 3 评论 0原文

我想这样选择 从帖子中选择 sha1(id)=$id;

所以我认为这可能在 KO3 ORM 中是这样的: post = ORM::factory('post')->where('sha1(id)','=',$id)->find();

中不起作用

问题是如何在 where 函数中使用 'sha1(id)' 因为这种方式在 KO3-ORM thnkx

I'd like to make select this way
select from post where sha1(id)=$id;

So I thought this could be in KO3 ORM somethink like:
post = ORM::factory('post')->where('sha1(id)','=',$id)->find();

question is how to use 'sha1(id)' in where function because this way doen't work in KO3-ORM

thnkx

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

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

发布评论

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

评论(1

难以启齿的温柔 2024-10-14 21:35:10

你只是差了一点点。应该是:

ORM::factory('post')->where('sha1("id")','=',$id)->find();

You're just slightly off. It should be:

ORM::factory('post')->where('sha1("id")','=',$id)->find();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文