I have created below table using TOAD.
CREATE TABLE TEM
(
No number
);
But i got below error when try to insert many values in "No" column.
My insert statement:
INSERT INTO TEM1k
(No)
VALUES
(8882323,454343);
Error Msg:
ORA-00913: too many values
Appreciate your support to fix this issue.
Thanks,