doulan4371 2018-04-09 10:56
浏览 739

如果数据库golang mysql中的字段为空,则处理结果

the result wantedI have a struct in go

type Users struct {
    ID    int    `json:"id"`
    Name  string `json:"name"`
    Age   string `json:"age"`
}

I have a mysql database in which some age values are nil so basically to make it dynamic I've been searching for the solution. "Age string json:-" to hide the field if it is returnig the value nil from mysql. I did two queries

   query1: select id,name,age from users where age is not null
   query2: select id,name from users where age is null

How can I make it a dynamic query to show the age if exsits else it doesn't don't show it?

  • 写回答

2条回答 默认 最新

  • dsj1961061 2018-04-09 11:04
    关注

    Don't do that. Instead, use a nil-able type for your Age field. *string or sql.NullString would be the most natural choices. Then just always select it, and the NULL value will be treated properly.

    type Users struct {
        ID    int     `json:"id"`
        Name  string  `json:"name"`
        Age   *string `json:"age"`
    }
    

    Then always use:

    SELECT id, name, age FROM users
    

    And when Age is NULL in the database, it will be nil in Go, and when it's not NULL in the database, it will be a non-nil pointer to a string in Go.

    评论

报告相同问题?

悬赏问题

  • ¥30 win from 窗口最大最小化,控件放大缩小,闪烁问题
  • ¥20 易康econgnition精度验证
  • ¥15 msix packaging tool打包问题
  • ¥28 微信小程序开发页面布局没问题,真机调试的时候页面布局就乱了
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致