INSERT INTO customer
(Custid, Custname, Age, City, Salary)
VALUES
(1, 'Vedant', 20, 'Chennai', 100000),
(2, 'Diya', 19, 'Gandhinagar', 98000),
(3, 'neembu', 20, 'Ahmedabad', 70000),
(4, 'Sanish', 21, 'Ahmedabad', 80000);
ERROR: column "custid" of relation "customer" does not exist
LINE 2: (Custid, Custname, Age, City, Salary)
^
SQL state: 42703
Character: 23
New contributor
Vedant Trivedi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.