SQL

SQL VIEWS

What are SQL Views? Views are virtual tables in SQL. A view, like every other table in the database, has…

2 years ago

SQL: SET Operations

SQL set operations combine the output of two or more SELECT statements into a single result set. The set operators…

2 years ago

SQL Alias – AS Keyword

What is an Alias? An SQL alias is simply an alternative name that can be used to refer to a…

2 years ago

SQL Functions-II

In the previous section we saw Aggregate Functions, in this section let us discuss Scalar Functions. Scalar Function: A scalar…

2 years ago

SQL Functions-I

What are SQL Functions? SQL functions are predefined routines that can be invoked by SQL queries to perform specific operations…

2 years ago

SQL: DISTINCT keyword

What is the SQL DISTINCT keyword? The SQL DISTINCT keyword is used in conjunction with the SELECT statement to remove…

2 years ago

SQL: HAVING Clause

The HAVING clause in SQL Server includes one or more conditions that must be TRUE for groups of records. It's…

2 years ago

SQL: Group By Clause

The SQL Group By statement is used to organize similar data into groups. The data is further organized using an…

2 years ago

SQL: ORDER BY Clause

What is the ORDER BY Clause? In the SELECT query, the ORDER BY clause can be used to sort the…

2 years ago

SQL: LIKE clause

In SQL to filter data based on a specific pattern, the LIKE clause is used in the WHERE condition. It…

2 years ago