“Cómo obtener la fecha de ayer en PSQL” Código de respuesta

Obtenga la fecha de ayer ISO en PSQL

SELECT cast(to_char ((now()::date -1)::timestamp at time zone 'UTC', 'YYYY-MM-DD"T"HH24:MI:SS"Z"') as varchar)
Envious Earthworm

Cómo obtener la fecha de ayer en PSQL

SELECT current_date - INTEGER '1' AS yesterday_date;
Ron Johnson

Respuestas similares a “Cómo obtener la fecha de ayer en PSQL”

Preguntas similares a “Cómo obtener la fecha de ayer en PSQL”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código