Here is my insert query
INSERT INTO
Customers (CustomerId, ContactNumber, MsgContent, City, PostalCode, Country)
VALUES
(1, '123456', '["https://picsum.photos/id/237/200/300","Gift your Dear one' s with surprise gifts"," abc "," 123 "," xyz "]', ' mno ', 012, ' pqr ') ;
SQL is showing syntax error while executing this query.
How to solve this issue?