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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# insert
import sqlite3
 
con = sqlite3.connect("samsongDB"#1. connection to db
cur = con.cursor()                 #2. currsor created
 
sql = "CREATE TABLE IF NOT EXISTS userTable (userId INT, userName char(5))"
cur.execute(sql)
 
sql = "insert into userTable values(1, '홍길동')"
cur.execute(sql)
 
sql = "insert into userTable values(2, '이순신')"
cur.execute(sql)
 
sql = "insert into userTable values(2, '이순신')"
cur.execute(sql)
 
 
 
 
cur.close()
con.commit()
con.close()
 
 
#select
import sqlite3
 
con = sqlite3.connect("samsongDB"#1. connection to db
cur = con.cursor()                 #2. currsor created
 
sql = "select * from userTable"
 
cur.execute(sql)
 
rows = cur.fetchall()
print(rows)
 
 
cur.close()
con.close()
 
#MySql insert
import pymysql
 
con = pymysql.connect(host="192.168.56.105",
                      user = "root",
                      password="1234",
                      db="samsongDB",
                      charset = "utf8")
 
cur = con.cursor()                 #2. currsor created
 
sql = "CREATE TABLE IF NOT EXISTS userTable2(userId INT, userName char(5))"
cur.execute(sql)
 
sql = "insert into userTable2 values(1, 'aaa')"
cur.execute(sql)
 
sql = "insert into userTable2 values(2, 'bbb')"
cur.execute(sql)
 
 
 
 
cur.close()
con.commit()
con.close()
 
 
#MySql Select
import pymysql
 
con = pymysql.connect(host="192.168.56.105",
                      user = "root",
                      password="1234",
                      db="samsongDB",
                      charset = "utf8")
 
cur = con.cursor()                 #2. currsor created
 
sql = "select * from userTable2"
 
cur.execute(sql)
 
rows = cur.fetchall()
print(rows)
 
 
cur.close()
con.close()
 
 
 
 
 
 
 
 
 
 
 
 
 
cs


간단 쿼리문


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 
SELECT * FROM studentTBL;
 
## 컴퓨터 비전용 데이터 베이스 통합 관리 시스템 만들기 ##
 
## 데이터 베이스 설계 ##
 
 DB : bigDataDB
 
 Table : rawImageTBL (
아이디, 가로, 세로, 파일명, 화소평균값 , 업로드 일자 , 업로더, 이미지 파일  )
 
(id int, raw_height smallint, raw_width smallint, raw_name varchar(30), raw_update date, raw_uplaoder varchar(20),
raw_data longblob
 
CREATE DATABASE bigdata_db;
USE bigdata_db;
 
CREATE TABLE rawImage_TBL(id INT AUTO_INCREMENT PRIMARY KEY, raw_height SMALLINT,
 raw_width smallint, raw_name varchar(30),
 raw_update date, raw_uplaoder varchar(20), raw_avg SMALLINT,
 raw_data LONGBLOB);
 
cs


+ Recent posts