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)

posta 2 mesi fa117 visualizzazioni
1 Risposta
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
ESPERTO
con risposta 2 mesi fa
profile picture
ESPERTO
verificato un mese fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande