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

  


posted @ 2020-06-28 20:45  bobojiang2016  阅读(2325)  评论(0编辑  收藏  举报