需求:根据字符串查询记录,该字符串需要区分大小写,而mysql字符串查询默认不区分大小写
- 官方文档看了一下没有看到类似的功能,在此记录一下
// GetUIDByInvideCode 根据邀请码返回UID
func (a *accountRepo) GetUIDByInvideCode(ctx context.Context, code string) int64 {
var user biz.User
a.data.db.Debug().Exec("SELECT * from users ").Where("BINARY invite_code = ?", code).First(&user)
return user.ID
}