Deletes column
title
from table
note
ALTER TABLE note 
DROP COLUMN title;
COLUMN
is optional. The following query is alternative to the first one:
ALTER TABLE note 
DROP title;
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