INSERT Multi-values from List ??
Having some problems, this seems simple, but it's giving me an error: ORA-00913 too many values
create table CUST_KEYS_08 (CUST_KEY number);
Great that worked!
I have a list from Excel and I simply want to insert all the cust_keys, one after another into this column that I just created, this give me the error:
INSERT INTO CUST_KEYS_08 (CUST_SKEY)
VALUES (1,2,3,4,5,6,blablabla, all numbers);
How can I fix this ?