Back to Browse

04. What is a Database Table, Create Table | Learn SQL Server Malayalam

503 views
May 16, 2024
9:25

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) );

Download

1 formats

Video Formats

360pmp412.3 MB

Right-click 'Download' and select 'Save Link As' if the file opens in a new tab.

04. What is a Database Table, Create Table | Learn SQL Server Malayalam | NatokHD