Good afternoon
I am trying to read this field that stores a date. It prints as an integer, I cannot convert it to a date.
Please advise
with arcpy.da.SearchCursor(feature_class, ["*"],where_clause ) as cursor:
for row in cursor:
row_value = row[cursor.fields.index("LAST_UPDAT")]
rowdate_only = row_value.date() -- This fails