大家好,我正在使用 golang 構(gòu)建一個(gè)超級(jí)簡單的 API。我有這個(gè) json 數(shù)據(jù)從 POST 請求傳遞并存儲(chǔ)在我的數(shù)據(jù)庫中。我想獲取 tts 數(shù)據(jù),它是一個(gè)整數(shù)數(shù)組,對(duì)該數(shù)組取平均值并將其放在 ttc 列中,并在 json 響應(yīng)中返回該數(shù)字。我很難做到這一點(diǎn),我們將不勝感激。下面是我的源代碼以及我的數(shù)據(jù)庫模型。我知道我必須在 postgres 中以某種方式使用 AVG() 函數(shù),但我是 postgres 的新手,所以我非常困惑。主程序package mainimport ("encoding/json""github.com/gorilla/mux""github.com/jinzhu/gorm""github.com/lib/pq""github.com/rs/cors""log""net/http"_ "github.com/jinzhu/gorm/dialects/postgres")type Resource struct { gorm.Model Name string TTS pq.Int64Array `gorm:"type:integer[]"` TTC int}var db *gorm.DBvar err errorfunc main() { router := mux.NewRouter() db, err = gorm.Open( "postgres", "host=localhost"+" user=postgres"+ " dbname=Shoes"+" sslmode=disable password=root") if err != nil { panic("failed to connect database") } defer db.Close() db.AutoMigrate(&Resource{}) router.HandleFunc("/resources", GetResources).Methods("GET") router.HandleFunc("/resources/{id}", GetResource).Methods("GET") router.HandleFunc("/resources", CreateResource).Methods("POST") router.HandleFunc("/resources/{id}", DeleteResource).Methods("DELETE") handler := cors.Default().Handler(router) log.Fatal(http.ListenAndServe(":8080", handler))}func GetResources(w http.ResponseWriter, r *http.Request) { var resources []Resource db.Find(&resources) json.NewEncoder(w).Encode(&resources)}func GetResource(w http.ResponseWriter, r *http.Request) { params := mux.Vars(r) var resource Resource db.First(&resource, params["id"]) json.NewEncoder(w).Encode(&resource)}func CreateResource(w http.ResponseWriter, r *http.Request) { var resource Resource json.NewDecoder(r.Body).Decode(&resource) db.Create(&resource) json.NewEncoder(w).Encode(&resource)}我想我可以做類似的事情db.Select("AVG(tts)")我只是不確定如何將該結(jié)果放入列 ttc
如何將一行的 AVG 放入新列中?
當(dāng)年話下
2023-04-17 15:04:49