40. Insert a row in to customer table with values London, Pratik a 2008 for the columns city, Name and number.
INSERT INTO
customer (city, cname, cnum)
VALUES
('London', 'Pratik', 2008);
INSERT INTO
customer (city, cname, cnum)
VALUES
('London', 'Pratik', 2008);