Select 怎样格式化输出字符串

 我来答
化清和
2017-01-08 · 建造师
化清和
采纳数:2256 获赞数:6975

向TA提问 私信TA
展开全部
declare @time varchar(6),@newtime varchar(10) set @time='151012' set @newtime=case when len(@time)=6 then stuff(stuff(@time,3,0,':'),6,0,':') when len(@time)=5 then '0'+stuff(stuff(@time,2,0,':'),5,0,':') end print @newtime 或 declare @time varchar(6),@newtime varchar(10) set @time='51012' if len(@time)=6 begin set @newtime=stuff(stuff(@time,3,0,':'),6,0,':') end else if len(@time)=5 begin set @newtime='0'+stuff(stuff(@time,2,0,':'),5,0,':') end print @newtime 当@time='151012'时,结果为15:10:12 当@time='51012'时,结果为05:10:12
eacc38
2019-11-08 · TA获得超过143个赞
知道答主
回答量:49
采纳率:100%
帮助的人:16.9万
展开全部
select * from 表名\G
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式