SQL Server- Basic to Advance

Course

Online

£ 10 VAT inc.

Description

  • Type

    Course

  • Methodology

    Online

  • Start date

    Different dates available

This course contain an in-depth study of SQL Server in a more practical way.The SQL Server course contains details of Data Definition Language (DDL) commands, Data Manipulation Language (DML) command, Data Query Language (DQL] commands.Further the course contains CRUD operations using SQL commands, basic queries in SQL Server.Advanced query commands using SELECT clause has been explained with real-time scenarios in a easy way. Connecting multiple tables in SQL, Functions and Procedures and Programming in Functions and Procedures has been explained in a more practical approach.Advanced Concept in SQL Server, implicit and explicit cursors has been explained in depth.Programming using T-SQL has been explained with realtime scenarios.The Topics Covered are:Session 1 - IntroductionLecture 1 - Introduction to SQL
Lecture 2 - SQL Basic Queries
Lecture 3 - Table Structures in SQL Server
Lecture 4 - CRUD Operations in SQL ServerSession 2:Lecture 5 - Select clause in SQL Server
Lecture 6 - Connecting multiple tables using SQL Server
Lecture 7 - SQL Functions and Procedures
Lecture 8 - SQL Programming in Functions and ProceduresSession 3:Lecture 9 - Advanced Concepts in SQL Server I
Lecture 10 - Advanced Concepts in SQL Server II
Lecture 11 - Advanced Concepets in SQL Server using T-SQL Who this course is for:Intermediate level developers to advanced level developers

Facilities

Location

Start date

Online

Start date

Different dates availableEnrolment now open

About this course

Understand SQL Server concepts
Perform T-SQL programming
Utilization of SQL Server more effectively in Front-end client applications

Intermediate level developers to advanced level developers

Questions & Answers

Add your question

Our advisors and other users will be able to reply to you

Who would you like to address this question to?

Fill in your details to get a reply

We will only publish your name and question

Reviews

This centre's achievements

2021

All courses are up to date

The average rating is higher than 3.7

More than 50 reviews in the last 12 months

This centre has featured on Emagister for 4 years

Subjects

  • Programming
  • Database training
  • SQL
  • Database
  • Database Management
  • Server
  • Windows
  • Monitoring

Course programme

