123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- USE mfdb;
- CREATE TABLE `fund_riskadjret_stats_dolphin` (
- `fund_id` varchar(10) NOT NULL COMMENT '基金id',
- `end_date` varchar(7) NOT NULL COMMENT '截至日期',
- `sharperatio_6m` decimal(22,6) DEFAULT NULL,
- `sharperatio_1y` decimal(22,6) DEFAULT NULL,
- `sharperatio_2y` decimal(22,6) DEFAULT NULL,
- `sharperatio_3y` decimal(22,6) DEFAULT NULL,
- `sharperatio_4y` decimal(22,6) DEFAULT NULL,
- `sharperatio_5y` decimal(22,6) DEFAULT NULL,
- `sharperatio_10y` decimal(22,6) DEFAULT NULL,
- `sharperatio_ytd` decimal(22,6) DEFAULT NULL,
- `sharperatio_incep` decimal(22,6) DEFAULT NULL,
- `sortinoratio_6m` decimal(22,6) DEFAULT NULL,
- `sortinoratio_1y` decimal(22,6) DEFAULT NULL,
- `sortinoratio_2y` decimal(22,6) DEFAULT NULL,
- `sortinoratio_3y` decimal(22,6) DEFAULT NULL,
- `sortinoratio_4y` decimal(22,6) DEFAULT NULL,
- `sortinoratio_5y` decimal(22,6) DEFAULT NULL,
- `sortinoratio_10y` decimal(22,6) DEFAULT NULL,
- `sortinoratio_ytd` decimal(22,6) DEFAULT NULL,
- `sortinoratio_incep` decimal(22,6) DEFAULT NULL,
- `treynorratio_6m` decimal(22,6) DEFAULT NULL,
- `treynorratio_1y` decimal(22,6) DEFAULT NULL,
- `treynorratio_2y` decimal(22,6) DEFAULT NULL,
- `treynorratio_3y` decimal(22,6) DEFAULT NULL,
- `treynorratio_4y` decimal(22,6) DEFAULT NULL,
- `treynorratio_5y` decimal(22,6) DEFAULT NULL,
- `treynorratio_10y` decimal(22,6) DEFAULT NULL,
- `treynorratio_ytd` decimal(22,6) DEFAULT NULL,
- `treynorratio_incep` decimal(22,6) DEFAULT NULL,
- `jensen_6m` decimal(22,6) DEFAULT NULL,
- `jensen_1y` decimal(22,6) DEFAULT NULL,
- `jensen_2y` decimal(22,6) DEFAULT NULL,
- `jensen_3y` decimal(22,6) DEFAULT NULL,
- `jensen_4y` decimal(22,6) DEFAULT NULL,
- `jensen_5y` decimal(22,6) DEFAULT NULL,
- `jensen_10y` decimal(22,6) DEFAULT NULL,
- `jensen_ytd` decimal(22,6) DEFAULT NULL,
- `jensen_incep` decimal(22,6) DEFAULT NULL,
- `calmarratio_6m` decimal(22,6) DEFAULT NULL,
- `calmarratio_1y` decimal(22,6) DEFAULT NULL,
- `calmarratio_2y` decimal(22,6) DEFAULT NULL,
- `calmarratio_3y` decimal(22,6) DEFAULT NULL,
- `calmarratio_4y` decimal(22,6) DEFAULT NULL,
- `calmarratio_5y` decimal(22,6) DEFAULT NULL,
- `calmarratio_10y` decimal(22,6) DEFAULT NULL,
- `calmarratio_ytd` decimal(22,6) DEFAULT NULL,
- `calmarratio_incep` decimal(22,6) DEFAULT NULL,
- `omegaratio_6m` decimal(22,6) DEFAULT NULL,
- `omegaratio_1y` decimal(22,6) DEFAULT NULL,
- `omegaratio_2y` decimal(22,6) DEFAULT NULL,
- `omegaratio_3y` decimal(22,6) DEFAULT NULL,
- `omegaratio_4y` decimal(22,6) DEFAULT NULL,
- `omegaratio_5y` decimal(22,6) DEFAULT NULL,
- `omegaratio_10y` decimal(22,6) DEFAULT NULL,
- `omegaratio_ytd` decimal(22,6) DEFAULT NULL,
- `omegaratio_incep` decimal(22,6) DEFAULT NULL,
- `kapparatio_6m` decimal(22,6) DEFAULT NULL,
- `kapparatio_1y` decimal(22,6) DEFAULT NULL,
- `kapparatio_2y` decimal(22,6) DEFAULT NULL,
- `kapparatio_3y` decimal(22,6) DEFAULT NULL,
- `kapparatio_4y` decimal(22,6) DEFAULT NULL,
- `kapparatio_5y` decimal(22,6) DEFAULT NULL,
- `kapparatio_10y` decimal(22,6) DEFAULT NULL,
- `kapparatio_ytd` decimal(22,6) DEFAULT NULL,
- `kapparatio_incep` decimal(22,6) DEFAULT NULL,
- `creatorid` int DEFAULT NULL COMMENT '创建者Id,默认第一次创建者名称,创建后不变更',
- `createtime` datetime DEFAULT NULL COMMENT '创建时间,默认第一次创建的getdate()时间',
- `updaterid` int DEFAULT NULL COMMENT '修改者Id;第一次创建时与Creator值相同,修改时与修改人值相同',
- `updatetime` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '修改时间;第一次创建时与CreatTime值相同,修改时与修改时间相同',
- `isvalid` tinyint NOT NULL DEFAULT '1' COMMENT '记录的有效性;1-有效;0-无效;',
- PRIMARY KEY (`fund_id`,`end_date`),
- KEY (`end_date`),
- KEY (`updatetime`)
- ) COMMENT='DolphinDB写回的基金历史风险调整收益指标表'
|