大家帮我看一个存储过程
use zjj
if exists (select name from sysobjects where name='h_readout')
drop procedure h_readout
go
use zjj
go
create procedure h_readout
@id int,
@idd int output,
@getcontent ntext output
as
select @idd=id from upcontent where id=@id
select @getcontent=content from upcontent where id=@idgo提示错误
assignment operator 运算不能以ntext数据类型作为参数.可我的数据库中的content的确是ntext类型的.怎么办呢?高手指教.