如何理解weed3-2.3.4.查询
更新:HHH   时间:2023-1-7


这篇文章主要介绍“如何理解weed3-2.3.4.查询”,在日常操作中,相信很多人在如何理解weed3-2.3.4.查询问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”如何理解weed3-2.3.4.查询”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

Weed3 一个微型ORM框架

源码:https://github.com/noear/weed3 源码:https://gitee.com/noear/weed3

再补充些查询相关的内容
  • 别名

db.table("user u")
  .limit(20)
  .select("u.mobile mob");
  • 去重

db.table("user")
  .limit(20)
  .select("distinct  mobile");
  • 分组

db.table("user u")
  .groupBy("u.mobile").having("count(*) > 1")
  .select("u.mobile,count(*) num");
  • 排序

db.table("user u")
  .orderBy("u.mobile ASC")
  .select("u.mobile,count(*) num");
  • 分组+排序(或者随意组合)

db.table("user u")
  .where("u.id < ?",1000)
  .groupBy("u.mobile").having("count(*) > 1")
  .orderBy("u.mobile ASC")
  .caching(cache)
  .select("u.mobile,count(*) num").getMap("mobile,num")

到此,关于“如何理解weed3-2.3.4.查询”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注天达云网站,小编会继续努力为大家带来更多实用的文章!

返回大数据教程...