赞
踩
- create function testFunTable(@count int)
- returns @temptale table (intcount int ,intcountAdd int)
- as
- begin
-
- insert into @temptale values(@count,@count+1)
-
- return
- end
SELECT * FROM dbo.testFunTable(20)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。