MySQL Information and Resources |
Custom Search
|
You can add new columns to an existing table. .
ALTER TABLE PHONE MODIFY ( INACTIVE_DATE DATE ) /
You can add modify an existing column
ALTER TABLE PERSON
MODIFY ( LASTNAME VARCHAR2(35) )
/