KOHANA 3 ORM:如何在 ->where 中使用 sha1
我想这样选择 从帖子中选择 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你只是差了一点点。应该是:
You're just slightly off. It should be: