通過Python查詢資料庫資訊

2022-09-04 13:21:10 字數 578 閱讀 4766

使用pymysql驅動訪問資料庫,所以前提要裝好了pymysql。(可通過pip install pymysql安裝)

#-*- coding:utf-8 -*-

import pymysql

#連線資料庫

connection=pymysql.connect(db='資料庫庫名', user='使用者名稱', password='密碼', host='ip', port=埠號,charset='utf8')

#通過cursor建立游標

cursor=connection.cursor()

#執行資料查詢

cursor.execute(「select * from 表名 limit 10」)

#查詢多條資料

result=cursor.fetchall()

for data in result:

print(data)

#查詢單條資料

result=cursor.fetchone()

print(result)

#關閉資料連線

connection.close()

內容參考於網路

資料庫資訊查詢

查詢某欄位型別 select information schema.columns.data typeinto ls type from information schema.columns where information schema.columns.table name tablename ...

SQLSERVER 查詢資料庫資訊

use dbname 檢視表所有字段 select from syscolumns where id object id 表名 order by id select from sysobjects where xtype u goxtype可替換為如下引數 c check 約束 d 預設值或 def...

mysql查詢資料庫檔案資訊 查詢資料庫資訊

select a.name 檔名稱 cast a.size 1.0 128 as decimal 12,1 as 檔案設定大小 mb cast fileproperty s.name,spaceused 8 16.0 as decimal 12,1 as 檔案所佔空間 mb cast filepro...