iT邦幫忙

0

請教一下 SQL SERVER 日期與法

sql
  • 分享至 

  • xImage

請教一下有關SQL SERVER 與法
select dateadd(d,7-datepart(w,getdate())-0,getdate())
求得本週年月日 但如何才能不顯示時分秒,只顯示年月日

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

2 個回答

16

tako2013提到:
select dateadd(d,7-datepart(w,getdate())-0,getdate())

<pre class="c" name="code">select convert(varchar(10),dateadd(d,7-datepart(w,getdate())-0,getdate()),120)
tako2013 iT邦新手 5 級 ‧ 2013-01-28 13:42:51 檢舉

多謝幫忙

14
warn911
iT邦新手 5 級 ‧ 2013-01-28 13:27:01
<pre class="c" name="code">Select CONVERT(Date, DATEADD(D, 7-datepart(w,getdate()),getdate()))
tako2013 iT邦新手 5 級 ‧ 2013-01-28 13:43:28 檢舉

謝謝無私幫忙
找時間在去上sql

我要發表回答

立即登入回答