oracle中,如何将两个字段数据合并成一个字段显示,接下来看一下在sql server和pl/sql的区别 sql server中如何合并(用Cast()函数) --1.创建模拟的数据表--- create table GoodsCate( Mid int not null, Code ) not null, Name ) not null, ) --2.添加模拟数据-- ,','电子仪器') ,','激光仪器') ,','扫描仪器') --3.未合并的结果-- select * from G…
1.先进行表分析(一定要执行此步,否则查询空表可能不准确) select 'analyze table '||table_name||' compute statistics;' from user_tables; 2.再查询哪些表是空的(此步可以省略,直接进行第三步) select table_name from user_tables where NUM_ROWS=0 order by table_name; 3.最后生成alert语句select 'alter table '||table…
11G中有个新特性,当表无数据时,不分配segment,以节省空间解决方法:1.insert一行,再rollback就产生segment了.该方法是在在空表中插入数据,再删除,则产生segment.导出时则可导出空表.2.设置deferred_segment_creation 参数show parameter deferred_segment_creation NAME TYPE VALUE ------------------------------------ ----------- ---…
一个简单的行列转换例子,原始数据. create table temp_cwh_student ( name ), subject ), score ) ) select * from temp_cwh_student -- 行转列 select name as "姓名", end ) as "语文", end ) as "数学", end ) as "英语", sum(score) as "总分", av…