由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Database版 - 测一下你的t-sql 功力
相关主题
包子谢,怎么加个table到一个function里select 跟 set 的区别?
这个stored proc错在哪里?求教个MS SQL的问题
如何决定indexHow to convert this datetime in SQL Server?
SSRS report failing to display dataset string一个关于T-SQL的问题
面试中的一道sql的题目。再请教大牛一个问题
Need help on finding dependency objects转换成时间的格式 MS SQL
SQL Server 2005 Exec( )date format转换问题请教
问个 sp_send_dbmail 的问题SQL Server - convert datetime to a string YY-MM-DD HH
相关话题的讨论汇总
话题: date话题: yy话题: mm话题: weekday话题: convert
进入Database版参与讨论
1 (共1页)
z***y
发帖数: 7151
c*******y
发帖数: 8
2

尝试一下
SQL Server 2008 Enterprise
declare @YY int;
declare @MM int;
set @YY = 2009;
set @MM = 11;
With CalenderCTE (DayNum,[Date],[WeekDay])
as(
select 1 as DayNum,
CONVERT(datetime,convert(nvarchar(8),@YY * 10000 + @MM * 100 + 1)) [
Date],
DATENAME(WEEKDAY,CONVERT(datetime,convert(nvarchar(8),@YY * 10000 +
@MM * 1
00 + 1))) [WeekDay]
union all
select Day(DATEADD(dd,1,[Date])) as DayNum,
DATEADD(dd,1,[Date]) as [Date],
DATENAME(WEEKDAY,DATE

【在 z***y 的大作中提到】
: http://beyondrelational.com/blogs/tc/archive/2009/11/30/tsql-challenge-18-generate-
: text-formatted-month-calendars.aspx

z***y
发帖数: 7151
3
你的code比我的好太多, 我奖给你100个包子.

【在 c*******y 的大作中提到】
: 厄
: 尝试一下
: SQL Server 2008 Enterprise
: declare @YY int;
: declare @MM int;
: set @YY = 2009;
: set @MM = 11;
: With CalenderCTE (DayNum,[Date],[WeekDay])
: as(
: select 1 as DayNum,

z***y
发帖数: 7151
4
if you could tweek your code regarding the collation requirement that would
be
perfect... Your current code is far better than mine...Great work!

【在 c*******y 的大作中提到】
: 厄
: 尝试一下
: SQL Server 2008 Enterprise
: declare @YY int;
: declare @MM int;
: set @YY = 2009;
: set @MM = 11;
: With CalenderCTE (DayNum,[Date],[WeekDay])
: as(
: select 1 as DayNum,

c*******y
发帖数: 8
5
厄,献丑了
谢谢你的包子
年月标题应该挺容易加的吧:)

would

【在 z***y 的大作中提到】
: if you could tweek your code regarding the collation requirement that would
: be
: perfect... Your current code is far better than mine...Great work!

i***d
发帖数: 158
6
Interesting.....

【在 z***y 的大作中提到】
: http://beyondrelational.com/blogs/tc/archive/2009/11/30/tsql-challenge-18-generate-
: text-formatted-month-calendars.aspx

1 (共1页)
进入Database版参与讨论
相关主题
SQL Server - convert datetime to a string YY-MM-DD HH面试中的一道sql的题目。
有大侠知道怎么format下面这个query的时间么Need help on finding dependency objects
convert datetime to ''SQL Server 2005 Exec( )
请问sql server里面怎么输出变量到文本文件?问个 sp_send_dbmail 的问题
包子谢,怎么加个table到一个function里select 跟 set 的区别?
这个stored proc错在哪里?求教个MS SQL的问题
如何决定indexHow to convert this datetime in SQL Server?
SSRS report failing to display dataset string一个关于T-SQL的问题
相关话题的讨论汇总
话题: date话题: yy话题: mm话题: weekday话题: convert