How can I get this function be working?
CREATE FUNCTION MyFunc
(
@.MyDate as datetime,
@.MyTableName varchar(50),
)
RETURNS TABLE
AS
RETURN
SELECT * FROM @.MyTableName Where myDate=@.MyDate
Can you describeexactly what your problem is andexactly where you are trying to use the function. Are you getting error messages? If so, show them.
My guess is that the problem is you are trying to use a parameter as the table name. You cannot do that.
|||Ok. Thanks for the reply.
I am trying to deal with many tables with different column names. Is there any way I can keep the result set if the following command and perform some other sql command on it?
EXECUTE sp_executesql @.SQLSelectString
-- forward the result set in a table so that other procedures can read it.
No comments:
Post a Comment