In my SQLite I want to insert 2 rows.
INSERT INTO notification_invoice (amount,currencyISOCode) VALUES
(1.1,'498'),
(34.2,'980');
But I get error:
30-Nov-18 12:21:21: SQL Error: near ",": syntax error INSERT INTO notification_invoice (amount,currencyISOCode) VALUES (1.1,'498'), (34.2,'980'); >