Create Snowflake newsletter table

PHOTO EMBED

Tue Feb 28 2023 13:20:35 GMT+0000 (Coordinated Universal Time)

Saved by @Tilores

CREATE TABLE newsletter_subscriptions (
	"id" VARCHAR,
    "name" VARCHAR,
    "email" VARCHAR
);


INSERT INTO newsletter_subscriptions VALUES
('72ff220f-af81-45c6-a9ab-ae406ef9cf0b', 'John Smith', 'john.smith@example.com'),
('5d974e06-a94b-4dbf-93d3-88bdb911c145', 'John Robert Smith', 'js@example.com'),
('d3dcb867-5f90-456a-a10b-8cdc42c47ee7', 'Jane Doe', 'jane@example.com'),
('03f7c5d4-0a12-456e-9412-cf304c8501f4', 'J. Robert Smith', 'js@example.com');
content_copyCOPY