-- Your SQL goes here
CREATE TABLE
dancers (
id INT UNSIGNED PRIMARY KEY AUTO_INCREMENT,
stage_name TEXT NOT NULL,
name TEXT NOT NULL
)