我正在使用go-sqlite3来检索具有特定值的列的行数:
query := "select count(notebook) from pages where notebook="
result, err := db.Query(fmt.Sprint(query, id))
Whereid传递给运行查询的函数。
如何从中检索计数值result?
慕运维8079593
相关分类