求几个好看的关键词,网站ul优化,网吧网站怎么做,龙岩高风险地区文章目录 环境文档用途详细信息 环境
系统平台#xff1a;Linux x86-64 Red Hat Enterprise Linux 7 版本#xff1a;4.5
文档用途
本内容介绍 Oracle条件索引 case when 如何在HGDB中转换使用。
详细信息
1、oracle 索引
create unique index I_GL_VOUCHER_7 on gl_vo… 文章目录 环境文档用途详细信息 环境
系统平台Linux x86-64 Red Hat Enterprise Linux 7 版本4.5
文档用途
本内容介绍 Oracle条件索引 case when 如何在HGDB中转换使用。
详细信息
1、oracle 索引
create unique index I_GL_VOUCHER_7 on gl_voucher(case when voucherkind2 then pk_accountingbook||pk_vouchertype||year||adjustperiod||num end); 2、在HighGO Database中执行报错 3、解决方案
转换为符合HighGO Database 语法的条件索引
create unique index I_GL_VOUCHER_7 on gl_voucher ( pk_accountingbook,pk_vouchertype,year,adjustperiod,num ) where voucherkind2 ;