Why is there a difference between the conversion of a date in Delphi and SQL Server with these commands:
SQL Server :
SELECT CAST(GETDATE() AS FLOAT)
Delphi :
writeln(floattostr(now));
Example: For today
SQL Server = 40871.431264506
Delphi = 40873.4333729861
Why are the two results different?