Skip to content

Instantly share code, notes, and snippets.

@machinelearningplus
Created September 13, 2023 09:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save machinelearningplus/ce4cde0a16cf7e41418f8548e3458848 to your computer and use it in GitHub Desktop.
Save machinelearningplus/ce4cde0a16cf7e41418f8548e3458848 to your computer and use it in GitHub Desktop.
CREATE TABLE Products (
ProductID INT PRIMARY KEY,
Attribute1 VARCHAR(50),
Attribute2 VARCHAR(50),
Attribute3 VARCHAR(50)
);
INSERT INTO Products (ProductID, Attribute1, Attribute2, Attribute3)
VALUES
(1, 'Red', 'Large', 'Cotton'),
(2, 'Blue', 'Medium', 'Silk'),
(3, 'Green', 'Small', 'Wool');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment