日期:2014-05-18 浏览次数:20387 次
CREATE proc Authors @au_id int(4), @au_lname varchar(10), @au_Phone varchar(20) as declare @sql varchar(8000) select * from authors where @au_id is not null and @au_lname is not null and @au_Phone is not null and city exec(@sql) GO
------解决方案--------------------
mark