Reputation: 29
There's an error in this code probably related to the key, I'm doing something wrong here. (AAAAAA is my test string)
insert ignore into ARCUS (COMPANY_CD, CUSTOMER_NO, RECORD_KEY.COMPANY_CD.CUSTOMER_NO.OPTIONAL_SHIPTO) values ('CU', 'AAAAAA', 'CUAAAAAA ');
Upvotes: 1
Views: 45
Reputation: 677
Surround with ` (quote). In this case, RECORD_KEY.COMPANY_CD.CUSTOMER_NO.OPTIONAL_SHIPTO
Upvotes: 1