ALTER TABLE note
CHANGE COLUMN title title VARCHAR(210) AFTER author_id
Another way to do the same thing is to use
MODIFY
instead of
CHANGE
ALTER TABLE note
MODIFY COLUMN title VARCHAR(210) AFTER description
by Valeri Tandilashvili
4 years ago
MySQL
ALTER TABLE
Full MySQL Course for Beginners
1
Pro tip: use ```triple backticks around text``` to write in code fences