What you'll learn:
- How to install SQL Server Database Management System
- How to install SQL Server Management Studio -SSMS
- How to create a database
- How to create a table
- How to create a view
- How to create a stored procedure
- How to fetch data from a database with SELECT Statement
- How to update existing records inside a database table
- How to backup a whole database
- How to delete records
- How to truncate a table
- How to drop a table
- How to drop a database
- How to restore a database from backup copy
The volume of data available is huge and increasing daily. Structured Query Language -SQL (pronounced as sequel) is the standard language used to communicate and interact with data stored in relational management database systems like Microsoft SQL Server Oracle, PostgreSQL,MySQL etc.
Different database management systems have their own proprietary version of the SQL language but they all conform to using some commands in SQL the same way. Microsoft SQL Server's version of SQL is known as Transact-SQL (T-SQL).
In this course you will learn the basics of the SQL language and Transact-SQL since both use certain commands in the same way.
What You will learn includes:
Installing SQL Server
Install SSMS
Basic Database Concepts
Creating Database
Creating Table
Creating Views
Creating stored procedures
Reading data from a database
Updating database records
Backing up database
Deleting Records
Truncating Table
Dropping Table
Dropping Database
Restore Database