Skip to content

Instantly share code, notes, and snippets.

@machinelearningplus
Created September 20, 2023 10: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/8548d5591ae01dafc1d2ae7d5d8795f2 to your computer and use it in GitHub Desktop.
Save machinelearningplus/8548d5591ae01dafc1d2ae7d5d8795f2 to your computer and use it in GitHub Desktop.
CREATE TABLE Products (
product_id INT AUTO_INCREMENT PRIMARY KEY,
product_name VARCHAR(255) NOT NULL,
product_description VARCHAR(255)
);
INSERT INTO Products (product_name, product_description) VALUES
('Laptop', 'High performance gaming laptop'),
('Mouse', NULL),
('Keyboard', ''),
('Monitor', '27 inch 4K display');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment