
Learn what is SQL and how it is based on RDBMS. We will discuss the features as well as Microsoft SQL Server and SQL Server Management Studio.
Learn the difference between SQL and NoSQL. We have considered the example of MySQL (SQL-based) and MongoDB (NoSQL-based) to understand the concept.
Learn how to install Microsoft SQL Server on Windows 11. With that, we will also install SQL Server Management Studio.
Download SQL Server: https://www.microsoft.com/en-in/sql-server/sql-server-downloads
Learn how to create a new database in SQL Server. The CREATE DATABASE statement is used to create a new database in SQL Server.
Learn how to create a new table with SQL Server. The CREATE TABLE statement is used to create a new table in SQL Server.
Learn how to insert records in a table using the INSERT INTO statement in SQL.
Learn how to select records in SQL using the SELECT statement. We will also see how to select multiple columns in a single query.
Learn how to select and return only distinct values from a table using the SQL SELECT DISTINCT statement.
Learn how to work with the WHERE clause in SQL. WHERE clause filter records based on condition(s).
Learn how to order records in SQL using the ORDER BY keyword. The default sorts in Ascending order. We will see examples of both ASC and DESC keywords as well.
Learn how to work with the AND Operator in SQL to display records only if both the conditions are TRUE. These two conditions should be separated by the AND operator.
Learn how to work with the OR Operator in SQL to display records only if any one of the conditions is TRUE. These two conditions should be separated by the OR operator.
Learn how to work with the NOT Operator in SQL to display records only if the condition isn't met i.e. FALSE.
Learn how to implement the IN operator in SQL. We will check whether a specific value match.
Learn how to implement the BETWEEN and NOT BETWEEN operator in SQL. We will find values in a range.
Learn how to implement the LIKE operator in SQL. We will find values on the basis of a specific pattern using percentage and underscore.
Learn how to implement the MAX() function in SQL. We will find the maximum of column values.
Learn how to implement the MIN() function in SQL. We will find the minimum of column values.
Learn how to implement the SUM() function in SQL. We will find the sum of column values.
Learn how to implement the AVG() function in SQL. We will find the average of column values.
Learn how to implement the COUNT() function in SQL. We will find the count of the number of rows.
Learn how to work with the NOT NULL Constraint in SQL, to enforce a column to have values i.e. not null. Remember, since columns can have NULL by default, to enforce a column to NOT accept values, we use the NOT NULL constraint.
Learn how to work with the UNIQUE Constraint in SQL to uniquely identifies each record in a database table. It enforces the uniqueness of column values.
Learn how to work with the PRIMARY KEY Constraint in SQL. A PRIMARY KEY uniquely identifies each record. Note, that a Primary Key column can never have NULL values.
Learn how to work with the FOREIGN KEY Constraint in SQL. A FOREIGN KEY is a field in one table that refers to the PRIMARY KEY in another table. A child table is a table with a foreign key.
Learn how to work with the CHECK Constraint in SQL to allow only specific values for a column. You can limit the value range set in a column, for example, Age > 18, Marks > 75, etc.
Learn how to work with ASC Command in SQL to sort the data in ascending order. The ASC is used with the ORDER BY in SQL. The ORDER BY sorts records in ascending or descending order.
Learn how to work with DESC Command in SQL to sort the data in descending order. The DESC is used with the ORDER BY in SQL. The ORDER BY sorts records in ascending or descending order.
Learn how to work with the ALTER TABLE in SQL to add or delete columns in the existing table. To add a column to an existing table, use the ALTER TABLE with ADD command. To delete a column from an existing table, use the ALTER TABLE with DROP COLUMN.
Learn how to work with the UPDATE Statement in SQL to update existing records in a table. Note, use the WHERE clause with the UPDATE statement to avoid updating all records in the table.
Learn how to work with Aliases in SQL to give a temporary name to a table or a column. The AS keyword is used to create an alias, making column names more readable. Remember that the existence of the alias expires when the duration of that query ends.
Welcome to our Microsoft SQL Server Course!!!
In this Video Course, learn SQL and its concept. SQL Server is a relational database management system (RDBMS) developed by Microsoft. RDBMS is the basis for SQL, and for all modern database systems such as Microsoft SQL Server, Oracle, MySQL, and Microsoft Access. We have covered Microsoft SQL Server in this course. The course is for beginners and consists of 38 lessons, and more than 100 live running queries, including creating new databases and tables.
The course begins with SQL Introduction and free versions provided by Microsoft for SQL Server. Then, we have shown how to set up and install it on both Windows 10 and Windows 11. We proceed further with creating a new database and table, to perform various operations on it. With that, we have also covered live-running queries in every lesson.
Note: The flow would be step-by-step and the explanations would include a tutorial-like format, to make it easier for beginners to understand a new database and table and its concepts, with live running queries as examples. With that, we have also created some quizzes to polish your SQL skills.
**Course Highlights**
38 lessons
2h video with live running examples
50+ examples and coding queries
85 downloadable resources
20 Quizzes to polish your skills after learning from the lessons
**Course Lessons**
Section 1: SQL - Introduction
SQL Introduction & Versions
SOL vs NOSOL
Section 2: SQL - Installation and Setup
Install SOL Server on Windows 11
Section 3: SQL - Create and Insert
Create a Database
Create a Table
Insert Records
Section 4: SQL - Select Records
SELECT Statement in SOL
SELECT DISTINCT Statement in SOL
WHERE Clause in SOL
Section 5: SQL - Order Records
ORDER BY Keyword in SQL
Section 6: SQL - Operators
AND Operator
OR Operator
NOT Operator
IN Operator
BETWEEN Operator
LIKE Operator
Section 7: SQL - Built-in Functions
MAX() Function
MIN() Function
SUM() Function
AVG() Function
COUNT() Function
Section 8: SQL - Constraints
NOT NULL Constraint
UNIQUE Constraint
PRIMARY KEY Constraint
FOREIGN KEY Constraint
CHECK Constraint
Section 9: SQL - Commands
ASC Command
DESC Command
Section 10: SQL - Alter and Update
ALTER TABLE Statement
UPDATE Statement
Aliases
Section 11: SQL - Advanced
Stored Procedures in SQL
Indexes in SOL
SELECT INTO Statement in SOL
SELECT TOP Clause in SOL
Backup a Database in SQL
SOL Views
Drop a Table in SOL
Bonus
SQL Interview QA
While learning, you will get an opportunity to work on various hands-on exercises and understand the role of databases in a real-world application.