postgresql create table with boolean column

Solutions on MaxInterview for postgresql create table with boolean column by the best coders in the world

showing results for - "postgresql create table with boolean column"
Demetria
23 Oct 2017
1CREATE TABLE stock_availability (
2   product_id INT PRIMARY KEY,
3   available BOOLEAN NOT NULL
4);