Set column at the top
Makes the column first - sets it at the top
ALTER TABLE note
CHANGE COLUMN title title VARCHAR(210) FIRST
The same thing using
MODIFY
ALTER TABLE note
MODIFY COLUMN title VARCHAR(210) FIRST
by Valeri Tandilashvili
4 years ago
MySQL
ALTER TABLE
1
Pro tip: use ```triple backticks around text``` to write in code fences