多表查询的问题,mysql查询有数据,编写models的时候没传数据(数量是有传值,其他参数没有传值)(...

栏目: 数据库 · 发布时间: 5年前

内容简介: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的时候没传数据(数量是有传值,其他参数没有传值)(...

多表查询的问题,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)


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Ruby元编程(第2版)

Ruby元编程(第2版)

[意] Paolo Perrotta / 廖志刚 / 华中科技大学出版社 / 2015-8-1 / 68.80

《Ruby元编程(第2版)》在大量剖析实例代码的基础上循序渐进地介绍Ruby特有的实用编程技巧。通过分析案例、讲解例题、回顾Ruby类库的实现细节,作者不仅向读者展示了元编程的优势及其解决问题的方式,更详细列出33种发挥其优势的编程技巧。本书堪称动态语言设计模式。Ruby之父松本行弘作序推荐。一起来看看 《Ruby元编程(第2版)》 这本书的介绍吧!

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

SHA 加密
SHA 加密

SHA 加密工具

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具