I need to convert a datetime stamp to Unix time. I understand that this is not the easiest thing to do nor a common thing to do, but I need to do it. I have been searching for how to do this for a few hours.
相关问题
- Generating signed XPI via jpm failed
- Crystal Report SP26 SetDataSource() Method failed
- Python Numpy Loadtxt - Convert unix timestamp
- Crystal Report in .NET Framework 4.0
- right to left string in crystal report
相关文章
- What is the best way to cleanup the resources used
- Convert unix timestamp to javascript date Object [
- How to pass a list of values into a crystal report
- Crystal Report Sub Report Page Break
- Issue related to vertical line in Crystal Reports
- Problems with finding the days between two unix ti
- Dynamically change database type, source etc in Cr
- Converting total time in integer into HH:MM format
It turns out that you can use
datediff("s", date("1970-01-01 00:00:00"), {date_column})
to get the unix time stamp in Crystal.