I am using sqlboiler and golang
using this code I fetch all details from the database.
userDemo, erro := dbmodels.UserDemographics().All(ctx, m.db)
UserDemographic table contain 2 columns, userId and count
how can I fetch the data the userId=1 from userDemo. (we can pass userId=1 in function All, that is not I want)
after fetching the data from db(here eg userDemo), how can I get each row of data diffeneltly