Z
ziyu
Unregistered / Unconfirmed
GUEST, unregistred user!
eg:
mssql中 create procdure proc_1
(@type char(10) ,@count int output,@avg money output)
as
select @count=count(*) @avg=avg(column1) from table1
where column2=@type
在delphi中用edit1输入@type的值,用edit2,edit3来显示@count和@avg的值,这样的程序应如何写。
mssql中 create procdure proc_1
(@type char(10) ,@count int output,@avg money output)
as
select @count=count(*) @avg=avg(column1) from table1
where column2=@type
在delphi中用edit1输入@type的值,用edit2,edit3来显示@count和@avg的值,这样的程序应如何写。