I figured out I can insert the values with this SQL command:INSERT INTO `ost_form_entry` (`id`, `form_id`, `object_id`, `object_type`, `sort`, `created`, `updated`) VALUES (4228, 4, 3855, 'T', 1, '2014-01-29 00', '2014-01-29 00');INSERT INTO `ost_form_entry_values` (`entry_id`, `field_id`, `value`, `value_id`) VALUES (4228, 12, 'eeeeeeeeeeeeeeeeeeewwwwwww', NULL);But I wanna do it with all fields at once (since its 4000 rows) - Anyone has an idea on how I can do this?