You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE TALBE IF NOT EXISTS Items (Name varchar (30));
SELECT * FROM Items;
CREATE TABLE IF NOT EXISTS Delivery( DeliveryID int (11) NOT NULL AUTO_INCREMENT PRIMARY KEY, Item varchar (50) NOT NULL, Cost int (11) DEFAULT 0, Method varchar (30), Shipping int (11) DEFAULT 10 );
INSERT INTO Delivery (Item, Cost, Method, Shipping) VALUES ('item','10','method','10')