摘要: 1.查询包含某关键词的存储过程名 select distinct a.name from sysobjects a,syscomments b where a.id=b.id and a.type='p' and charindex('最大批次号',b.text)>0 2.常用排序 select R 阅读全文
posted @ 2021-10-26 10:59 路小乙 阅读(43) 评论(0) 推荐(0) 编辑