SQL时间转换脚本查询列表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL时间转换脚本查询列表相关的知识,希望对你有一定的参考价值。

关于日期格式转换:(MS-SQL部分,为避免浪费读者时间其它类型数据库的日期转换的问题,请大家绕道,谢谢)

笔者从事ERP系统相关工作,最近由于经常遇到日期格式转换的问题,虽然网上很多博文附带详细列表,但总不如放入系统随时查询方便快捷,用sql统计了下0--131个数据之间,可以正常转换的日期形式有37种,因此花了几分钟时间,简单写了以下脚本以飨读者

Create procedure up_ConvertTime
as
begin
declare @i int,@str varchar(max),@error int
if(OBJECT_ID(tempdb..#t) is not null) drop table #t
Create table #t(nID int ,dTime varchar(50) )
set @i=0
while(@i<=131)
begin--while
if(@i in(
0,1,2,3,4,5,6,7,8,9,10,11,12,13,14, 21,22,23,24,25,101,102,103,104,105, 106,107,108,109,110,111,112,113,114, 121,127,131)) begin if(@i=0) set @str=select 输出格式=CONVERT(varchar,GETDATE(),+convert(varchar,@i)+),+参数值=+convert(varchar,@i) else if(@i>0) set @str=@str+ union all +select CONVERT(varchar,GETDATE(),+convert(varchar,@i)+)+,+convert(varchar,@i) end set @i=@i+1 end--while print @str execute(@str) if(OBJECT_ID(tempdb..#t) is not null) drop table #t end

执行:exec up_ConvertTime

输出格式:技术分享

比如现在需要的格式为30行的格式

select convert(varchar,getdate(),110)

 

以上为本人亲测,如有疑问,烦请大家纠正,谢谢。

以上是关于SQL时间转换脚本查询列表的主要内容,如果未能解决你的问题,请参考以下文章

SQL查询将与多个范围匹配的数字列表转换为值列表

如何根据数据表生成脚本? (将 DataTable 转换为 SQL 查询)

在 Python 中运行 SQL 查询

尝试将 sql 查询详细说明到 cakephp 时总是出错;如何转换这个?

Microsoft SQL Server 代码片段收集

将 SQL 语句转换为 DataTable 上的 LINQ 查询