Files
doc-exports/docs/dli/umn/dli_03_0162.html
Su, Xiaomeng 3a07c40729 dli_umn_20250212
Reviewed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com>
Co-authored-by: Su, Xiaomeng <suxiaomeng1@huawei.com>
Co-committed-by: Su, Xiaomeng <suxiaomeng1@huawei.com>
2025-02-24 08:11:08 +00:00

1.1 KiB

How Do I Change the Field Names of an Existing Table on DLI?

DLI does not support directly changing the field names of a table. However, you can solve this issue by migrating the table data using the following steps:

  1. Create a table: Create a table and define new field names.
  2. Migrate the data: Use the INSERT INTO ... SELECT statement to migrate the data from the old table to the new table.
  3. Delete the old table: Once you have ensured that the new table has completely replaced the old table and the data migration is complete, you can delete the old table to avoid confusion.