您好,欢迎访问一九零五行业门户网

ORACLE列值合併

create table mytest(xtype number,city nvarchar2(200)); / insert into mytest(xtype,city) select 1,n'北京' from dual union all select 1,n'上海' from dual union all select 1,n'广州' from dual union all select 2,n'武汉' from dual union all sel
create table mytest(xtype number,city nvarchar2(200));
/
insert into mytest(xtype,city)
select 1,n'北京' from dual union all
select 1,n'上海' from dual union all
select 1,n'广州' from dual union all
select 2,n'武汉' from dual union all
select 2,n'杭州' from dual union all
select 2,n'厦门' from dual
commit;
/

其它类似信息

推荐信息