このクエリを実行しようとしていますが、「次の例外がスローされ、int 列がオーバーフローしました。最大整数値を超えました。"ここに何が欠けているのかわからない
select * from Schedwin.SEVT where
ltrim(Resid)=345032 and type=5 or (type = 4 and subactid = 4)
or
(TYPE = 0)and (USER2='02-Force OT')
and ltrim(SEVT.t_start) <= 1215208800
and ltrim(sevt.t_start) <= 1215207800
order by SEVT.TYPE
私の悪い t_start データ型は char なので、以下のようにクエリを変更すると動作します
select * from Schedwin.SEVT where
ltrim(Resid)=345032 and type=5 or (type = 4 and subactid = 4)
or
(TYPE = 0)and (USER2='02-Force OT')
and ltrim(SEVT.t_start) <= '1215208800'
and ltrim(sevt.t_start) <= '1215207800'
order by SEVT.TYPE