- create datebase in postgress sql for crud.
Nice tutorial documenation reference
##create database
CREATE DATABASE golang;
##create table
CREATE TABLE books (
isbn INT PRIMARY KEY NOT NULL,
title TEXT NOT NULL,
author CHAR(50),
price REAL DEFAULT 25500.00,
);
open diretory and run code in your command line
go run main.go