go-postgres
go-postgres copied to clipboard
This project is a simple CRUD application written in golang and using PostgreSQL as DB.
Go-Postgres
This project is simple CRUD application built in golang and using PostgreSQL as DB. This project is explained in this [tutorial].
Pre-requisite
- Install golang v1.11 or above.
- Basic understanding of the golang syntax.
- Basic understanding of SQL query.
- Code Editor (I recommend to use VS Code with Go extension by Microsoft installed)
- Postman for calling APIs
PostgreSQL Table
CREATE TABLE users (
userid SERIAL PRIMARY KEY,
name TEXT,
age INT,
location TEXT
);
Author
I am Shubham Chadokar. I am Software Engineer and work mostly on backend development. I love write the articles and tutorials on Golang, Nodejs, Blockhain. You can read all my articles and tutorials here.