怎得到年 月 日?

2021-04-23 06:21:15 字數 539 閱讀 4492

1、

year   :=   formatdatetime('yyyy',date);  

month   :=   formatdatetime('mm',date);  

day   :=   formatdatetime('dd',date);

2、delphi中自帶   decodedate  

它的申明為:   procedure   decodedate(date:   tdatetime;   var   year,   month,   day:   word);  

使用樣例:  

var  

d:tdatetime;  

year,month,day:word;  

begin  

decodedate(d,year,month,day);  

end;  

3、delphi5,用dayof(date(),),monthof(date(),), yearof(date(),) 

需要的單元  dateutils 

獲取年月日

需求 獲取當前日期的前乙個月份 當月有 31 天時,js 日期物件 setmonth 問題 當前日期如果不是 31 號,是沒問題的,是 31 號就會有問題 比如今天是 2018 09 30 號,前乙個月應該是 2018 08 30 let now new date new date 2018 09 ...

使用sql語句,根據年月日得到日期列

年 月 日,前提是tab這張表中有observedate 日期 nian 年 yue 月 ri 日 列 update tab set observedate convert datetime,convert char 5 nian convert char 5 yue convert char 5 ...

js之得到年月日時分秒

1 js中得到年月日,時分秒是通過不同的方法來分別得到。得到年 getfullyear 得到月 getmonth 得到日 getdate 得到時 gethours 得到分 getminutes 得到秒 getseconds 得到毫秒 getmilliseconds 記得得到的月是從0開始的,所有需要...