tags:

views:

44

answers:

1
+5  Q: 

Unix time in SQL

Is it possible to get the current UNIX timestamp with sql?

+6  A: 

Try UNIX_TIMESTAMP():

SELECT UNIX_TIMESTAMP();
Victor Welling