I'm trying to do a conversion that returns a semester of a date, but this error appeared here
CREATE or REPLACE FUNCTION semestre ( data timestamp )
RETURNS INTEGER AS
$$
BEGIN
IF data <= 6
THEN return 1;
ELSE
return 2;
END IF;
RETURN -1;
END
$$
LANGUAGE 'plpgsql';
SELECT semestre(timestamp '16/06/2017');
Error message:
ERRO:operador não existe: timestamp without time zone <= integer LINE 1: SELECT $1 <= 6 ^ HINT: Nenhum operador corresponde com o nome e o(s) tipo(s) de argumento(s) informados. Você precisa adicionar conversões de tipo explícitas. QUERY: SELECT $1 <= 6 CONTEXT: PL/pgSQL function "semestre" line 2 at IF
What could it be?