猿问
如何在SQL中创建100年的日历表
如何在SQL中创建100年的日历表
假设我想将数千天存储在一个表中,我将如何从日历中检索它?
天涯尽头无女友
浏览 1279
回答 3
3回答
SMILET
这会给你带来闪电般的结果。select top 100000 identity (int ,1,1) as Sequence into Tally from sysobjects , sys.all_columnsselect dateadd(dd,sequence,-1) Dates into CalenderTable from tallydelete from CalenderTable where dates < -- mention the mindate you needdelete from CalenderTable where dates > -- mention the max date you need步骤1:创建序列表步骤2:使用序列表生成所需的日期步骤3:删除不需要的日期
0
0
0
随时随地看视频
慕课网APP
相关分类
MySQL
SQL Server
我要回答