-1

I am working on an Oracle database. I have to add a new column to 2 existing tables.

The tables are, T_VERIFY_NAME & T_VERIFY_ADDRESS

Now the new field/column to add is, UC_VALUE_TYPE (1 char).

How can i create a SQL script that'll add the above column to the 2 tables?

a_horse_with_no_name
  • 497,550
  • 91
  • 775
  • 843
Don san
  • 25
  • 3

1 Answers1

1
alter table t_verify_name add (uc_value_type char(1));
alter table t_verify_address add (uc_value_type char(1));
mathguy
  • 42,476
  • 6
  • 23
  • 50