BlockChain>거래소 만들기 2

YU YU·2021년 9월 29일
0

경일_BlockChain

목록 보기
15/24

Scheme 지식

1. 캔들차트

1-1.캔들차트의 이해

a:사는 사람
b:파는 사람

  1. 가격
  2. 날짜

주문장 쪼개기

거래 우선순위
1. 금액이 클수록
2. 시간이 빠를수록
3. 수량이 많을수록

고점

select MAX(price) from transaction where reg_date='2021-09-29'

저점

select MIN(price) from transaction where reg_date='2021-09-29'

시가

select price from transaction order by reg_date limit 0,1

종가

select price from transaction order by reg_date DESC limit 0,1

3. RDBS

관계형 데이터베이스 관리 시스템

  • 1:N
  • 1:1
  • N:M

foreign Key



제약조건을 알려주는 명령어

select*from information_schema.table_constraints where constraint_schema = 'coinone'

JOIN

LEFT JOIN

profile
코딩 재밌어요!

0개의 댓글