使用 cakephp 自加入
我怎样才能在cakephp中编写这个sql查询
select name from coupons as c where c.created=(select max(c2.created) from coupons as c2);
how can i write this sql query in cakephp
select name from coupons as c where c.created=(select max(c2.created) from coupons as c2);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这种情况下,也许您实际上是这样的:
对于真正的子查询,请参阅 < strong>子查询。
In this case, maybe you actually mean this:
For real subqueries, see the manual under Subqueries.