@@ -1,6 +1,6 @@
SELECT t1.sessionid,
t1.description,
- DATEADD(S, convert(float,t1.starttime) / 1000, '1970-01-01 08:00:00') as starttime,
+ CONVERT(varchar (100), DATEADD(S, convert(float, t1.starttime) / 1000, '1970-01-01 08:00'), 120) as starttime,
t1.liveuv,
t1.livepv,
t1.duration
@@ -1,7 +1,7 @@
SELECT t1.PARAM2 AS name,
t1.PARAM1 AS userid,
t1.playduration,
- DATEADD(S, t1.createdtime / 1000, '1970-01-01 08:00:00') as datetime,
+ CONVERT(varchar (100), DATEADD(S, convert(float, t1.createdtime) / 1000, '1970-01-01 08:00'), 120) as datetime,
t1.province,
t1.city,
t1.ipaddress,