golang 中使用mysql报错:“ scannable dest type slice with >1 columns (4) in result”

query := fmt.Sprintf("SELECT ....
infos = make([]*struct, 0, 10)
err = s.db.GetContext(ctx, &infos, query)

  返回错误:

scannable dest type slice with >1 columns (4) in result

  解决办法:

替换

GetContext

  为:

SelectContext

  


种树最好的时间是十年前,其次是现在。
原文地址:https://www.cnblogs.com/bobojiang/p/13204961.html