I have existing table which is called person, I want to add via MySQL Workbench new column into it, for example column age. How can I manage this operation using this program, where and what I need to write?
I found query like this, should it works?
ALTER TABLE person ADD age INT(3);

