SQL Triggers – An Introduction Contents Introduction Magic Tables Difference between Stored Procedure and Trigger DML Triggers After Triggers Syntax
Continue readingCategory: Most Imp SQL Concepts
This category contains the most important SQL Concepts
Exception handling in SQL Server
SQL server gives the exception/error handling mechanism which is similar to c#, Try..Catch block. In SQL Server, we can write
Continue readingCase Statement/ Expression in SQL Server
Case Statement/ Expression in SQL server Sometimes we need to get one result output from multiple possible outcomes based on
Continue readingPivot and Unpivot table in SQL SERVER
Pivot Table:- Pivot tables are used to summarize and display the data, specially in case of report data by means
Continue readingCTE command In Sql Server
Common table expression (CTE):- Common table expression or CTE can be described as the temporary, named record set return by
Continue readingSQL Server Functions- An Introduction
SQL FUNCTION: – Function in a database can be defined as the code segment consisting of a logical group of
Continue readingCursor in SQL server
Sometimes our application required a database object which allows manipulation of data from a set of rows on row by row basic
Continue readingSql Server View
Views:- View can be described as virtual table which derived its data from one or more than one table columns.It
Continue readingIndexes in Sql server
Indexes-Indexing is way to sort and search records in the table. It will improve the speed of locating and retrieval
Continue readingSql Joins- Inner Joins, Self Joins, Outer Joins, Cross Joins
I generally feel that people are afraid of Joins in SQL Server. But if they know what the different types
Continue reading