123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- select block_no, from_unixtime(created_on) from bcs_block order by created_on desc
- limit 10 offset 0;
- select txn_hash, from_unixtime(created_on) from bcs_tranxn order by created_on desc
- limit 10 offset 0;
- CREATE TABLE `dbt_upload_type1` (
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `created_on` int(11) NOT NULL DEFAULT unix_timestamp(),
- `list_token` varchar(21) NOT NULL,
- `order_by` varchar(32) DEFAULT NULL,
- `c1` tinytext DEFAULT NULL,
- `c2` tinytext DEFAULT NULL,
- `c3` tinytext DEFAULT NULL,
- `c4` tinytext DEFAULT NULL,
- `c5` tinytext DEFAULT NULL,
- `c6` tinytext DEFAULT NULL,
- `c7` tinytext DEFAULT NULL,
- `c8` tinytext DEFAULT NULL,
- `c9` tinytext DEFAULT NULL,
- `c10` tinytext DEFAULT NULL,
- `c11` tinytext DEFAULT NULL,
- `c12` tinytext DEFAULT NULL,
- `c13` tinytext DEFAULT NULL,
- `c14` tinytext DEFAULT NULL,
- `c15` tinytext DEFAULT NULL,
- `c16` tinytext DEFAULT NULL,
- `c17` tinytext DEFAULT NULL,
- `c18` tinytext DEFAULT NULL,
- `c19` tinytext DEFAULT NULL,
- `c20` tinytext DEFAULT NULL,
- `c21` tinytext DEFAULT NULL,
- `c22` tinytext DEFAULT NULL,
- `c23` tinytext DEFAULT NULL,
- `c24` tinytext DEFAULT NULL,
- `c25` tinytext DEFAULT NULL,
- `c26` tinytext DEFAULT NULL,
- `c27` tinytext DEFAULT NULL,
- `c28` tinytext DEFAULT NULL,
- `c29` tinytext DEFAULT NULL,
- `c30` tinytext DEFAULT NULL,
- PRIMARY KEY (`id`)
-
- [안경점 포스 특성 DB 컨버젼]
- A. MS SQL Server 설치
- (DB 컨버젼 시스템 설치 및 테스트)
- (1) AWS DB Conversion Station 설치.
- (2) MS Windows Server 설치
- (3) MS SQL Server 설치
- B. 1차 iTech DB 컨버젼
- (1) iTech 프로그램 설치
- (2) iTech DB 설치 및 분석
- (3) Query 작성 및 테스트
- (4) Excel Download 테스트
-
- C. 기준 산출물
- (1) 기초고객정보
- 고객명, 생년월일, 휴대전화, 유선번호, 적립금, 주소
- (2) 안경렌즈-검안정보(전체기간)
- SPH, CYL, AXIS, 원용PD, ADD
- (3) 콘텍트렌즈-검안정보(전체기간)
- SPH, DIA, B.C, CYL, AXIS
- (4) 판매이력
- 고객, 상품 구매이력, 고객방문 기록
|