How to check since when (for how long) a particular process is running ?

How do I check if a particular process is running from a certain date and time ?

ps -elf|more
The Field under STIME tells you how long the process been running.

On some platforms you can do something like:

ps -o pid,stime,cmd

Think of "stime" as "since time"