create procedure test( in tbl varchar(32),out cnt int(11) )
begin
/*
这里怎么写执行类似
select count(*) into cnt from {$tbl};
的语句
*/
end