Write a sql query to convert the hello function to a stored procedure using concat
Answers
Answered by
22
Answer:
Stored Procedures can't be called from a function. Functions can be called from a select statement. Procedures can't be called from Select/Where/Having and so on statements. Execute/Exec statement can be used to call/execute Stored Procedure.
Similar questions