diff --git a/guide/english/sql/sql-alter-table-statement/index.md b/guide/english/sql/sql-alter-table-statement/index.md index a15700c401..d8408f8fdc 100644 --- a/guide/english/sql/sql-alter-table-statement/index.md +++ b/guide/english/sql/sql-alter-table-statement/index.md @@ -34,7 +34,9 @@ Rename some columns: ![image-1](https://github.com/SteveChevalier/guide-images/blob/master/alter_table03.JPG?raw=true) Remove a column: -![image-1](https://github.com/SteveChevalier/guide-images/blob/master/alter_table04.JPG?raw=true) +```sql +ALTER TABLE table_name DROP COLUMN column_name; +``` You can also use the alter table workbench tool. Just RIGHT click on the table you want to change and change as you wish. ![image-1](https://github.com/SteveChevalier/guide-images/blob/master/alter_table05.JPG?raw=true)