function syntax on Mysql
I am having problems creating a simple function with the proper syntax.
Can someone post a full function where you pass a parameter to the function and get something returned. Say for example param_in Char(12), param_out char(14). With the function simply adding the characters "mr" to in Param_in. thus I would expect to see this:
SELECT Test_Function('jones');
would return "mrjones"
|