'What is the Cron Expression to trigger for every 62 seconds?

Tried running job on even count with trigger for every 31 seconds.

"*/31 * * * * *"  

But it didn't help. The time difference between each schedule needs be 62 seconds.

    Expected:
    Scheduled  at 12:04:08
    Scheduled  at 12:05:10

                                       Allowed values    Allowed special characters   Comment

┌───────────── second (optional)       0-59              * , - /                      
│ ┌───────────── minute                0-59              * , - /                      
│ │ ┌───────────── hour                0-23              * , - /                      
│ │ │ ┌───────────── day of month      1-31              * , - / L W ?                
│ │ │ │ ┌───────────── month           1-12 or JAN-DEC   * , - /                      
│ │ │ │ │ ┌───────────── day of week   0-6  or SUN-SAT   * , - / # L ?                Both 0 and 7 means SUN
│ │ │ │ │ │
* * * * * *


Solution 1:[1]

*/62 * * * * *

You can test it here: https://crontab.cronhub.io/

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Patrick Man