Thanks for the question, Darshankumar.
Asked: July 07, 2022 - 8:10 am UTC
Last updated: July 12, 2022 - 1:24 pm UTC
Version: Oracle Database 19c Enterprise Edition (19.0.0.0.0)
Viewed 1000+ times
create table translations ( text_code varchar2(30), -- lookup code for the text item english_text clob, arabic_text clob, ... );
create table translations ( text_code varchar2(30), -- lookup code for the text item language_code varchar2(2), -- EN, DE, AR, etc. text clob, ... );
Darshankumar Prajapati, July 12, 2022 - 9:30 am UTC
The Oracle documentation contains a complete SQL reference.