Answers for "create boolean column in postgressql"

SQL
0

postgresql create table with boolean column

CREATE TABLE stock_availability (
   product_id INT PRIMARY KEY,
   available BOOLEAN NOT NULL
);
Posted by: Guest on February-12-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language