Welcome to the world of SQL

Hi folks,

This blog dedicated to help my friends who are new to SQL and want to know the facts about SQL. So if you have any query/question on SQL server please post the same on the blog or mail me on sqlfacts@gmail.com. I will post the answer on the blog.



Thanks,

Why we can't execute a stored procedure from a User Defined function(UDF)

Functions cannot "touch" any database but read them only. Stored procedures can do anything and everything with databases. You ...