ERROR: invalid input syntax for integer: ""

Поиск
Список
Период
Сортировка
От kevin burdish
Тема ERROR: invalid input syntax for integer: ""
Дата
Msg-id AANLkTikz8tHitzxgSOKHYBU2haKLaJr-84Z9EXC7N=P0@mail.gmail.com
обсуждение исходный текст
Ответы Re: ERROR: invalid input syntax for integer: ""  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-novice
Hello!

I've been sweating over this for a few hours now, and hope someone can help ...


This is the error I get for this sql with the comment removed, I believe because some of the rows contain empty strings ...

How can I get the outer join whether or not the l.assetid is an empty string?
Thanks in advance!

ERROR:  invalid input syntax for integer: ""

********** Error **********

ERROR: invalid input syntax for integer: ""
SQL state: 22P02

 
 select l.logid,date_trunc('second',logtime) AS date,l.detail,l.status,l.logtype,l.assetid, e.parententityid,e.address
  from pxlog l -- , pxentity e
LEFT OUTER JOIN pxentity e ON ( l.assetid::BIGINT ) = e.entityid 
where l.logid >= 99999
-- AND l.assetid != ''  
        order by l.logid
limit 10;










В списке pgsql-novice по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Statistics with temporary tables, optimizer question
Следующее
От: Tom Lane
Дата:
Сообщение: Re: ERROR: invalid input syntax for integer: ""