Learn MS SQL Server from Scratch
VenkatM M
2:47:05
Description
SQL Server Basics to Advanced Concepts
What You'll Learn?
- SQL Server Basics with practical examples
- SQL Server advanced Concepts
- SQL Server Performance Improvements
- sql 2019
- sql 2016
- sql 2022
Who is this for?
What You Need to Know?
More details
DescriptionSQL (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
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
User Reviews
Rating
VenkatM M
Instructor's Courses
Udemy
View courses Udemy- language english
- Training sessions 22
- duration 2:47:05
- Release Date 2023/10/17