欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

利用Python进行postgres、mysql数据库基本操作(建表、插入数据、删除数据、添加字段注释)

程序员文章站 2022-07-14 11:04:11
...

一、 postgres数据库基本操作

共有建表、插入数据、、查询数据、删除数据、添加字段注释等5种操作,分为4步

import psycopg2

#step1
conn=psycopg2.connect(database='gndsj',user='postgres',password='postgres',host='172.0.0.88',port='5432')
cursor=conn.cursor()

#step2
## 建表
cursor.execute("CREATE TABLE test_conn(id int, name text)")

#插入数据
cursor.execute("INSERT INTO test_conn values(1,'haha')")

查询数据
cursor.execute("select * from test_conn")

删除表
cursor.execute("DROP TABLE test_conn")

#添加字段注释
cursor.execute("comment on column test_conn.id is 'ID'; )

#step3
## 提交SQL命令
conn.commit()

#step4
## 关闭游标
cursor.close()
## 关闭数据库连接
conn.close()

二、 MYSQL进行建表、插入数据操作

mysql建表和插入数据操作

import pymysql

# pymysql.install_as_MySQLdb()
db = pymysql.connect(host="localhost",user="root",password="123456",db="mydatabase",port=3306 )
cursor=db.cursor()

#建表
cursor.execute("CREATE TABLE test_conn(id int, name text)")

#插入数据
cursor.execute("insert into test_conn(id, name) values('1','装神弄鬼')")   

db.commit()  

cursor.close()
db.close()

以上为简单的基础知识,postgres和mysql之间存在两点区别:1、使用的包不一样,2、数据插入语句不一样,熟悉postgres和mysql数据库基本语法基本可以满足使用要求。

实际使用来批量建表、插入数据、添加表和字段注释操作在下一篇文章再写。