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
Do you know what is replace and stuff function in sql server?
What is query optimization process?
What are the different subsets of sql?
What is difference between joins and subqueries?
What is primary key and example?
How network traffic be reduced by using the stored procedure?
What are the basic functions for master, msdb, model, tempdb databases?
What is sql injection and why is it a problem? : sql server security
Does dbcc checkdb requires db to be in single_user mode? : sql server database administration
What is optimistic concurrency?
What are the general features of sql server management studio? : sql server management studio
What is the difference between count () and rowcount ()?
How to add code to the existing article (using improve article)?
Can we use where clause with group by?
What is sql collation?