Here is my first go file:
package main
import (
"bufio"
"database/sql"
"fmt"
_ "github.com/go-sql-driver/mysql"
"os"
"strconv"
)
var db13 *sql.DB
then, I create the second go file:
package main
import "database/sql"
var db13 *sql.DB
I got an error saying that: ''db13' redeclared in this package'
Am I miss anything here?