Time stamp error

0

I want to filter by time stamp but i keep getting i try cast it as a time stamp; Please advice! [Error] (/media/postImages/original/IMnBnt0NitS9KYvba9IYhbpg) Scrippt (/media/postImages/original/IM7QN0pRSTSxKOUp9kwvhX4g)

  • this error i got TYPE_MISMATCH: line 3:50: Cannot apply operator: timestamp(3) < varchar(19)

preguntada hace 2 meses117 visualizaciones
1 Respuesta
0

It seems like you're encountering a type mismatch error while trying to filter by timestamp in your script. The error message indicates that you're attempting to compare a timestamp with a varchar (string) data type. To resolve this issue, you need to ensure that you're comparing values of the same data type.

Here are a few steps you can take to troubleshoot and fix this error:

  1. Ensure that both sides of the comparison operator have the same data type. If you're comparing timestamps, both operands should be timestamps.
  2. If one of the operands is not in the correct data type, you may need to convert it. In your case, if you're comparing a timestamp with a varchar that represents a timestamp, you'll need to convert the varchar to a timestamp.
profile picture
EXPERTO
respondido hace 2 meses
profile picture
EXPERTO
revisado hace un mes

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas