This commit is contained in:
Imbus 2024-05-04 13:34:22 +02:00
parent dd1781fa71
commit cd11effb42

View file

@ -6,7 +6,7 @@
CREATE TABLE IF NOT EXISTS customers (
customer_id INT PRIMARY KEY,
customer_name VARCHAR(50) NOT NULL,
customer_address VARCHAR(50) NOT NULL,
customer_address VARCHAR(50) NOT NULL
);
-- Orders from customers.