PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

la funzione UNIX_TIMESTAMP non esiste

Questo perché Postgres non ti consente di farlo (vedi qui ). Se davvero non hai bisogno di UNIX_TIMESTAMP , hai bisogno di Extract

User.objects.annotate(photo_time=Extract('date_joined', 'epoch').get())

Ovviamente puoi anche definire un TO_UNIXTIME stored procedure/funzioni, ma sembra un po' esagerato.