会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
屁宝
博客园
首页
新随笔
联系
订阅
管理
2017年5月3日
sql server 将表中某字段按照分隔符拆分为多行
摘要: 1、建一个空表,并且将表里填充自增的正数。sql如下: create table Number(n int)declare @a intset @a=1while @a<=4000begininsert into Number values(@a);set @a=@a+1end 表中是1-4000的
阅读全文
posted @ 2017-05-03 16:25 屁宝
阅读(1835)
评论(0)
推荐(0)
编辑