Azurite wrote:
But what part of it is unnecessary if I was going to use phpMyAdmin/SQL to run the command? It looks like anything with the -- before it is a comment, but I'm not sure if I should edit those out when I paste the command in, or if I should just leave them in and the system will know that they're comments and not part of the code. I don't want to have commands that would try and create a table twice or anything like that, though. -Azurite
Yes, -- starting lines are comments. SQL should handle it, so you can leave them (but removing doesn't harm either). If you tried to create a table twice, you'd get an error the second one, don't worry. But as always, you should do a db backup before changing it.