User Defined Functions play a major role in SQL. User Defined functions can be used to perform a complicated logic, can accept parameters and return data. Many a times we have to write complex logic which cannot be written using a single query.
A view is a SQL statement which is stored in the database with a name. A view is actually a formation of a table in the form of a predefined Structured Query Language (SQL) query.
Triggers are store procedure, which are automatically executed or fired when some events occur like deletion, insertion of data. Triggers are database object which is attached to a table and is executed automatically.
These functions return a single value, calculated from the values in the column.Scalar functions return a single value, based on input data. Following are the various types of scalar functions.
In this article I would discuss about the Database Mail which is used to send the Email using SQL Server. Database Mail Configuration To Create a D
This Article describes how to create a Microsoft SQL Server Agent job step that executes Store procedure in SQL Server by using SQL Server Management Studio.
Hi everyone in this blog I’m explaining about Reporting Services in ASP.NET MVC. Description:There is no control for Report Viewer in MVC, so we cann
In this blog, I’m explaining about joins in SQL SQL joins are used to combine rows from two or more tables.Types of joins1 .Inner joins2. Outer join
In this blog, I’m explaining about Indexes in SQL Indexes are created on columns in tables or views. The index provides a fast way to look up data b
In this blog, I’m explaining about constraints in SQL.Description: SQL constraints are used to restrict the type of data that can insert into a databa
In this blog, I’m explaining about triggers in SQL Triggers are database object. Basically these are special type of store procedure that are automa
In this blog, I’m explaining about store procedure in .Net A store procedure is a group of SQL statements that has been created and stored in databa