In Oracle gibt die ALTER TABLE-Anweisung an, wie Spalten in einer Tabelle hinzugefügt, geändert, gelöscht oder gelöscht werden. Es wird auch zum Umbenennen einer Tabelle verwendet.
So fügen Sie einer Tabelle eine Spalte hinzu
Syntax:
ALTER TABLE table_name ADD column_name column-definition;
Beispiel:
Beispielprogramme für die C-Programmierung
Bedenken Sie, dass bereits bestehende Tischkunden vorhanden sind. Fügen Sie nun der Tabelle „customers“ eine neue Spalte „customer_age“ hinzu.
ALTER TABLE customers ADD customer_age varchar2(50);
Nun wird der Kundentabelle eine neue Spalte „customer_age“ hinzugefügt.
So fügen Sie der vorhandenen Tabelle mehrere Spalten hinzu
Syntax:
ALTER TABLE table_name ADD (column_1 column-definition, column_2 column-definition, ... column_n column_definition);
Beispiel
ALTER TABLE customers ADD (customer_type varchar2(50), customer_address varchar2(50));
Now, two columns customer_type and customer_address will be added in the table customers.
So ändern Sie eine Tabellenspalte
Syntax:
ALTER TABLE table_name MODIFY column_name column_type;
Beispiel:
ALTER TABLE customers MODIFY customer_name varchar2(100) not null;
Now the column column_name in the customers table is modified to varchar2 (100) and forced the column to not allow null values.
So ändern Sie mehrere Spalten einer Tabelle
Syntax:
Zeichenfolge Java hinzufügen
ALTER TABLE table_name MODIFY (column_1 column_type, column_2 column_type, ... column_n column_type);
Beispiel:
ALTER TABLE customers MODIFY (customer_name varchar2(100) not null, city varchar2(100));
This will modify both the customer_name and city columns in the table.
So löschen Sie eine Spalte einer Tabelle
Syntax:
ALTER TABLE table_name DROP COLUMN column_name;
Beispiel:
Namenskonvention Java
ALTER TABLE customers DROP COLUMN customer_name;
This will drop the customer_name column from the table.
So benennen Sie eine Spalte einer Tabelle um
Syntax:
ALTER TABLE table_name RENAME COLUMN old_name to new_name;
Beispiel:
ALTER TABLE customers RENAME COLUMN customer_name to cname;
This will rename the column customer_name into cname.
So benennen Sie eine Tabelle um
Syntax:
ALTER TABLE table_name RENAME TO new_table_name;
Beispiel:
ALTER TABLE customers RENAME TO retailers;
This will rename the customer table into 'retailers' table.