Join this channel to get access to perks:
https://www.youtube.com/channel/UCMCR4flf344Hd4cnZi09HaA/join
#sql #sqlserver #sqlmalayalam #sqlservermalayalam #databasemalayalam
-- WHAT IS TABLE
-- CREATING TABLE
-- Database tables are objects that store all the data in a database.
-- In a table, data is logically organized in a row-and-column format, similar to a spreadsheet.
-- Each row represents a unique record in a table, and each column represents a field in the record.
CREATE TABLE sales.customers (
customer_id INT IDENTITY (1, 1) PRIMARY KEY,
first_name VARCHAR (255) NOT NULL,
last_name VARCHAR (255) NOT NULL,
phone VARCHAR (25),
email VARCHAR (255) NOT NULL,
street VARCHAR (255),
city VARCHAR (50),
state VARCHAR (25),
zip_code VARCHAR (5)
);