mysql 12py操作mysql 個人筆記

2021-10-14 16:40:02 字數 663 閱讀 7625

鏈結資料庫

建立游標 (用於執行sql語句)

執行sql語句

獲取結果集

關閉鏈結

import pymysql

1連線資料庫

db = pymysql.connect(host=

"127.0.0.1"

,user=

"root"

,passwd=

"你指望我把密碼打出來嗎"

,port=

3306

,db=

'test_sql'

,charset=

"utf8"

)2建立游標物件 (負責執行sql的工具man)

cursor = db.cursor(

)3 準備sql語句

sql=

"select * from tb_student limit 10"

4呼叫游標執行

cursor.execute(sql)

5獲取結果集

res = cursor.fetcall(

)for i in res:

print

(i)cursor.close(

)釋放控制代碼物件

db.close(

)關閉鏈結

Mysql 查詢近12個月

select date format curdate y m as mon union select date format curdate interval 1 month y m as mon union select date format curdate interval 2 month y...

Mysql 查詢近12個月 記錄

mysql 查詢近12個月 select date format curdate y m asmonunion select date format curdate interval 1 month y m asmonunion select date format curdate interval...

mysql 當年 MySQL操作

第一招 mysql服務的啟動和停止 net stop mysql net start mysql 第二招 登陸mysql 語法如下 mysql u使用者名稱 p使用者密碼 鍵入命令mysql uroot p,回車後提示你輸入密碼,輸入12345,然後回車即可進入到mysql中了,mysql的提示符是...