if(databaseutil.getValue("database").equalsIgnoreCase("sqlserver")){ list =categoryFLDao.findBySQL("select id,substring(full_name,6,datalength(full_name)-6) from fhcb_08_tbl_category where full_id like '" + cid + "~%'and id!="+cid ); }else if(databaseutil.getValue("database").equalsIgnoreCase("mysql")){ list =categoryFLDao.findBySQL("select id,substring(full_name,6,CHAR_LENGTH(full_name)-6) from fhcb_08_tbl_category where full_id like '" + cid + "~%'and id!="+cid ); } else if(databaseutil.getValue("database").equalsIgnoreCase("oracle")){ list =categoryFLDao.findBySQL("select id,SUBSTR(full_name,6,LENGTH(full_name)-6) from fhcb_08_tbl_category where full_id like '" + cid + "~%'and id!="+cid ); }