如何将SQL查询的结果用作变量

I'm trying to use a result from a query as an integer, so i can use it in some different calculations.

I'm fairly new at Go and programming in general(really new, just started school a few weeks back). For an assignment for school I need to calculate the 'doorlooptijd'(nr of months a customer has to pay) based on the customers age. When i run below code i keep getting the error: 'cannot use leeftijdAlsText (type *sql.Rows) as type string in argument to strconv.Atoi'

leeftijd := "SELECT TIMESTAMPDIFF(YEAR, k.geboortedatum, NOW()) AS leeftijd FROM klant k WHERE k.klantnummer = ?"
leeftijdAlsText, err := db.Query(leeftijd, nummerKlant)
if err != nil {
    fmt.Println("Error found.")
    panic(err)
}
var huidigeLeeftijd int
if leeftijdAlsText.Next() {
    err := leeftijdAlsText.Scan(&leeftijdAlsText)
    if err != nil {
        fmt.Println("Error found")
        panic(err)
    }
}
huidigeLeeftijd, _ = strconv.Atoi(leeftijdAlsText)
var doorlooptijd int
if huidigeLeeftijd < 45 {
    doorlooptijd = 120
} else if huidigeLeeftijd > 45 && huidigeLeeftijd < 55 {
    doorlooptijd = 90
} else if huidigeLeeftijd > 55 {
    doorlooptijd = 60
}

When this works, i need to insert the doorlooptijd in a new row in my database, together with some other information about the customer.