PostgreSQL create table

PHOTO EMBED

Thu Apr 29 2021 09:53:47 GMT+0000 (Coordinated Universal Time)

Saved by @mglejser #sql

CREATE TABLE tbl_price_history (
	pk_price_history SERIAL PRIMARY KEY,
	fk_sku character(10) REFERENCES tbl_sku (sku),
	date_of_change date,
	retail_price numeric
);
content_copyCOPY