找出与某id相近的四条记录
摘要:
--找出与某id相近的四条记录:declare @tb table(id int,cName char(10))insert into @tbselect 3,'a' UNION ALLselect 5,'b' UNION ALLselect 6,'c' UNION ALLselect 7,'d' 阅读全文
posted @ 2020-09-03 17:53 wwwlzp 阅读(237) 评论(1) 推荐(0) 编辑