Is it possible to pass the table name as input parameter to the stored procedure?
For example:
create procedure test
@tablename char(10)
as
begin
select * from @tablename
end
go
I know this does not work. So what is the best way if I want to pass the table name into the stored procedure?
Many thanks