-- Generated by devpick.sh/csv-to-sql
CREATE TABLE `my_table` (
`id` INTEGER,
`name` VARCHAR(255),
`email` VARCHAR(255),
`age` INTEGER,
`active` BOOLEAN
);
INSERT INTO `my_table` (`id`, `name`, `email`, `age`, `active`) VALUES (1, 'Alice Johnson', '[email protected]', 30, TRUE);
INSERT INTO `my_table` (`id`, `name`, `email`, `age`, `active`) VALUES (2, 'Bob Smith', '[email protected]', 25, FALSE);
INSERT INTO `my_table` (`id`, `name`, `email`, `age`, `active`) VALUES (3, 'Carol White', '[email protected]', 35, TRUE);