I'm confused about two examples from the MySQL docs:
"Specifying a character set":
ALTER TABLE tbl_name CHARACTER SET = charset_name, ALGORITHM=INPLACE, LOCK=NONE;
and "Converting a character set": ALTER TABLE tbl_name CONVERT TO CHARACTER SET charset_name, ALGORITHM=COPY;
Ignoring the algorithm and lock values, what's the different between the two? It seems like they both change the character set of an existing table?