Examples

Use the example table generated by the following commands for all the examples following.

create table example_I18N_table (name varchar(10) null,     uvcol univarchar(10) null)
------------------
insert into example_I18N_table values('Arabic',        u&'\622\623\624\625\626')

insert into example_I18N_table values('Hebrew',       u&'\5d2\5d3\5d4\5d5\5d6')

insert into example_I18N_table values('Russian',       u&'\410\411\412\413\414')

The example table in Figure 6-1 has two columns:

select * from example_I18N_table
name        uvcol 
---------------------------------- 
Arabic      0x06220623062406250626    
Hebrew      0x05d205d305d405d505d6  
Russian     0x04100411041204130414  

(3 rows affected)