-- Creating the Participant table CREATE TABLE IF NOT EXISTS Participant ( id INT PRIMARY KEY AUTO_INCREMENT, name VARCHAR(255) NOT NULL, phone VARCHAR(20) ); -- Creating the Organizer table CREATE ...