• No labels

9 Comments

  1. 好啊,晚些我去提

  2. // 笔误修正g.Map()  ==> g.Map{}

    // WHERE `uid`=1
    Where("uid=1")
    Where("uid", 1)
    Where("uid=?", 1)
    Where(g.Map("uid" : 1))   //--> Where(g.Map{"uid":1})
    // WHERE `uid` <= 1000 AND `age` >= 18
    Where(g.Map(    =>{
        "uid <=" : 1000,
        "age >=" : 18,
    ))
  3. 查询的时候,默认会加上 AND `deleted_at` IS NULL,但是有时候需要查询出来被”软删除“的数据

    是否有类似 laravel 的 withTrashed 功能


  4. .Array单一字段查询后的结果集执行gconv.SliceInt64()结果是空的.有其它方法能实现吗?因为[]gdb.Value放到where里面无法实现in查询转换.

    1. 下个版本我改进下,目前你手动循环转了。

  5. xx

    可以子查询吗?比如:select  * from re1  where (select count(1) as num from re2 where re1.uid=re2.uid and re1.period=re2.period and re1.good_id=re2.good_id)=0 ;