19.18 REMOVE_COLUMN Procedure
This procedure removes a column from the blueprint table.
Syntax
APEX_DG_DATA_GEN.REMOVE_COLUMN (
    p_blueprint             IN VARCHAR2,
    p_table_name            IN VARCHAR2,
    p_column_name           IN VARCHAR2 )Parameters
Table 19-18 REMOVE_COLUMN Parameters
| Parameter | Description | 
|---|---|
| p_blueprint | Identifier for the blueprint. | 
| p_table_name | Name of table within blueprint. | 
| p_column_name | Name of column within table. | 
Example
BEGIN
   apex_dg_data_gen.remove_column(
                p_blueprint               => 'Cars',
                p_table_name              => 'MY_CARS',
                p_column_name             => 'MAKE');
END;Parent topic: APEX_DG_DATA_GEN