8
As I make a select in the postgresql database for it returns the data from a specific date, for example I have a field of type timestamp with name data_interview, I want it brings me the data registered since today forward.
SELECT * FROM tabela Where data_entrevista = data de hoje para frente
in fact, the right term would not be "today’s", and yes "of a specific day". Today will always happen, forgetting the previous dates (this saying, for being able to use the
now()
)– William Aparecido Brandino