can we call functions from stored procedure in SQL Server
2005 ? How?
Answer Posted / suraj
Yes, we can.
Eg:
create proc Test
as
select getdate()
GO
-- EXEC Test
-- in the above query getdate() is a system function.
| Is This Answer Correct ? | 16 Yes | 5 No |
Post New Answer View All Answers
Explain Capacity planning to create a database? and how to monitor it?
What is proper subset of candidate key?
What is the difference between value type and reference type?
What is the difference between SQL notification and SQL invalidation?
How to use order by with union operators in ms sql server?
How to change the data type of an existing column with "alter table" statements in ms sql server?
What is primary key index?
what is a correlated sub-query? : Sql server database administration
What is the partitioning method?
How can a database be repaired?
In which files does sql server actually store data?
What is replace and stuff function in sql server?
How do you size a resultset?
What are the different types of collation sensitivity in sql server?
How to end a stored procedure properly in ms sql server?