04. What is a Database Table, Create Table | Learn SQL Server Malayalam
Автор: Learn Programming In Malayalam
Загружено: 2024-05-16
Просмотров: 446
Описание:
Join this channel to get access to perks:
/ @learnprogramminginmalayalam
#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)
);
Повторяем попытку...
Доступные форматы для скачивания:
Скачать видео
-
Информация по загрузке: