테이블 자료형은 아래와 같구요..
Attribute | Type | Modifier
////////////////+//////////////+////////////////////////////////////////
product_serial | numeric(5,0) | not null
rsos_no | integer | not null
default_code | varchar(15) |
out_date | date | default date("timestamp"('now'::text))
product_class | char(1) | not null
row_flag | boolean | default 'yes'
Index: product_list_pkey
여기서 delete 를 하게 되면 아래와 같은 에러 메세지가 뜹니다.
delete from product_list;
ERROR: Unable to identify an operator '=' for types 'bpchar' and 'numeric'
You will have to retype this query using an explicit cast
무슨 에러인가요? 조건값으로 이것저것 다 주어 보았는데 지워지지가 않네요..TT
아시는 분 답좀 주세요...
|