-
Notifications
You must be signed in to change notification settings - Fork 0
/
DBtest
86 lines (61 loc) · 1.91 KB
/
DBtest
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import pymysql
tmp = pymysql.connect(host='localhost', user='root', password='', db='sports', charset='utf8')
record = {'game':'144', 'avg':'0.999', 'rbi':'1222'}
curs = tmp.cursor()
def sex():
# 시즌 기록
# 시즌 기록의 테이블을 비운 후, 최신 정보를 삽입
# 비우기
sql = 'TRUNCATE `season_record`'
print(sql)
curs.execute(sql)
# 삽입
sql = "INSERT INTO `sports`.`season_record` (`game`, `avg`, `rbi`) VALUES ('{}', '{}', '{}')".format(record['game'], record['avg'], record['rbi'])
print(sql)
curs.execute(sql)
tmp.commit()
# 테이블 내용 출력
sql = 'select * from `sports`.`{}`'.format('season_record')
print(sql)
curs.execute(sql)
rows = curs.fetchall()
print(rows)
print('---------')
#통산기록
#시즌 기록과 동일함.
#비우기
sql = 'TRUNCATE `total_record`'
print(sql)
curs.execute(sql)
#삽입
sql = "INSERT INTO `sports`.`total_record` (`game`, `avg`, `rbi`) VALUES ('{}', '{}', '{}')".format(record['game'], record['avg'], record['rbi'])
print(sql)
curs.execute(sql)
tmp.commit()
#테이블 내용 출력
sql = 'select * from `sports`.`{}`'.format('total_record')
print(sql)
curs.execute(sql)
rows = curs.fetchall()
print(rows)
print('---------')
#일일 기록
#비울 필요 없고, 매일마다 한 행씩 추가한다.
#날짜 (예시)
date = 1.1
#삽입
#3일 동안의 기록
for x in range(3):
sql = "INSERT INTO `sports`.`daily_record` (`date`, `game`) VALUES ('{}', '{}')".format(date, record['game'])
print(sql)
curs.execute(sql)
date = date+1
tmp.commit()
#테이블 내용 출력
sql = 'select * from `sports`.`{}`'.format('daily_record')
print(sql)
curs.execute(sql)
rows = curs.fetchall()
print(rows)
if __name__ == '__main__':
sex()