-1

I have the following table structure:

UDA_ID (NUMBER)
Translation (NVARCHAR2)

I need to insert in the table

UDA_ID (NUMBER)
Translation (VARCHAR2)

How do i convert NVARCHAR2 to VARCHAR2 ?

Imran Hemani
  • 599
  • 3
  • 12
  • 27

1 Answers1

0

You can try like this:

insert into mytable(Translation)
(select to_char(Translation) from sometable);

or like

insert into mytable(Translation)
(select to_char('yourValue') from dual);
Rahul Tripathi
  • 168,305
  • 31
  • 280
  • 331