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 |
'딥러닝 모델 설계 > Python 공통' 카테고리의 다른 글
MatPlotlib를 이용한 히스토그램 그리기 (0) | 2019.06.17 |
---|---|
트리뷰 활용 엑셀만들기 (0) | 2019.06.17 |
mySQL 연동 + 폴더내 파일 자동 업로드 (0) | 2019.06.17 |
Day 2. List,Tuple,dictionary (0) | 2019.06.11 |
Day 1. 기본 조건 , 반복, 연산자 (0) | 2019.06.05 |