I'm trying to use this code:
CREATE TABLE cjlm_messages (uuid VARCHAR(100) PRIMARY KEY, join VARCHAR(500), leave VARCHAR(500));
to create a table with columns (uuid--already defined by client), join (a string no longer than 500 characters), and leave (same). It gives the following error:
You have an error in your SQL syntax; check the manual that corresponds to >your MySQL server version for the right syntax to use near 'join >VARCHAR(500), leave VARCHAR(500), PRIMARY KEY (uuid))' at line 1
I'm new to SQL, so any help is appreciated. I briefly looked through the docs and online manuals, and it seems like this should be the correct way.