Я получаю приведенную ниже ошибку при попытке выполнить запрос ниже в Postgres.
psycopg2.ProgrammingError: column "sales_ind" is of type integer but expression is of type character varying
HINT: You will need to rewrite or cast the expression.
Column name : sales_ind
Data_type : int
В этом столбце был вывод приведенного ниже оператора case:
CASE WHEN ((fl.created > fl.sales_date) = True) THEN 1 ELSE 0 END AS sales_ind
Может ли кто-нибудь помочь. Спасибо ..