CREATE TABLE note ( id int AUTO_INCREMENT, note_id int, title varchar(50), description varchar(50), PRIMARY KEY(id, note_id, title) );
Pro tip: use ```triple backticks around text``` to write in code fences