内容简介:package products import ( "erp/models" "github.com/astaxie/beego/orm" ) type Product_Inventorys struct { Id int64 Name string Formate string Unit string Warehouse string C_name string Purchase string Price string Quantity string } func init() { orm.Registe
多表查询的问题,mysql查询有数据,编写models的时候没传数据(数量是有传值,其他参数没有传值)(models联表查询创建,数据库没有表),各位大神请教下
zhong ·· 2 次点击 ··开始浏览package products import ( "erp/models" "github.com/astaxie/beego/orm" ) type Product_Inventorys struct { Id int64 Name string Formate string Unit string Warehouse string C_name string Purchase string Price string Quantity string } func init() { orm.RegisterModel(new(Product_Inventory)) } //统计仓库存量 func ListInvent()(num int64,err error, invent []Product_Inventorys) { qb, _ := orm.NewQueryBuilder("mysql") qb.Select("i.id As Id", "p.name As Name", " p.format As Formate", "p.unit As Unit","w.w_name As Warehouse","c.name As C_name","p.purchase As Purchase", "p.sales As Price","i.quantity As Quantity"). From(models.TableName("product_inventory i,pms_product p,pms_product_category c,pms_product_warehouse w") ). Where("i.product=p.id and i.warehouse=w.w_id and p.c_id=c.id") sql := qb.String() o := orm.NewOrm() var invents []Product_Inventorys nums, errs := o.Raw(sql).QueryRows(&invents) return nums,errs,invents } [ORM]2019/01/15 20:08:17 -[Queries/default] - [ OK / db.Query / 233.0ms] - [SELECT i.id As Id, p.name As Name, p.format As Formate, p.unit As Unit, w.w_name As Warehouse, c.name As C_name, p.purchase As Purchase, p.sales As Price, i.quantity As Quantity FROM pms_product_inventory i,pms_product p,pms_product_category c,pms_product_warehouse w WHERE i.product=p.id and i.warehouse=w.w_id and p.c_id=c.id] [{0 } {0 } {0 } {0 } {0 } {0 } {0 } {0 } {0 } {0 } {0 }] ![1.png](https://static.studygolang.com/190115/3b74cc00d81cbf5d382ad55f5b26e383.png) ![2.png](https://static.studygolang.com/190115/29d23d7df32da14e170075a0931b1997.png)
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- 数据库MySQL一般查询日志或者慢查询日志历史数据的清理
- 大数据量查询容易 OOM?试试 MySQL 流式查询
- Oracle数据库查询重复数据及删除重复数据方法
- 日志与行为数据存储查询剖析
- 使用Jest查询Elasticsearch数据
- 【数据库】MySQL查询优化
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
图解TCP/IP : 第5版
[日]竹下隆史、[日]村山公保、[日]荒井透、[日]苅田幸雄 / 乌尼日其其格 / 人民邮电出版社 / 2013-7-1 / 69.00元
这是一本图文并茂的网络管理技术书籍,旨在让广大读者理解TCP/IP的基本知识、掌握TCP/IP的基本技能。 书中讲解了网络基础知识、TCP/IP基础知识、数据链路、IP协议、IP协议相关技术、TCP与UDP、路由协议、应用协议、网络安全等内容,引导读者了解和掌握TCP/IP,营造一个安全的、使用放心的网络环境。 本书适合计算机网络的开发、管理人员阅读,也可作为大专院校相关专业的教学参考......一起来看看 《图解TCP/IP : 第5版》 这本书的介绍吧!