org.postgresql.util.PSQLException: ОШИБКА: синтаксическая ошибка в или около "и" - PullRequest
0 голосов
/ 28 мая 2018

Я получаю это исключение postgresql.Это мой запрос:

select * from (\
  select \
   st.station_type_id as "id", \
     case when \
      ( \
        mast.station_type_desc is null \
      ) \
      then st.station_type_desc else mast.station_type_desc end as "description" \
      from station_type st left outer \
           join master_agent_station_type mast on st.station_type_id = mast.station_type_id \
      and mast.party_id='%s' where st.is_active='Y'\
) as result

Я новичок в postgresql.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...