Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Learn MS SQL Server from Scratch
Rating: 4.4 out of 5(148 ratings)
4,442 students
Created byVenkatM M
Last updated 8/2023
English

What you'll learn

  • SQL Server Basics with practical examples
  • SQL Server advanced Concepts
  • SQL Server Performance Improvements
  • sql 2019
  • sql 2016
  • sql 2022

Course content

4 sections22 lectures2h 47m total length
  • SQL Server Introduction5:48

    SQL Server Introduction

  • History of SQL Server5:48

    History of SQL Server

  • Hardware and software requirements4:12

    Hardware and software requirements

  • How to Check SQL Instance name and Version8:01

    Check SQL Instance name and Version

  • How to create Data base and tables for the first time12:40

    How to create Data base and tables for the first time

  • SQL Commands6:34

    DDL -- CREATE , ALTER , DROP , RENAME,TRUNCATE

    DML --INSERT , UPDATE ,DELETE , SELECT 

    TCL -- COMMIT , ROLL BACK , SAVEPOINT

    DCL -- GRANT , REVOKE

  • SQL DDL Command - Create and Drop14:29

    create and drop

    CREATE DATABSE <Name of the Database>


    CREATE TABLE <NAME of the table>

  • How to check definition of table in SQL3:26

    How to check definition of table in SQL

  • SQL DML Command - Insert examples9:26

    SQL Command - Insert examples

  • SQL DML Command - Update and Delete10:35

    Update : Update the existing data


    UPdate <Table Name>

    Set <Column Name >=<New Value>


    UPDATE <TAble Name>

    Set <Column Name>=<New Value>

    WHERE IdEmp=Number of the emp



    DELETE --delete records from table


    DELETE FROM <Table Name>


    DELETE FROM <TABLE NAME> WHERE <CONDITION>

  • SQL DDL - Truncate Command4:58

    SQL DDL - Truncate Command

  • SQL DDL - Alter Command5:53
  • What is Alias in SQL9:11

    Alias in SQL Server

Requirements

  • Any IT person can attend

Description

SQL (Structured Query Language)

SQL stands for “Structured Query Language” and can be pronounced as “SQL” or “sequel – (Structured English Query Language)”.SQL (Structured Query Language) is used to modify and access data or information from a storage area called database.

SQL Commands:

SQL commands are instructions used to communicate with the database to perform specific task that work with data.

Data Definition Language (DDL) - These SQL commands are used for creating, modifying, and dropping the structure of database objects. The commands are CREATE, ALTER, DROP, RENAME, and TRUNCATE.

Data Manipulation Language (DML) - These SQL commands are used for storing, retrieving, modifying, and deleting data. These commands are SELECT, INSERT, UPDATE, and DELETE.

Transaction Control Language (TCL) - These SQL commands are used for managing changes affecting the data. These commands are COMMIT, ROLLBACK, and SAVEPOINT.

Data Control Language (DCL) - These SQL commands are used for providing security to database objects. These commands are GRANT and REVOKE.

CREATE TABLE

CREATE TABLE table name

(column_name1 datatype,

column_name2 datatype,

column name datatype

);

table name - is the name of the table.

column_name1, column_name2.... - is the name of the columns

datatype - is the datatype for the column like char, date, number etc.

Many more examples on SQL Server 2016 and SQL Server 2019

Will try to cover sql performance tuning and trouble shooting concepts as well.

how to create jobs in sql agents and trouble shooting concepts

Who this course is for:

  • Any IT person can attend