重庆思庄Oracle、、PostgreSQL、Redhat认证学习论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1021|回复: 0

使用PYTHON修改PG中的记录

[复制链接]
发表于 2023-12-10 19:07:14 | 显示全部楼层 |阅读模式


1.语句

[postgres@eulersvr ~]$ cat update.py
# _*_ coding:utf-8 _*_
import psycopg2

conn= psycopg2.connect(database="postgres",user="postgres",password="postgres",host="192.168.0.38",port="5432")

cursor=conn.cursor()
sql="""update emp set last_name=%s where empno=%s;"""

params=('libai',100)

cursor.execute(sql,params)


conn.commit()

cursor.close()

conn.close()


2.执行
  [postgres@eulersvr ~]$ python3 update.py

3.验证
  [postgres@eulersvr ~]$ psql
psql (16.1)
Type "help" for help.

postgres=# select * from emp where empno=100;
id | empno | last_name
----+-------+-----------
  1 |   100 | libai
(1 row)

postgres=#

回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|手机版|小黑屋|重庆思庄Oracle、Redhat认证学习论坛 ( 渝ICP备12004239号-4 )

GMT+8, 2025-4-22 11:16 , Processed in 0.085897 second(s), 21 queries .

重庆思庄学习中心论坛-重庆思庄科技有限公司论坛

© 2001-2020

快速回复 返回顶部 返回列表