func (m *userImpl) InsertNewuser(user *domains.User) (int64, error) { tx, err := m.Conn.Begin() if err != nil { log.Fatal(err) } query := INSERT user SET usr_username=?...
can i just retireve 2 field in the struct?
could you explain by code ?