CREATE TABLE `table_name` (
--these fields are required:
`id` varchar(32) NOT NULL DEFAULT (replace(UUID(), "-", "")),
`datasets_id` varchar(32),
`date_insert` datetime DEFAULT NOW(),
--add the rest of the columns here:
`exampleField` varchar(255),
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4