Work with databases (DB)

// Connect to the database
// ...

// SQL query execution
conn.Exec(`
    DELETE FROM city
    WHERE country_id = ?`-1)

// Close the connection
conn.Close()