TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Difference Between Stored Procedure and Functions
Vithal Wadje
Apr 18, 2013
46.2
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
in this blog we will learn what is Between Functions and Stored Procedure
Backgroun
d
Many times in interview one question
commonly
asked that what is Difference Between
Stored Procedure
and function, so by considering above requirement i have decided to write this blog to help
Beginners
and job seekers also who might be wants to know about it.
What is a Stored Procedure?
A Stored Procedure is a group of logical SQL statements to perform a specific task, such as insert, select, update and delete operations on a table and so on which is stored in a SQL database.
To know more about stored procedure Read my Article
Insert, Select, Update and Delete Records in a Single Stored Procedure Using SQL Server.
What is a fu
nction
?
Function is the logical group of SQL statements which returns single value by performing the operation on group of SQL statements .it also stored in database.
Summary
I hope this blog is useful for all readers
and these
differences are enough to impress interviewer
. If you have any suggestion then please contact me.
Next Recommended Reading
Executing SQL Stored Procedure from Another Stored Procedure