This is a follow up from https://sennasemakula.medium.com/running-a-postgres-database-from-scratch-3409ec93905b Often you will be communicating with a database using code rather than directly running SQL commands inside the database. Getting started In order for Go applications to connect to databases, we will need to use the package database/sql from the standard library. …