Introduction 4 lectures 01:52:29 Introduction to SQL Sql Server is a relational database management which stores, retrieves and manipulates the data Latest version of Sql Server is Microsoft SQL Server 2014 and its express edition can be downloaded free Windows Authentication will be done automatically with current windows userSQL Server Authentication will be done by creating a new SQL Server login Authenticating the user while connecting to Sql Server can be done in two ways: Windows Authentication and SQL Server Authentication Connecting, monitoring, querying, and manipulating the Sql Server will be done by Microsoft SQL Server Management Studio software SQL Basic Queries Designing Database table:Create table Employee ( employeeid int, employeename varchar(100), designation varchar(50), basicsalary decimal(18,2), joindate datetime, address varchar(max), contactno varchar(30), emailid varchar(50), departmentid int )Retrieving table data: select employeeid, employeename, designation, basicsalary from Employee select employeeid as [ID], employeename as [Name], designation as [Designation], basicsalary as [Basic Salary] from Employee select employeeid as [ID], employeename as [Name], designation as [Designation], basicsalary as [Basic Salary], basicsalary * 0.10 as [HRA] from EmployeeRetrieving filtered data: select employeeid as [ID], employeename as [Name], designation as [Designation], basicsalary as [Basic Salary], basicsalary * 0.10 as [HRA] from Employee where basicsalary > 40000 select employeeid as [ID], employeename as [Name], designation as [Designation], basicsalary as [Basic Salary], Month(joindate) as [Month of Joining] from Employee where month(joindate) = 1Inserting data: Insert into Employee values(1, ’Ramkumar’ , ’Manager’ , 54000, ’1/20/2016’ , ’Chennai Tamilnadu’ , ’23445984’ , ’’ , 1)Inserting specific data: Insert into Employee(employeeid, employeename, designation , basicsalary) values(1, ’GuruPrasad’ , ’Manager’ , 58000)Updating data to a table: Update Employee set address = ‘Chennai’Updating specific record: Update Employee set address = ‘Chennai’, basicsalary = 40000 where employeename = ‘Pramod’Deleting the table record: Delete from EmployeeDeleting specific record: Delete from Employee where employeename = ‘GuruPrasad’ Table Structures in SQL Server CRUD Operations in SQL Server Introduction. 4 lectures 01:52:29 Introduction to SQL Sql Server is a relational database management which stores, retrieves and manipulates the data Latest version of Sql Server is Microsoft SQL Server 2014 and its express edition can be downloaded free Windows Authentication will be done automatically with current windows userSQL Server Authentication will be done by creating a new SQL Server login Authenticating the user while connecting to Sql Server can be done in two ways: Windows Authentication and SQL Server Authentication Connecting, monitoring, querying, and manipulating the Sql Server will be done by Microsoft SQL Server Management Studio software SQL Basic Queries Designing Database table:Create table Employee ( employeeid int, employeename varchar(100), designation varchar(50), basicsalary decimal(18,2), joindate datetime, address varchar(max), contactno varchar(30), emailid varchar(50), departmentid int )Retrieving table data: select employeeid, employeename, designation, basicsalary from Employee select employeeid as [ID], employeename as [Name], designation as [Designation], basicsalary as [Basic Salary] from Employee select employeeid as [ID], employeename as [Name], designation as [Designation], basicsalary as [Basic Salary], basicsalary * 0.10 as [HRA] from EmployeeRetrieving filtered data: select employeeid as [ID], employeename as [Name], designation as [Designation], basicsalary as [Basic Salary], basicsalary * 0.10 as [HRA] from Employee where basicsalary > 40000 select employeeid as [ID], employeename as [Name], designation as [Designation], basicsalary as [Basic Salary], Month(joindate) as [Month of Joining] from Employee where month(joindate) = 1Inserting data: Insert into Employee values(1, ’Ramkumar’ , ’Manager’ , 54000, ’1/20/2016’ , ’Chennai Tamilnadu’ , ’23445984’ , ’’ , 1)Inserting specific data: Insert into Employee(employeeid, employeename, designation , basicsalary) values(1, ’GuruPrasad’ , ’Manager’ , 58000)Updating data to a table: Update Employee set address = ‘Chennai’Updating specific record: Update Employee set address = ‘Chennai’, basicsalary = 40000 where employeename = ‘Pramod’Deleting the table record: Delete from EmployeeDeleting specific record: Delete from Employee where employeename = ‘GuruPrasad’ Table Structures in SQL Server CRUD Operations in SQL Server Introduction to SQL Sql Server is a relational database management which stores, retrieves and manipulates the data Latest version of Sql Server is Microsoft SQL Server 2014 and its express edition can be downloaded free Windows Authentication will be done automatically with current windows userSQL Server Authentication will be done by creating a new SQL Server login Authenticating the user while connecting to Sql Server can be done in two ways: Windows Authentication and SQL Server Authentication Connecting, monitoring, querying, and manipulating the Sql Server will be done by Microsoft SQL Server Management Studio software Introduction to SQL Sql Server is a relational database management which stores, retrieves and manipulates the data Latest version of Sql Server is Microsoft SQL Server 2014 and its express edition can be downloaded free Windows Authentication will be done automatically with current windows userSQL Server Authentication will be done by creating a new SQL Server login Authenticating the user while connecting to Sql Server can be done in two ways: Windows Authentication and SQL Server Authentication Connecting, monitoring, querying, and manipulating the Sql Server will be done by Microsoft SQL Server Management Studio software Introduction to SQL Sql Server is a relational database management which stores, retrieves and manipulates the data Latest version of Sql Server is Microsoft SQL Server 2014 and its express edition can be downloaded free Windows Authentication will be done automatically with current windows userSQL Server Authentication will be done by creating a new SQL Server login Authenticating the user while connecting to Sql Server can be done in two ways: Windows Authentication and SQL Server Authentication Connecting, monitoring, querying, and manipulating the Sql Server will be done by Microsoft SQL Server Management Studio software Introduction to SQL Sql Server is a relational database management which stores, retrieves and manipulates the data Latest version of Sql Server is Microsoft SQL Server 2014 and its express edition can be downloaded free Windows Authentication will be done automatically with current windows userSQL Server Authentication will be done by creating a new SQL Server login Authenticating the user while connecting to Sql Server can be done in two ways: Windows Authentication and SQL Server Authentication Connecting, monitoring, querying, and manipulating the Sql Server will be done by Microsoft SQL Server Management Studio software Sql Server is a relational database management which stores, retrieves and manipulates the data Latest version of Sql Server is Microsoft SQL Server 2014 and its express edition can be downloaded free Windows Authentication will be done automatically with current windows userSQL Server Authentication will be done by creating a new SQL Server login Authenticating the user while connecting to Sql Server can be done in two ways: Windows Authentication and SQL Server Authentication Connecting, monitoring, querying, and manipulating the Sql Server will be done by Microsoft SQL Server Management Studio software Sql Server is a relational database management which stores, retrieves and manipulates the data Latest version of Sql Server is Microsoft SQL Server 2014 and its express edition can be downloaded free Windows Authentication will be done automatically with current windows userSQL Server Authentication will be done by creating a new SQL Server login Authenticating the user while connecting to Sql Server can be done in two ways: Windows Authentication and SQL Server Authentication Connecting, monitoring, querying, and manipulating the Sql Server will be done by Microsoft SQL Server Management Studio software SQL Basic Queries Designing Database table:Create table Employee ( employeeid int, employeename varchar(100), designation varchar(50), basicsalary decimal(18,2), joindate datetime, address varchar(max), contactno varchar(30), emailid varchar(50), departmentid int )Retrieving table data: select employeeid, employeename, designation, basicsalary from Employee select employeeid as [ID], employeename as [Name], designation as [Designation], basicsalary as [Basic Salary] from Employee select employeeid as [ID], employeename as [Name], designation as [Designation], basicsalary as [Basic Salary], basicsalary * 0.10 as [HRA] from EmployeeRetrieving filtered data: select employeeid as [ID], employeename as [Name], designation as [Designation], basicsalary as [Basic Salary], basicsalary * 0.10 as [HRA] from Employee where basicsalary > 40000 select employeeid as [ID], employeename as [Name], designation as [Designation], basicsalary as [Basic Salary], Month(joindate) as [Month of Joining] from Employee where month(joindate) = 1Inserting data: Insert into Employee values(1, ’Ramkumar’ , ’Manager’ , 54000, ’1/20/2016’ , ’Chennai Tamilnadu’ , ’23445984’ , ’’ , 1)Inserting specific data: Insert into Employee(employeeid, employeename, designation , basicsalary) values(1, ’GuruPrasad’ , ’Manager’ , 58000)Updating data to a table: Update Employee set address = ‘Chennai’Updating specific record: Update Employee set address = ‘Chennai’, basicsalary = 40000 where employeename = ‘Pramod’Deleting the table record: Delete from EmployeeDeleting specific record: Delete from Employee where employeename = ‘GuruPrasad’ SQL Basic Queries Designing Database table:Create table Employee ( employeeid int, employeename varchar(100), designation varchar(50), basicsalary decimal(18,2), joindate datetime, address varchar(max), contactno varchar(30), emailid varchar(50), departmentid int )Retrieving table data: select employeeid, employeename, designation, basicsalary from Employee select employeeid as [ID], employeename as [Name], designation as [Designation], basicsalary as [Basic Salary] from Employee select employeeid as [ID], employeename as [Name], designation as [Designation], basicsalary as [Basic Salary], basicsalary * 0.10 as [HRA] from EmployeeRetrieving filtered data: select employeeid as [ID], employeename as [Name], designation as [Designation], basicsalary as [Basic Salary], basicsalary * 0.10 as [HRA] from Employee where basicsalary > 40000 select employeeid as [ID], employeename as [Name], designation as [Designation], basicsalary as [Basic Salary], Month(joindate) as [Month of Joining] from Employee where month(joindate) = 1Inserting data: Insert into Employee values(1, ’Ramkumar’ , ’Manager’ , 54000, ’1/20/2016’ , ’Chennai Tamilnadu’ , ’23445984’ , ’’ , 1)Inserting specific data: Insert into Employee(employeeid, employeename, designation , basicsalary) values(1, ’GuruPrasad’ , ’Manager’ , 58000)Updating data to a table: Update Employee set address = ‘Chennai’Updating specific record: Update Employee set address = ‘Chennai’, basicsalary = 40000 where employeename = ‘Pramod’Deleting the table record: Delete from EmployeeDeleting specific record: Delete from Employee where employeename = ‘GuruPrasad’ SQL Basic Queries Designing Database table:Create table Employee ( employeeid int, employeename varchar(100), designation varchar(50), basicsalary decimal(18,2), joindate datetime, address varchar(max), contactno varchar(30), emailid varchar(50), departmentid int )Retrieving table data: select employeeid, employeename, designation, basicsalary from Employee select employeeid as [ID], employeename as [Name], designation as [Designation], basicsalary as [Basic Salary] from Employee select employeeid as [ID], employeename as [Name], designation as [Designation], basicsalary as [Basic Salary], basicsalary * 0.10 as [HRA] from EmployeeRetrieving filtered data: select employeeid as [ID], employeename as [Name], designation as [Designation], basicsalary as [Basic Salary], basicsalary * 0.10 as [HRA] from Employee where basicsalary > 40000 select employeeid as [ID], employeename as [Name], designation as [Designation], basicsalary as [Basic Salary], Month(joindate) as [Month of Joining] from Employee where month(joindate) = 1Inserting data: Insert into Employee values(1, ’Ramkumar’ , ’Manager’ , 54000, ’1/20/2016’ , ’Chennai Tamilnadu’ , ’23445984’ , ’’ , 1)Inserting specific data: Insert into Employee(employeeid, employeename, designation , basicsalary) values(1, ’GuruPrasad’ , ’Manager’ , 58000)Updating data to a table: Update Employee set address = ‘Chennai’Updating specific record: Update Employee set address = ‘Chennai’, basicsalary = 40000 where employeename = ‘Pramod’Deleting the table record: Delete from EmployeeDeleting specific record: Delete from Employee where employeename = ‘GuruPrasad’ SQL Basic Queries Designing Database table:Create table Employee ( employeeid int, employeename varchar(100), designation varchar(50), basicsalary decimal(18,2), joindate datetime, address varchar(max), contactno varchar(30), emailid varchar(50), departmentid int )Retrieving table data: select employeeid, employeename, designation, basicsalary from Employee select employeeid as [ID], employeename as [Name], designation as [Designation], basicsalary as [Basic Salary] from Employee select employeeid as [ID], employeename as [Name], designation as [Designation], basicsalary as [Basic Salary], basicsalary * 0 Designing Database...

Additional information

Students should have basic knowledge of databases

SQL Server- Basic to Advance

£ 10 VAT inc.