当你的才华不能撑起你的野心时,就是你该选择学习的时候了!

摘要: declare @tblName nvarchar(128) declare my_cursor cursor for (select [name] from SysObjects where XType='U') open my_cursor fetch next from my_cursor into @tblName while @@fetch_status = 0 begin ... 阅读全文
posted @ 2019-12-10 17:42 hofmann 阅读(768) 评论(0) 推荐(0)