alter table, add column – Oracle Example Syntax
Following is simple example syntax for adding a column to an Oracle table using “alter table” SQL:
1 2 | ALTER TABLE [my_table_name] ADD [my_column_name] [my_data_type]; |
A simple example would be:
1 2 | ALTER TABLE employee ADD tps_reports_completed NUMBER; |
Related Information:
- Oracle Rename Column – alter table, rename column Example SQL Syntax
Following is simple example syntax...
- Oracle Rename Table – Example Syntax and Dependencies
Renaming a table in Oracle...
- Copy Table Columns and Data
As you may know, in...
- Oracle SUBSTR with INTSR Function – SQL Syntax Examples
Oracle SUBSTR and INSTR SQL...
- SQL LIKE – Oracle LIKE Operator – SQL Syntax Examples
The reserved word LIKE in...
- Oracle TO_DATE Function – SQL Syntax Examples
The Oracle TO_DATE SQL function...
- Oracle SUBSTR Function – SQL Syntax Examples
The Oracle SUBSTR SQL Function...
- Oracle INSTR Function – SQL Syntax Examples
The Oracle INSTR SQL function...

Recent Comments