Answers for "create table postgres ubuntu"

0

create table postgres ubuntu

CREATE TABLE pg_equipment (
	equip_id serial PRIMARY KEY,
	type varchar (50) NOT NULL,
	color varchar (25) NOT NULL,
	location varchar(25) check (location in ('north', 'south', 'west', 'east', 'northeast', 'southeast', 'southwest', 'northwest')),
	install_date date
	);
Posted by: Guest on May-21-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language