Mega Code Archive

 
Categories / Oracle PLSQL / Table
 

Add a char type column to a table

SQL> SQL> create table bar ( n number ); Table created. SQL> SQL> alter table bar add c char(1); Table altered. SQL> SQL> drop table bar; Table dropped. SQL>