Is it possible to convert instructions from MySql
to SQlite
using some tool on MAC ? I have many instructions in MySqlite
for inserting into tables and I need to insert in sqlite, and it would take a lot of time for changing the instructions into sqlite format for inserting.
A MySql instruction
INSERT INTO language_translation_fr(id_translation, content) VALUES
(2001, 'ABIDJAN LAGUNES'),
(2002, 'SUD-OUEST'),
(2003, 'NORD-OUEST'),
(2004, 'CENTRE-EST')
in SQlite looks like :
INSERT INTO language_translation_fr
SELECT 2001 AS 'column1', 'ABIDJAN LAGUNES' AS 'column2'
UNION SELECT 2002, 'SUD-OUEST'
UNION SELECT 2003, 'NORD-OUEST'
UNION SELECT 2004, 'CENTRE-EST'