one table of my database in sqlserver have a column with type of int for store dates.
for example fields are: 1105275802 or 1100330268.
I can convert it to datetime in php with this code:
(int)date('U',1100330268);
I want convert this integers to datetime in sqlserver. how can i do?
thanks for any help.