import ( "sql" "fmt")db, _ := sql.Open(...)
commondSql := 'select * from table where 1 limit1'var idvar namevar timerows, _ := db.Query(commondSql)rows.Next()rows.Scan(&id, &name, &time)fmt.Println(id, name, time)