The data i have is delimited by '¬' when i try using it in create table i get error as invalid character. i tried using it's unicode version '\U00AC' but no use all record gets ingested in first field. in unix this character '¬' is displayed as �. Could anyone guide me on this as to what to use in the field terminated by section.
CREATE TABLE IF NOT EXISTS test
(
CONTACT_RECORD_ID string,
ACCOUNT string,
CUST string,
NUMBER string,
NUMBER1 string,
NUMBER2 string,
NUMBER3 string,
NUMBER4 string,
NUMBER5 string,
NUMBER6 string,
NUMBER7 string,
LIST string
)
ROW FORMAT DELIMITED
FIELDS TERMINATED BY '¬';