U-nko Xaramont
0
Q:

how to count the rows returned by a query context go

var count int

err := db.QueryRow("SELECT COUNT(*) FROM main_table").Scan(&count)
switch {    
case err != nil:
    log.Fatal(err)
default:
    fmt.Printf("Number of rows are %s\n", count)
}
0

New to Communities?

Join the community