轻 轻松 Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-02 #1 在数据库中有一日期字段,想在打印时分离出年月日三个数值来。 我不知道使用什么函数,请写出分离的表达式。
D Del_Sun Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-02 #3 如果在delphi中用formatdatetime() 在sqlserver中用DatePart()来做
轻 轻松 Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-03 #5 标准的Delphi 数据库(.db) 我想得到三个独立的数值,请将表达式写出.
Z zhangyufly Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-03 #6 time为数据库中的日期 decodedate(time,year,month,day) a:=IntToStr(year); b:=IntToStr(month); c:=IntToStr(day);
time为数据库中的日期 decodedate(time,year,month,day) a:=IntToStr(year); b:=IntToStr(month); c:=IntToStr(day);
W whitehorse Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-03 #7 var year,month,day:word; 日期型变量或字段中分离出年月日 decodedate(date,year,month,day); edit1.text:=inttostr(year) ... 只求日期变量或字段中的年、月、日 edit1.text:=inttostr(yearof(date)) edit1.text:=inttostr(monthof(date)) edit1.text:=inttostr(dayof(date))
var year,month,day:word; 日期型变量或字段中分离出年月日 decodedate(date,year,month,day); edit1.text:=inttostr(year) ... 只求日期变量或字段中的年、月、日 edit1.text:=inttostr(yearof(date)) edit1.text:=inttostr(monthof(date)) edit1.text:=inttostr(dayof(date))
L lygivw Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-03 #8 y=formatdatatime('yyyy',date) m=formatdatatime('mm',date) d=formatdatatime('dd',date)