Computer Science, asked by mithunhaldkar5208, 11 months ago

Create a database named product sales

Answers

Answered by guptaanubhav2005
0

CREATE TABLE sales.stores (

store_id INT IDENTITY (1, 1) PRIMARY KEY,

store_name VARCHAR (255) NOT NULL,

phone VARCHAR (25),

email VARCHAR (255),

street VARCHAR (255),

city VARCHAR (255),

state VARCHAR (10),

zip_code VARCHAR (5)

);

Explanation:

Similar questions