
mssql
whelin_porsche
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
sqlserver 批量删除存储过程
declare proccur cursor for select [name] from sysobjects where type='P'declare @procname varchar(100)open proccurfetch next from proccur into @procnamewhile(@@FETCH_STATUS = 0)转载 2016-12-01 20:18:34 · 274 阅读 · 0 评论 -
处理表重复记录(查询和删除)
--参考 --处理表重复记录(查询和删除)/******************************************************************************************************************************************************1、Num、Name相同转载 2017-09-04 20:51:08 · 309 阅读 · 0 评论