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
How to create a view with data from multiple tables?
Suppose i have a table that contains 5 columns like col1,col2...colm5.I want to import only two column through BCP utility.How to do same through BCP in sybase.
Does union all remove duplicates?
What are the requirements to use odbc connections in php scripts?
What is database replication? What are the different types of replication you can set up in sql server?
How to sort query output in descending order in ms sql server?
what method you can use to reduce the overhead of Reporting Services data sources?
Explain Geography datatype in SQL Server
Can you explain what is indexed view? How to create it?
How we create SQL Server 2005 Reporting Services ? Give me Sample
List out the difference between union and union all in sql server?
How many null values we can have in a unique key field in sql server?
What is the difference between local and global temporary tables?
How can we remove orphan records from a table?
How many clustered indexes there can be on table ?