The statement to delete table fields in oracle database is:
alter table 表名 drop (column);
(Recommended tutorial: oracle tutorial)
Example:
alter table T_Student2 drop (sex);
The above statement means to delete the sex field in the T_Student2 data table.
The above is the detailed content of What is the statement to delete table fields in oracle database. For more information, please follow other related articles on the PHP Chinese website!