Reputation: 81
Is it possible to get the current UNIX timestamp with sql?
Upvotes: 8
Views: 307
Reputation: 1897
Try UNIX_TIMESTAMP():
SELECT UNIX_TIMESTAMP();
Upvotes: 10