중간 결과용 테이블 생성 및 검색 쿼리 형태 구현
This commit is contained in:
@@ -1,11 +1,22 @@
|
||||
CREATE TABLE option_list
|
||||
(
|
||||
seq INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
||||
seq INT NOT NULL AUTO_INCREMENT,
|
||||
CODE VARCHAR(10),
|
||||
DATE DATETIME,
|
||||
fin_price FLOAT,
|
||||
deal_amount INT,
|
||||
deal_cash BIGINT,
|
||||
comp_bid INT
|
||||
comp_bid INT,
|
||||
PRIMARY KEY(seq)
|
||||
);
|
||||
|
||||
)
|
||||
|
||||
drop table if exist futopt_list
|
||||
create table futopt_list
|
||||
(
|
||||
seq int auto_increment,
|
||||
deal_cash bigint,
|
||||
date datetime,
|
||||
fin_price float,
|
||||
primary key(seq)
|
||||
);
|
||||
Reference in New Issue
Block a user