sql server
sql

Basic overview of SQL server in Backend development

Overview of SQL Server

Structured Query Language

Types of services:

  • Database engine
  • Analysis service
  • Reporting service
  • Integration service
  • SQL server compact edition or mobile edition

SQL Command Set:

Create:

is used to create table,database,function,procedures ,constraints etc

alter:

is used to modify the table structure like add column,drop column
or change column datatype or its size

update:

is used to modify the table data or content or record

drop:

is used to drop the database or table or any thing permanently

delete:

is used to delete the data from the table

insert:

is used to insert records into table or to store the data

Constraints

Temporary Table

Local temp tables

Global temp tables

SQL Server in Backend Development

Common Use Cases:

2 Comments

  1. sonu

    This was a great introduction to SQL Server. It helped me understand the different editions and features!

Leave a Reply

Your email address will not be published. Required fields are marked *